/* ========================================================
   DRAKE THRU A LENS - STYLESHEET
   Inspired by Shortstache (Garrett King) Minimalist Aesthetic
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0b0c0e;
  --bg-secondary: #131518;
  --bg-tertiary: #1a1d22;
  --bg-card: rgba(22, 25, 30, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 255, 255, 0.3);
  --text-main: #f0f1f3;
  --text-muted: #9ba1a6;
  --text-subtle: #656b72;
  --accent: #d8964d; /* Warm amber / analog golden tint */
  --accent-glow: rgba(216, 150, 77, 0.25);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Subtle Film Grain Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 24px 24px;
  z-index: 9999;
  opacity: 0.6;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================================
   NAVIGATION BAR
   ======================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.site-header.splash-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  background: rgba(11, 12, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo span.dot {
  width: 7px;
  height: 7px;
  background: #e63946; /* Vibrant red dot */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(230, 57, 70, 0.55);
  animation: redDotBreathe 3.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover span.dot {
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.95);
}

@keyframes redDotBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(230, 57, 70, 0.45);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.85);
  }
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-heading);
}

.nav-admin-link:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(216, 150, 77, 0.08);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ========================================================
   SPLIT SPLASH SCREEN (HOME PAGE)
   Whole left side covered by rotating images full height into top menu bar
   ======================================================== */
.splash-screen {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-primary);
}

/* Splash Left: Edge-to-edge rotating photos covering 50% left side */
.splash-left {
  flex: 0 0 50vw;
  width: 50vw;
  max-width: 50vw;
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #000;
  top: 0;
  left: 0;
}

.hero-cycler-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.1, 1, 0.1, 1);
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Photo Category & Title on Splash Left */
.hero-photo-meta {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 5;
  pointer-events: auto;
}

.meta-category {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.meta-title {
  display: none !important;
}

/* Splash Right: Brand Title, Slogan & View Work Button (50% split) */
.splash-right {
  flex: 0 0 50vw;
  width: 50vw;
  max-width: 50vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 4vw;
  background: var(--bg-primary);
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.splash-right.centered-cta {
  align-items: center;
  justify-content: center;
  padding: 0 2vw;
  text-align: center;
}

.splash-right-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.splash-right-header .brand-logo {
  font-size: clamp(0.85rem, 2.2vw, 1.6rem);
  letter-spacing: clamp(0.08em, 1.2vw, 0.22em);
  white-space: nowrap;
}

.splash-right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.splash-brand-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.splash-slogan {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
  line-height: 1.4;
  padding: 0 1rem;
}

/* Smaller View Work button styled like former inquire button */
.btn-view-work {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: clamp(0.55rem, 1.5vh, 0.75rem) clamp(1rem, 2vw, 1.8rem);
  border-radius: 2px;
  transition: var(--transition-smooth);
  background: transparent;
  white-space: nowrap;
}

.btn-view-work:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-view-work svg {
  transition: transform 0.3s ease;
}

.btn-view-work:hover svg {
  transform: translateX(4px);
}

/* ========================================================
   FULL WIDTH & FULL HEIGHT CATEGORIES PAGE (PORTFOLIO)
   Three categories cover full width AND full height
   ======================================================== */
.categories-page {
  padding-top: var(--nav-height);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.categories-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  gap: 8px; /* small spacing between categories */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.category-banner-item {
  flex: 1 1 0; /* Three categories divide full height equally */
  min-height: 0;
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.4s ease;
}

.category-banner-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.category-banner-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.category-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: brightness(0.75);
}

.category-banner-item:hover .category-banner-img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.category-banner-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(11, 12, 14, 0.85) 0%,
    rgba(11, 12, 14, 0.35) 50%,
    rgba(11, 12, 14, 0.65) 100%
  );
  transition: opacity 0.4s ease;
}

.category-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.category-banner-item:hover .category-banner-title {
  color: #fff;
  letter-spacing: 0.18em;
}

