/* ==========================================================================
   SIMBA PHOTOGRAPHY LLC — LUXURY PORTFOLIO & SOCIAL STOREFRONT
   Author: Billy Simba | Location: Rochester, NY
   ========================================================================== */

:root {
  --bg-primary: #0a0b0e;
  --bg-secondary: #131418;
  --bg-card: rgba(22, 24, 29, 0.75);
  --bg-card-hover: rgba(30, 33, 40, 0.95);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  --text-primary: #f8f9fa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa820a;
  --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa820a 100%);
  
  --fb-blue: #1877f2;
  --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0b0e;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--gold-primary);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

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

.nav-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 42px !important;
  padding: 0 24px !important;
  border-radius: var(--radius-full) !important;
  background: linear-gradient(135deg, #fff2a8 0%, #f5c842 50%, #d4a017 100%) !important;
  color: #000000 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  border: 1.5px solid #fff5cc !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.7) !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  text-decoration: none !important;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffe066 50%, #e6af2e 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.65), 0 0 20px rgba(255, 223, 0, 0.5) !important;
  border-color: #ffffff !important;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 65%),
              linear-gradient(180deg, rgba(10, 11, 14, 0.4) 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title .gold-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0a0b0e;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  font-weight: 500;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ==========================================================================
   LIVE SOCIAL FEED & GALLERY SECTION (ZERO-FAIL ARCHITECTURE)
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Live Feed Sync Indicator */
.sync-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.sync-badge-text {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 500;
}

/* Feed Filter Tabs */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #0a0b0e;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Masonry Photo Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #181a20;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.platform-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.platform-pill.facebook {
  background: var(--fb-blue);
}

.platform-pill.instagram {
  background: var(--ig-gradient);
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 14, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  z-index: 2;
}

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

.overlay-action-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-caption {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-social-direct {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 500;
  transition: var(--transition);
}

.card-social-direct:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   INTERACTIVE MODAL LIGHTBOX
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 8, 10, 0.94);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

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

.lightbox-dialog {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-image-container {
  background: #060708;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.lightbox-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 85vh;
}

.lightbox-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--border-subtle);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.lightbox-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0b0e;
  font-weight: 700;
}

.lightbox-meta h4 {
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lightbox-caption {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.lightbox-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.lightbox-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-social-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: var(--transition);
}

.btn-social-direct.facebook {
  background: var(--fb-blue);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
}

.btn-social-direct.facebook:hover {
  background: #1464cc;
  transform: translateY(-2px);
}

.btn-social-direct.instagram {
  background: var(--ig-gradient);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
}

.btn-social-direct.instagram:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.lightbox-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--gold-gradient);
  color: #0a0b0e;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ==========================================================================
   SERVICES & PRICING PACKAGES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.service-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(30, 33, 40, 0.95) 0%, rgba(20, 22, 27, 0.95) 100%);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0a0b0e;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.service-header {
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.service-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--gold-primary);
}

/* ==========================================================================
   ABOUT BILLY SIMBA
   ========================================================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.about-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 11, 14, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.about-experience-badge h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
}

.about-experience-badge p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.credential-item h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.credential-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   CONTACT & BOOKING (100% $0 FORM)
   ========================================================================== */
.contact-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

/* Universal High-Contrast Dropdown & Select Styling */
select.form-control,
select {
  background-color: #121319 !important;
  color: #f8f9fa !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 18px !important;
  padding-right: 42px !important;
}

select.form-control:focus,
select:focus {
  background-color: #161822 !important;
  border-color: var(--gold-primary) !important;
  color: #ffffff !important;
  outline: none;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25) !important;
}

/* High contrast option popup styling across Windows/Chrome OS */
select option,
select optgroup {
  background-color: #161822 !important;
  color: #f8f9fa !important;
  padding: 12px 14px;
  font-size: 0.95rem;
}

select option:hover,
select option:focus,
select option:active,
select option:checked {
  background-color: #272a38 !important;
  color: #d4af37 !important;
  font-weight: 600;
}

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

