/* ============================================================
   FROY VARGAS — Ritual de Transformación
   BWS Custom Theme | Dark Red Accent | Dark Art Aesthetic
   ============================================================ */

:root {
  /* Brand Colors */
  --primary: #c0392b;          /* Deep Blood Red */
  --primary-dark: #96281b;
  --primary-light: #e74c3c;
  --accent: #d4a017;           /* Dark Gold accents */
  
  /* Background */
  --bg: #080808;
  --bg-secondary: #0e0e0e;
  --bg-tertiary: #141414;
  --card-bg: #141414;
  --card-bg-hover: #1c1c1c;
  
  /* Text */
  --text: #e8e8e8;
  --text-muted: #999999;
  --text-dark: #555555;
  
  /* Utility */
  --border: #2a2a2a;
  --border-accent: #3a1a1a;
  --success: #27ae60;
  --warning: #f39c12;
  --error: #e74c3c;
  
  /* Effects */
  --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-glow: linear-gradient(135deg, #c0392b, #7b241c);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 10px 40px rgba(192, 57, 43, 0.25);
  --glow: 0 0 30px rgba(192, 57, 43, 0.15);
  
  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.logo-dot { color: var(--primary); }

/* ===== BOOKS BANNER ===== */
.books-banner {
  position: sticky;
  top: 0;
  z-index: 1001;
  padding: 10px 0;
  text-align: center;
  background: var(--gradient);
  border-bottom: 1px solid var(--primary-dark);
}

.books-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 13px;
  color: white;
  flex-wrap: wrap;
}

.books-icon { font-size: 16px; }

.books-action {
  opacity: 0.85;
  font-size: 12px;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 12px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 44px;
  width: 100%;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

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

.nav-link.cta-nav {
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: var(--shadow-red);
}

.nav-link.cta-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-icon { font-size: 16px; }

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(192, 57, 43, 0.45);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(192, 57, 43, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(192, 57, 43, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1561059488-916d34c6a23f?w=1800&q=40');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.location-flag { font-size: 18px; }

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -1px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding-left: 16px;
}

.hero-tagline em {
  font-style: italic;
  color: var(--text-muted);
}

.hero-bio {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.proof-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 420px;
  height: 520px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg), var(--shadow-red);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--gradient);
  color: white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  box-shadow: var(--shadow-red);
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== SPECIALTY STRIP ===== */
.specialty-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strip-sep {
  color: var(--primary);
  font-weight: bold;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg);
  filter: contrast(1.05);
}

.about-image-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--primary);
  border-radius: 2px;
  opacity: 0.2;
  z-index: -1;
}

.about-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-bio p { margin-bottom: 16px; }

.about-specialties h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.specialty-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.specialty-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.specialty-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  font-size: 14px;
}

.instagram-link:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}

.ig-icon { font-size: 20px; }

.ig-followers {
  font-size: 12px;
  color: var(--primary);
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.gallery-item {
  background: var(--card-bg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-image img { transform: scale(1.05); }

.gallery-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: contrast(1.05) brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-zoom { font-size: 28px; }

.gallery-info {
  padding: 14px 16px;
  background: var(--card-bg);
}

.gallery-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.gallery-info p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.gallery-more { text-align: center; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--card-bg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  border-top-color: var(--primary);
  background: var(--card-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.service-card.featured {
  border-top-color: var(--primary);
  border-color: var(--border-accent);
  background: var(--bg-tertiary);
  box-shadow: var(--glow);
}

.service-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card .price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-size: 14px;
}

.pricing-note {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.pricing-note p {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 14px;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--card-bg);
  padding: 28px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  position: relative;
}

.review-rating {
  margin-bottom: 12px;
  font-size: 14px;
}

.review-text {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

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

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
}

.reviews-more { text-align: center; }

/* ===== LOCATION ===== */
.location {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info .section-label { margin-bottom: 8px; }

.location-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
}

.address {
  background: var(--card-bg);
  padding: 20px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  margin-bottom: 24px;
}

.address-line {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}

.address-line:last-child { margin-bottom: 0; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-item {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-item strong {
  color: var(--text);
  margin-right: 8px;
}

.map-container {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  filter: grayscale(70%) contrast(1.1);
}

.cr-vibe {
  position: relative;
  height: 160px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cr-vibe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}

.cr-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  color: white;
  text-transform: uppercase;
}

/* ===== EMAIL CAPTURE / WHATSAPP CTA ===== */
.email-capture {
  padding: 72px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.email-capture::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 5%;
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.capture-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.capture-text h2 {
  font-family: var(--font-display);
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.capture-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.capture-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label { margin-bottom: 8px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon { font-size: 22px; margin-top: 2px; }

.contact-method strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
}

.contact-method p {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.contact-form {
  background: var(--card-bg);
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 14px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dark); }

.contact-form select { color: var(--text-muted); cursor: pointer; }
.contact-form select option { background: var(--bg-secondary); }

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

.contact-form .btn { width: 100%; margin-top: 8px; justify-content: center; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-red), var(--shadow-lg);
  transition: all 0.3s;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(192, 57, 43, 0.5);
}

.floating-icon { font-size: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 4px;
  font-style: italic;
}

.footer-location {
  font-size: 13px !important;
  font-style: normal !important;
  margin-top: 8px;
  color: var(--text-dark) !important;
}

.footer-links { display: flex; gap: 48px; }

.footer-column h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 4px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

#lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid var(--border-accent);
}

.lightbox-info {
  background: var(--card-bg);
  padding: 16px 24px;
  margin-top: 12px;
  text-align: center;
  max-width: 500px;
  border-left: 3px solid var(--primary);
}

.lightbox-info h3 {
  margin-bottom: 4px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 16px;
}

.lightbox-info p { color: var(--text-muted); margin: 0; font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 112px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 112px);
    background: rgba(8, 8, 8, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    padding-top: 48px;
    transition: left 0.3s;
  }

  .nav-menu.active { left: 0; }
  .nav-toggle { display: flex; }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 160px 0 60px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-title { font-size: 48px; }
  .hero-tagline { text-align: left; }
  .hero-buttons { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-image { width: 100%; max-width: 320px; height: 380px; margin: 0 auto; }
  .hero-badge { right: 0; }
  .hero-visual { order: -1; }

  .about-content,
  .location-content,
  .contact-content,
  .capture-content,
  .footer-content { grid-template-columns: 1fr; }

  .about-image { max-width: 400px; margin: 0 auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 32px; }

  .capture-content { text-align: center; }
  .capture-actions { justify-content: center; }

  .footer-links { gap: 28px; flex-wrap: wrap; }
  .footer-content { gap: 32px; }
  
  .floating-text { display: none; }
  .floating-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 20px; }
  .container { padding: 0 var(--spacing-sm); }
  .contact-form { padding: 24px 20px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.hero-content { animation: fadeInUp 0.8s ease-out; }

/* Scroll animations — handled via IntersectionObserver in script.js */