.category-banner-action {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.category-banner-item:hover .category-banner-action {
  color: var(--accent);
  transform: translateX(8px);
}

/* Noir specific styling */
.category-banner-item.noir .category-banner-img {
  filter: grayscale(100%) contrast(110%) brightness(0.7);
}
.category-banner-item.noir:hover .category-banner-img {
  filter: grayscale(100%) contrast(115%) brightness(0.85);
}


/* ========================================================
   FULL WIDTH GALLERY PAGES (3 OR 4 PER ROW)
   Full width gallery, 3 or 4 per row, title only on hover
   ======================================================== */
.gallery-section.full-width-gallery {
  padding-top: calc(var(--nav-height) + 12px);
  padding-bottom: 2.5rem;
  padding-left: 12px;
  padding-right: 12px;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
}

.category-header-wrap {
  padding: 2.2rem 12px 1.8rem 12px;
  text-align: center;
}

.category-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.gallery-grid.full-width-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
  gap: 12px;
  width: 100%;
  padding: 0;
  margin: 0;
}

@media (max-width: 1400px) {
  .gallery-grid.full-width-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }
}

@media (max-width: 900px) {
  .gallery-grid.full-width-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .gallery-grid.full-width-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

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

.photo-card.full-width-thumb {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  animation: photoCardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.photo-card.full-width-thumb:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.photo-card.full-width-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.9);
}

.photo-card.full-width-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 12, 14, 0.85) 0%,
    rgba(11, 12, 14, 0.1) 45%,
    transparent 100%
  );
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}

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

.photo-card.full-width-thumb:hover .photo-card-overlay {
  display: none !important;
}

.photo-card-title {
  display: none !important;
}

/* ========================================================
   LIGHTBOX MODAL WITH ZOOM & PAN
   Click to zoom full size and move around with cursor
   ======================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.35s ease;
  padding: 1.5rem;
}

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

.lightbox.active .lightbox-content {
  animation: lightboxScaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes lightboxScaleIn {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.lightbox-img.zoomable-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  user-select: none;
}

.lightbox-img.zoomable-img.zoomed {
  cursor: zoom-out;
}

/* Zoomed state: whole window width and mouse-driven / touch-driven pan */
.lightbox.is-zoomed {
  padding: 0;
  overflow: hidden;
  touch-action: none;
}

.lightbox.is-zoomed .lightbox-content {
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  touch-action: none;
}

.lightbox.is-zoomed .lightbox-img-wrap {
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: block;
  cursor: zoom-out;
  border-radius: 0;
  touch-action: none;
}

.lightbox.is-zoomed .lightbox-img.zoomable-img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0;
  box-shadow: none;
  cursor: zoom-out;
  transition: transform 0.04s ease-out;
  will-change: transform;
  touch-action: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.lightbox.is-zoomed .lightbox-img.zoomable-img.is-dragging {
  transition: none !important;
  cursor: grabbing;
}