.btn-submit {
  width: 100%;
  background: var(--gold-gradient);
  color: #0a0b0e;
  border: none;
  padding: 16px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

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

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

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #0a0b0e;
  transform: translateY(-3px);
}

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

.footer-legal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   REAL-TIME COMMUNITY PULSE & LIVE SOCIAL COMMENTS
   ========================================================================== */
.community-pulse-section {
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.06) 0%, transparent 60%), #0c0d12;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

/* Live Metrics Bar */
.live-metrics-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.metric-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

.metric-icon-wrap.fb-wrap {
  background: var(--fb-blue);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
}

.metric-icon-wrap.ig-wrap {
  background: var(--ig-gradient);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
}

.metric-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.5px;
}

.live-beacon {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-live 1.8s infinite;
}

.metric-card-body {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.metric-number-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.metric-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.metric-card:hover .metric-footer i {
  transform: translateX(4px);
}

/* Dual-Stream Grid */
.comments-dual-stream {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.platform-comment-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.column-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.column-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
}

.column-icon-badge.fb-badge {
  background: var(--fb-blue);
}

.column-icon-badge.ig-badge {
  background: var(--ig-gradient);
}

.column-title h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.column-badge {
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-weight: 500;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.comment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.comment-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}

.comment-author-meta h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-author-meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.comment-platform-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}

.comment-platform-pill.facebook {
  background: rgba(24, 119, 242, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(24, 119, 242, 0.4);
}

.comment-platform-pill.instagram {
  background: rgba(225, 48, 108, 0.2);
  color: #f472b6;
  border: 1px solid rgba(225, 48, 108, 0.4);
}

.comment-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}

.comment-text::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-primary);
  opacity: 0.7;
}

.comment-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
}

.comment-post-ref {
  color: var(--gold-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-link-btn {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-link-btn:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .about-wrapper { grid-template-columns: 1fr; }
  .lightbox-dialog { grid-template-columns: 1fr; max-height: 95vh; }
  .lightbox-image-container { min-height: 260px; }
  .lightbox-details { padding: 1.25rem; }
  .live-metrics-bar { grid-template-columns: 1fr; }
  .comments-dual-stream { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    transition: var(--transition);
  }
  .nav-links.open {
    display: flex !important;
  }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 1rem; justify-content: center; }
  .stat-number { font-size: 1.75rem; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 0.95rem; }
  .container { width: 94%; padding: 0 0.5rem; }
  
  /* Feature 1: Responsive Before & After Slider */
  .ba-slider { height: 360px; }
  .ba-badge { font-size: 0.7rem; padding: 4px 10px; top: 12px; }
  .ba-badge-before { left: 12px; }
  .ba-badge-after { right: 12px; }
  .ba-handle { width: 38px; height: 38px; font-size: 0.85rem; }

  /* Feature 2: Custom Package Cost Calculator */
  .calculator-card { padding: 1.5rem 1.25rem; }
  .calc-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .calc-total-display { font-size: 2.5rem; }
  .calc-summary-panel { padding: 1.5rem 1.25rem; }

  /* Feature 3: Rochester Lookbook */
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-thumb { height: 180px; }

  /* Feature 4: VIP Proofing Portal Modal */
  .proofing-modal { padding: 0.75rem; }
  .proofing-modal-card { padding: 1.5rem 1.25rem; max-height: 94vh; }
  .proofing-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .proof-img { height: 140px; }
  .proof-watermark { font-size: 0.85rem; }

  /* Feature 5: Floating Fast Inquire Widget (Mobile optimized above Open Gallery prompt) */
  .fast-inquire-float { bottom: 82px; right: 16px; z-index: 1010; }
  .fast-inquire-btn { width: 48px; height: 48px; font-size: 1.25rem; box-shadow: 0 6px 20px rgba(0,0,0,0.6), 0 0 15px rgba(212,175,55,0.4); }
  .fast-inquire-menu { width: min(280px, calc(100vw - 36px)); bottom: 58px; right: 0; }

  /* Feature 7: BTS & Reels Showcase */
  .bts-grid { grid-template-columns: 1fr; }
  .bts-video-player { height: 260px; }

  /* Feature 8: Retainer Payment Badges */
  .payment-badges-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .payment-badge { padding: 8px 12px; font-size: 0.8rem; justify-content: center; }

  /* Forms & General Components */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .contact-card { padding: 1.75rem 1.25rem; }
  .metric-card { padding: 1.25rem 1rem; }
  .metric-value { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .ba-slider { height: 290px; }
  .proofing-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .payment-badges-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  
  /* Retainer & Support Channels Fluid Stacking */
  .payment-methods-row, .support-channels-row {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    width: 100%;
  }
  .payment-badge-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.88rem;
    box-sizing: border-box;
  }
  .support-craft-card {
    padding: 2rem 1.25rem;
  }
  .donation-presets {
    gap: 6px;
  }
  .donation-preset-btn {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.82rem;
  }
  .payment-modal-card {
    padding: 1.75rem 1.25rem;
    max-height: 92vh;
    overflow-y: auto;
  }
}

/* Ultra-Compact Screens & Foldable Phone Cover Screens (Galaxy Z Fold 320px–344px) */
@media (max-width: 360px) {
  .container { width: 98%; padding: 0 0.25rem; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.65rem; }
  .donation-preset-btn {
    flex: 1 1 100%;
    font-size: 0.8rem;
  }
  .stat-number { font-size: 1.35rem; }
  .payment-badge-btn {
    font-size: 0.82rem;
    padding: 10px 8px;
    gap: 6px;
  }
  .custom-donation-input {
    max-width: 110px;
    font-size: 1.1rem;
  }
  .payment-modal-card {
    padding: 1.25rem 0.85rem;
  }
}

/* ==========================================================================
   FEATURE 1: BEFORE & AFTER RETOUCHING COMPARISON SLIDER
   ========================================================================== */
.ba-showcase-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  background: #000;
  user-select: none;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-img-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #d4af37;
}

.ba-img-before-wrap .ba-img {
  width: var(--ba-container-width, 100vw);
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0b0e;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.8), 0 0 15px rgba(212,175,55,0.6);
  z-index: 10;
  pointer-events: none;
}

.ba-badge {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  z-index: 5;
}

.ba-badge-before {
  left: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ba-badge-after {
  right: 20px;
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

/* ==========================================================================
   FEATURE 2: CUSTOM PACKAGE COST CALCULATOR
   ========================================================================== */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-input-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.calc-range-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-range-slider {
  flex: 1;
  accent-color: var(--gold-primary);
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  cursor: pointer;
}

.calc-val-pill {
  min-width: 60px;
  text-align: center;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.calc-options-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
}

.calc-checkbox-label:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--border-gold);
}

.calc-checkbox-label input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.calc-summary-panel {
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(10,11,14,0.9));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-total-display {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0.5rem 0 1rem 0;
  text-shadow: 0 0 20px rgba(212,175,55,0.4);
}

/* ==========================================================================
   FEATURE 3: ROCHESTER LOCATIONS LOOKBOOK
   ========================================================================== */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

.lookbook-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.lookbook-thumb {
  height: 200px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

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

.lookbook-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.lookbook-badge {
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border-gold);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.lookbook-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.lookbook-features {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.75rem;
}

/* ==========================================================================
   FEATURE 4: VIP CLIENT PROOFING PORTAL MODAL
   ========================================================================== */
.proofing-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
}

.proofing-modal.active {
  display: flex;
  opacity: 1;
}

.proofing-modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.proofing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.proof-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
}

.proof-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.proof-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(-25deg);
  pointer-events: none;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.proof-card-footer {
  padding: 8px 12px;
  background: rgba(19, 20, 24, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-fav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.proof-fav-btn.favorited {
  color: #ef4444;
  transform: scale(1.15);
}

/* ==========================================================================
   FEATURE 5: FLOATING FAST INQUIRE WIDGET (WHATSAPP & SMS)
   ========================================================================== */
.fast-inquire-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fast-inquire-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0a0b0e;
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.fast-inquire-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.6);
}