.lightbox.is-zoomed .lightbox-details {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-zoomed .lightbox-close,
.lightbox.is-zoomed .lightbox-nav {
  z-index: 2300;
  background: rgba(14, 16, 20, 0.78);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lightbox-details {
  display: none !important;
}

.lightbox-title {
  display: none !important;
}

/* Modern Cinematic Lightbox Controls */
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(18, 20, 24, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close svg,
.lightbox-nav svg {
  pointer-events: none;
  stroke: currentColor;
}

.lightbox-close {
  top: 2rem;
  right: 2.25rem;
  width: 48px;
  height: 48px;
  z-index: 2100;
}

.lightbox-close svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close:hover {
  background: rgba(32, 36, 44, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.12);
  transform: scale(1.06);
}

.lightbox-close:hover svg {
  transform: rotate(90deg);
}

.lightbox-close:active {
  transform: scale(0.96);
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  z-index: 2050;
}

.lightbox-nav svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-nav:hover {
  background: rgba(32, 36, 44, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.14);
}

.lightbox-prev {
  left: 2.25rem;
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-4px) scale(1.04);
}

.lightbox-prev:hover svg {
  transform: translateX(-2px);
}

.lightbox-prev:active {
  transform: translateY(-50%) scale(0.96);
}

.lightbox-next {
  right: 2.25rem;
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(4px) scale(1.04);
}

.lightbox-next:hover svg {
  transform: translateX(2px);
}

.lightbox-next:active {
  transform: translateY(-50%) scale(0.96);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.contact-section {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-info-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-detail-val {
  font-size: 1.1rem;
  color: #fff;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

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

.form-submit-btn {
  width: 100%;
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px -5px var(--accent-glow);
}

.form-feedback {
  margin-top: 1.25rem;
  padding: 0.9rem;
  border-radius: 2px;
  font-size: 0.95rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ========================================================
   ADMIN CONTROL PANEL
   ======================================================== */
.admin-section {
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 6rem;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 4px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

/* Admin Tabs */
.admin-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
}

.admin-tab-btn {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition-smooth);
}

.admin-tab-btn:hover,
.admin-tab-btn.active {
  color: #fff;
}

.admin-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Admin Image Table/List */
.admin-table-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}

.admin-photo-row {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 160px;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-photo-row:last-child {
  border-bottom: none;
}

.photo-info-col {
  min-width: 0;
}

.title-display-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.title-edit-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.edit-title-input {
  width: 100%;
  max-width: 360px;
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 3px;
  box-sizing: border-box;
}

.edit-title-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}

.edit-title-btn-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-thumb {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
}

.admin-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.admin-badge.cine { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.admin-badge.noir { background: rgba(156, 163, 175, 0.2); color: #e5e7eb; }
.admin-badge.film { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }

.btn-filter-cat {
  font-size: 0.78rem;
  padding: 0.28rem 0.65rem;
  border-radius: 3px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.btn-filter-cat:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.btn-filter-cat.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.btn-filter-cat.btn-duplicates {
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

.btn-filter-cat.btn-duplicates.active {
  background: rgba(245, 158, 11, 0.22);
  border-color: #fbbf24;
  color: #fff;
}

.admin-photo-row.is-duplicate {
  border-left: 3px solid #fbbf24 !important;
  background: rgba(245, 158, 11, 0.04);
}

.duplicate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.55);
  color: #fbbf24;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.btn-edit {
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  font-size: 0.85rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-edit:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.btn-save {
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-save:hover {
  background: #10b981;
  color: #0b0c0e;
}

.btn-cancel {
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: transparent;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-danger {
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  font-size: 0.85rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-danger:hover {
  background: #ef4444;
  color: #fff;
}

/* Upload Form Card */
.upload-card {
  max-width: 800px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2.5rem;
}

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

/* Login Modal */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 10, 0.95);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.login-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  background: #08090a;
  padding: 4rem 0 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

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

.footer-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-subtle);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.footer-admin-btn:hover {
  color: var(--accent);
}

/* ========================================================
   RESPONSIVE MEDIA QUERIES
   ======================================================== */
@media (max-width: 1024px) {
  .splash-screen {
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .splash-left {
    flex: 0 0 50vw;
    width: 50vw;
    max-width: 50vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .splash-right {
    flex: 0 0 50vw;
    width: 50vw;
    max-width: 50vw;
    height: 100vh;
    height: 100dvh;
    padding: 0 2rem;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }

  .splash-right-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    margin-bottom: 0;
  }

  .categories-page {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    padding-top: var(--nav-height);
  }

  .categories-list {
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    overflow: hidden;
    gap: 6px;
  }

  .category-banner-item {
    flex: 1 1 0;
    height: auto;
    min-height: 0;
  }

  .category-banner-content {
    padding: 0 2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(11, 12, 14, 0.98);
    flex-direction: column;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  /* 50% / 50% vertical stacked split on mobile (top/bottom) */
  .splash-screen {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
  }

  /* Left block from desktop placed on top at 50% */
  .splash-left {
    order: 1;
    flex: 0 0 50vh;
    flex: 0 0 50dvh;
    width: 100vw;
    max-width: 100vw;
    height: 50vh;
    height: 50dvh;
    max-height: 50vh;
    max-height: 50dvh;
    position: relative;
    overflow: hidden;
  }

  /* Right block from desktop placed on bottom at 50% */
  .splash-right {
    order: 2;
    flex: 0 0 50vh;
    flex: 0 0 50dvh;
    width: 100vw;
    max-width: 100vw;
    height: 50vh;
    height: 50dvh;
    max-height: 50vh;
    max-height: 50dvh;
    padding: 1.5rem 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .splash-right-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    padding: 0;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
  }

  .splash-right-header .brand-logo {
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
    letter-spacing: clamp(0.12em, 2vw, 0.2em);
    white-space: nowrap;
  }

  .splash-right-content {
    padding: 0 1rem;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .splash-slogan {
    font-size: clamp(0.85rem, 3.4vw, 1.05rem);
    margin-bottom: clamp(1rem, 2.5vh, 1.6rem);
    line-height: 1.4;
    padding: 0;
  }

  .btn-view-work {
    font-size: clamp(0.82rem, 2.6vw, 0.95rem);
    padding: clamp(0.55rem, 1.8vh, 0.75rem) clamp(1.2rem, 3.5vw, 1.8rem);
    letter-spacing: 0.16em;
  }

  .hero-photo-meta {
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
  }

  .meta-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.25rem;
  }

  .meta-title {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  /* Portfolio Categories: 3 equal vertical slices on mobile */
  .categories-page {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    padding-top: var(--nav-height);
  }

  .categories-list {
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    overflow: hidden;
    gap: 4px;
  }

  .category-banner-item {
    flex: 1 1 0;
    height: auto;
    min-height: 0;
  }

  .category-banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
  }

  .category-banner-title {
    font-size: clamp(1.2rem, 5.5vw, 2.2rem);
    letter-spacing: 0.12em;
  }

  .category-banner-action {
    font-size: clamp(0.72rem, 2.2vw, 0.88rem);
    letter-spacing: 0.12em;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-photo-row {
    grid-template-columns: 60px 1fr auto;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .admin-photo-row > div:nth-child(3) {
    display: none;
  }

  .lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .splash-right {
    padding: 1rem 1rem;
  }

  .splash-right-header {
    margin-bottom: 0.75rem;
  }

  .splash-right-header .brand-logo {
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
    letter-spacing: 0.14em;
  }

  .splash-slogan {
    font-size: clamp(0.78rem, 3.2vw, 0.92rem);
    margin-bottom: 1.1rem;
    line-height: 1.35;
    padding: 0 0.5rem;
  }

  .btn-view-work {
    font-size: 0.82rem;
    padding: 0.5rem 1.3rem;
    letter-spacing: 0.14em;
  }

  .hero-photo-meta {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .meta-category {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.2rem;
  }

  .meta-title {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  .categories-list {
    gap: 3px;
  }

  .category-banner-content {
    padding: 0 0.85rem;
  }

  .category-banner-title {
    font-size: clamp(1.1rem, 5vw, 1.55rem);
    letter-spacing: 0.08em;
  }

  .category-banner-action {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    gap: 0.25rem;
  }

  .category-banner-action svg {
    width: 11px;
    height: 11px;
  }
}

/* ========================================================
   ADMIN LOGIN MODAL & FEEDBACK STYLES
   ======================================================== */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 1.5rem;
}

.login-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 3rem 2.25rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  text-align: center;
  animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.login-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.form-feedback {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  color: #fca5a5 !important;
  display: block !important;
}

.form-feedback.success {
  background: rgba(34, 197, 94, 0.15) !important;
  border: 1px solid rgba(34, 197, 94, 0.4) !important;
  color: #86efac !important;
  display: block !important;
}

/* Category Covers Management */
.covers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.cover-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cover-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.cover-status {
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.cover-preview-wrap {
  width: 100%;
  height: 190px;
  background: #000;
  position: relative;
  overflow: hidden;
}

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

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

.cover-controls {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.cover-select {
  width: 100%;
  font-size: 0.9rem;
}

.btn-cover {
  margin-top: auto;
  background: #e63946;
  color: #fff;
  border: none;
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-cover:hover {
  background: #c92a37;
}

.btn-set-cover-quick {
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  font-size: 0.82rem;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-set-cover-quick:hover {
  background: #fbbf24;
  color: #0b0c0e;
}

/* ========================================================
   SUBTLE TRANSITIONS & VIEW TRANSITIONS
   Cross-page smoothness, elegant focus states, accessibility
   ======================================================== */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 0.22s ease-out both vtFadeOut;
}

::view-transition-new(root) {
  animation: 0.22s ease-in both vtFadeIn;
}

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

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

/* Interactive focus glow for form controls */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(216, 150, 77, 0.65) !important;
  box-shadow: 0 0 10px rgba(216, 150, 77, 0.18) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