.fast-inquire-menu {
  position: absolute;
  bottom: 74px;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  width: 250px;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  backdrop-filter: blur(16px);
}

.fast-inquire-menu.active {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}

.fast-channel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.fast-channel-link:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  transform: translateX(-4px);
}

/* ==========================================================================
   FEATURE 6: PRE-SHOOT PREP & WARDROBE FAQ ACCORDION
   ========================================================================== */
.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-card:hover {
  border-color: var(--border-gold);
}

.faq-header-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-content-pane {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.faq-card.open .faq-content-pane {
  display: block;
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
  color: var(--gold-primary);
}

/* ==========================================================================
   FEATURE 8 & 9: TRUST BADGES, REVIEWS & RETAINER DEPOSIT
   ========================================================================== */
.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-top: 1rem;
}

.google-stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
}

.retainer-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(22,24,29,0.9));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 3rem auto 0 auto;
  box-shadow: var(--shadow-card);
}

.payment-methods-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.payment-badge-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.payment-badge-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.payment-badge-btn:active {
  transform: translateY(0);
}

/* Payment Instruction Modal */
.payment-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
}

.payment-modal.active {
  display: flex;
  opacity: 1;
}

.payment-modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  text-align: center;
}

/* Support My Craft / Donation Section */
.support-craft-card {
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(19, 20, 24, 0.95) 75%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.donation-presets {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1.75rem 0 1.25rem 0;
  flex-wrap: wrap;
}

.donation-preset-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.donation-preset-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.donation-preset-btn.active {
  background: var(--gold-gradient);
  color: #0a0b0e;
  border-color: var(--gold-light);
  box-shadow: var(--shadow-glow);
}

.custom-donation-input-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.custom-donation-input {
  max-width: 140px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  background: #0e1015;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.support-channels-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Impact Box for Selected Donation Tier */
.tier-impact-box {
  background: rgba(212, 175, 55, 0.07);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  max-width: 640px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: var(--transition);
}

.tier-impact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.tier-impact-content strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.tier-impact-content p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Support Channel Action Cards */
.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 1.5rem auto 0 auto;
}

.support-action-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.support-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.support-action-card.cashapp {
  border-color: rgba(0, 214, 50, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(0, 214, 50, 0.12) 0%, rgba(14, 16, 21, 0.95) 75%);
}
.support-action-card.cashapp:hover {
  border-color: #00d632;
  box-shadow: 0 10px 30px rgba(0, 214, 50, 0.2);
}

.support-action-card.venmo {
  border-color: rgba(0, 140, 255, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(0, 140, 255, 0.12) 0%, rgba(14, 16, 21, 0.95) 75%);
}
.support-action-card.venmo:hover {
  border-color: #008cff;
  box-shadow: 0 10px 30px rgba(0, 140, 255, 0.2);
}

.support-action-card.paypal {
  border-color: rgba(0, 121, 193, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(0, 121, 193, 0.15) 0%, rgba(14, 16, 21, 0.95) 75%);
}
.support-action-card.paypal:hover {
  border-color: #0079C1;
  box-shadow: 0 10px 30px rgba(0, 121, 193, 0.25);
}

.support-action-card.zelle {
  border-color: rgba(99, 102, 241, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12) 0%, rgba(14, 16, 21, 0.95) 75%);
}
.support-action-card.zelle:hover {
  border-color: #818cf8;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.support-action-card.qr {
  border-color: rgba(212, 175, 55, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, rgba(14, 16, 21, 0.95) 75%);
}
.support-action-card.qr:hover {
  border-color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.support-card-icon {
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.support-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.support-card-handle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.support-card-badge {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 4px;
}
.support-action-card.cashapp .support-card-badge {
  background: rgba(0, 214, 50, 0.18);
  color: #00d632;
  border: 1px solid rgba(0, 214, 50, 0.3);
}
.support-action-card.venmo .support-card-badge {
  background: rgba(0, 140, 255, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(0, 140, 255, 0.3);
}
.support-action-card.paypal .support-card-badge {
  background: rgba(0, 121, 193, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(0, 121, 193, 0.3);
}
.support-action-card.zelle .support-card-badge {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.support-action-card.qr .support-card-badge {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

/* Modal QR Channel Tabs */
.qr-channel-tab {
  position: static !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.qr-channel-tab:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   ADMIN CAPABILITIES: KANBAN CRM, CONTRACTS, INVOICES, UPLOADER
   ========================================================================== */
/* Universal Upload Dropzone */
.upload-dropzone {
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(212, 175, 55, 0.03);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-light);
}

.media-preview-container {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 280px;
  display: none;
  background: #000;
  position: relative;
}

.media-preview-container.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-preview-container img,
.media-preview-container video {
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
}

.hashtag-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.hashtag-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.hashtag-chip:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

/* Kanban CRM Board */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
}

.kanban-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.kanban-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.kanban-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}

.kanban-col-badge {
  background: rgba(255,255,255,0.08);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--text-primary);
}

.kanban-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 0.85rem;
  cursor: grab;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.kanban-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Signature Pad Canvas */
.signature-canvas-wrap {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}

.signature-canvas {
  width: 100%;
  height: 180px;
  display: block;
  cursor: crosshair;
}

/* Gear Checklist */
.gear-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gear-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.gear-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.gear-item-row input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 17px;
  height: 17px;
}

.gear-item-row.checked span {
  text-decoration: line-through;
  opacity: 0.5;
}

/* ==========================================================================
   MASTER GALLERY TRANSITION CARD & SCROLL-INTENT PROMPT
   ========================================================================== */
.gallery-transit-card {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(24, 21, 16, 0.95), rgba(14, 14, 16, 0.98));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.18);
}

.gallery-transit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), transparent);
}

.transit-card-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.transit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.transit-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.transit-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.transit-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.transit-btn {
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all var(--transition-normal);
}

.transit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.transit-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.transit-perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Floating Scroll-Intent Prompt */
.gallery-scroll-prompt {
  position: fixed;
  bottom: 28px;
  right: 104px;
  z-index: 990;
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-scroll-prompt.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gallery-scroll-prompt .prompt-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.gallery-scroll-prompt .prompt-cta {
  background: var(--gold-gradient);
  color: #0d0d0f;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .gallery-transit-card {
    padding: 2.25rem 1.25rem;
    margin-top: 2.5rem;
  }
  .transit-title {
    font-size: 1.7rem;
  }
  .transit-desc {
    font-size: 0.95rem;
  }
  .transit-actions {
    flex-direction: column;
    width: 100%;
  }
  .transit-actions a, .transit-actions button {
    width: 100%;
    justify-content: center;
  }
  .gallery-scroll-prompt {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: space-between;
    padding: 10px 16px;
  }
  .fast-inquire-float {
    bottom: 78px;
    right: 16px;
    z-index: 1010;
  }
  .fast-inquire-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.4);
  }
  .fast-inquire-menu {
    width: min(280px, calc(100vw - 32px));
    bottom: 56px;
    right: 0;
  }
}

/* ==========================================================================
   AI CURATED STUDIO SUGGESTIONS BOX & PICKER
   ========================================================================== */
.ai-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.ai-suggestion-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.ai-suggestion-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 15px rgba(212,175,55,0.15);
}

.ai-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #000;
}

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

.ai-suggestion-card:hover .ai-card-img-wrap img {
  transform: scale(1.05);
}

.ai-genre-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(14, 16, 21, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.ai-grade-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.ai-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ai-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.ai-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-card-caption-snippet {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.ai-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

@media (max-width: 600px) {
  .ai-suggestions-grid {
    grid-template-columns: 1fr;
  }
}


