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

:root {
  --bg: #0a0a0a;
  --bg-card: #111;
  --bg-elevated: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #999;
  --accent: #d4a843;
  --accent-hover: #e6bd5a;
  --accent-dark: #b8922e;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ========= GRAIN OVERLAY ========= */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ========= FADE IN ANIMATIONS ========= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========= PAGE TRANSITIONS ========= */
.page-transition {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

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

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

/* ========= HEADER ========= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}

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

.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name { font-family: var(--serif); font-size: 1.2rem; color: var(--text); letter-spacing: 0.05em; }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em; }

.main-nav ul { list-style: none; display: flex; gap: var(--space-md); align-items: center; }
.main-nav a { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; transition: color var(--transition); }
.main-nav a:hover { color: var(--accent); }

.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(17,17,17,0.98); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-sm) 0; min-width: 200px; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: flex; opacity: 1; visibility: visible; }
.dropdown li { padding: 0; }
.dropdown a { display: block; padding: 0.5rem var(--space-sm); white-space: nowrap; }

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent); color: var(--bg) !important; }

/* Animated hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; width: 36px; height: 36px; position: relative; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  position: absolute; left: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 26px; }

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

/* ========= HERO ========= */
.hero {
  padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  min-height: 100vh; display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none;
}
/* Hero Carousel */
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-carousel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.5s ease;
}
.hero-carousel img.active { opacity: 1; }
.hero .container { width: 100%; position: relative; z-index: 1; }
.hero h1 { margin-bottom: var(--space-sm); }
.hero .tagline { font-family: var(--serif); color: var(--text-muted); font-size: clamp(1rem, 2vw, 1.3rem); font-style: italic; margin-bottom: var(--space-md); }
.hero p { max-width: 600px; margin: 0 auto var(--space-md); color: var(--text-muted); }

/* Page hero with subtle parallax-ready bg */
.page-hero {
  padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: var(--space-xs); }
.page-hero .tagline { font-family: var(--serif); color: var(--text-muted); font-style: italic; font-size: 1.1rem; }
.page-hero .hero-subtitle {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-block; padding: 0.9rem 2.2rem;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.15em;
  border: 1px solid var(--accent); color: var(--accent);
  transition: all var(--transition); cursor: pointer; background: transparent;
  font-family: var(--sans); position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::after { transform: translateY(0); }

.btn-fill { background: var(--accent); color: var(--bg); }
.btn-fill::after { transform: translateY(-100%); background: var(--accent-hover); }
.btn-fill:hover { color: var(--bg); }
.btn-fill:hover::after { transform: translateY(0); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }

.btn-ghost {
  background: transparent; border-color: rgba(255,255,255,0.2); color: var(--text-muted);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ========= SECTIONS ========= */
.section { padding: var(--space-xl) 0; }
.section-dark { background: var(--bg-card); }
.section-title { text-align: center; margin-bottom: var(--space-lg); }
.section-title h2 { margin-bottom: var(--space-xs); }
.section-title p { color: var(--text-muted); }

/* Gold divider */
.gold-divider {
  width: 60px; height: 2px; background: var(--accent);
  margin: var(--space-sm) auto;
}

/* ========= GALLERY GRID ========= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-placeholder { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; padding: var(--space-sm); }

.category-card .overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}
.category-card .overlay span {
  font-family: Georgia, 'Times New Roman', serif;
  color: #fff; font-size: 1.3rem; font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  text-align: center; padding: var(--space-sm);
}
.category-card:hover .overlay { background: rgba(0,0,0,0.5); }

/* Aspect ratio variants */
.gallery-grid--square .gallery-item { aspect-ratio: 1/1; }
.gallery-grid--portrait .gallery-item { aspect-ratio: 3/4; }

/* ========= CONTENT BLOCKS ========= */
.text-center { text-align: center; }
.intro-text {
  max-width: 700px; margin: 0 auto; text-align: center;
  color: var(--text-muted); font-size: 1.1rem; line-height: 1.9;
}

.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.feature-card {
  background: var(--bg-elevated); padding: var(--space-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-card h3 { margin-bottom: var(--space-sm); color: var(--accent); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.feature-card .feature-icon {
  font-size: 1.5rem; margin-bottom: var(--space-sm); display: block;
}

/* ========= PROCESS STEPS ========= */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  position: relative;
}
.process-step {
  text-align: center;
  padding: var(--space-md);
}
.process-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.process-step h3 { margin-bottom: var(--space-xs); font-size: 1.2rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ========= FAQ ========= */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-sm) 0;
}
.faq-question {
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-sm) 0;
  background: none; border: none; color: var(--text); font-family: var(--serif);
  font-size: 1.1rem; width: 100%; text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0; margin-left: var(--space-sm);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-sm);
}
.faq-answer p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ========= PRICING ========= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md); max-width: 900px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-elevated); padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(255,255,255,0.05); text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(212,168,67,0.08) 0%, var(--bg-elevated) 100%);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
  background: var(--accent); color: var(--bg);
  padding: 0.3rem 1rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.pricing-card h3 { margin-bottom: var(--space-xs); }
.pricing-card .price {
  font-family: var(--serif); font-size: 2.5rem; color: var(--accent);
  margin: var(--space-sm) 0;
}
.pricing-card ul { list-style: none; margin-bottom: var(--space-md); }
.pricing-card li {
  padding: 0.6rem 0; color: var(--text-muted); font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-note { text-align: center; margin-top: var(--space-md); color: var(--text-muted); font-size: 0.9rem; }

/* ========= TESTIMONIALS ========= */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.testimonial {
  background: var(--bg-elevated); padding: var(--space-md);
  border-left: 3px solid var(--accent);
  transition: transform 0.3s;
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial p { color: var(--text-muted); margin-bottom: var(--space-sm); line-height: 1.8; font-style: italic; }
.testimonial cite { color: var(--accent); font-style: normal; font-size: 0.9rem; }

/* ========= CTA BANNER ========= */
.cta-banner {
  text-align: center; padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1510 50%, var(--bg-card) 100%);
  border-top: 1px solid rgba(212,168,67,0.15);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: var(--space-sm); }
.cta-banner p { color: var(--text-muted); margin-bottom: var(--space-md); max-width: 500px; margin-left: auto; margin-right: auto; }

/* ========= CONTACT FORM ========= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg);
  max-width: 900px; margin: 0 auto;
}
.contact-form label {
  display: block; margin-bottom: var(--space-xs);
  color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.9rem 1rem; background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08); color: var(--text);
  font-family: var(--sans); font-size: 1rem; margin-bottom: var(--space-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-info h3 { margin-bottom: var(--space-sm); color: var(--accent); }
.contact-info p { color: var(--text-muted); margin-bottom: var(--space-sm); }

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 4/3; background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  margin-top: var(--space-md);
}

/* ========= BLOG ========= */
.post-list { max-width: 700px; margin: 0 auto; }
.post-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition);
}
.post-item:hover { transform: translateX(4px); }
.post-item h3 a { color: var(--text); transition: color var(--transition); }
.post-item h3 a:hover { color: var(--accent); }
.post-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: var(--space-xs); }
.post-excerpt { color: var(--text-muted); }
.post-tags { margin-top: var(--space-xs); }
.post-tag {
  display: inline-block; padding: 0.2rem 0.6rem;
  background: rgba(212,168,67,0.1); color: var(--accent);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
  margin-right: 0.4rem;
}

/* Blog post content */
.post-content {
  max-width: 700px; margin: 0 auto;
  line-height: 1.9; color: var(--text-muted);
}
.post-content h2 { margin: var(--space-md) 0 var(--space-sm); color: var(--text); }
.post-content h3 { margin: var(--space-md) 0 var(--space-sm); color: var(--text); }
.post-content p { margin-bottom: var(--space-sm); }
.post-content ul, .post-content ol { margin-bottom: var(--space-sm); padding-left: var(--space-md); }
.post-content li { margin-bottom: var(--space-xs); }
.post-content strong { color: var(--text); }
.post-content a { color: var(--accent); border-bottom: 1px solid rgba(212,168,67,0.3); }
.post-content a:hover { border-bottom-color: var(--accent); }
.post-content blockquote {
  border-left: 3px solid var(--accent); padding-left: var(--space-md);
  margin: var(--space-md) 0; font-style: italic; color: var(--text);
}

/* ========= ABOUT ========= */
.about-content {
  max-width: 700px; margin: 0 auto;
}
.about-content p {
  color: var(--text-muted); line-height: 1.9; margin-bottom: var(--space-sm); font-size: 1.05rem;
}
.about-portrait {
  aspect-ratio: 3/4; max-width: 400px; margin: 0 auto var(--space-lg);
  background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}

/* ========= VIDEO EMBED ========= */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: var(--space-md); }
.video-placeholder {
  aspect-ratio: 16/9; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.05); color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========= FOOTER ========= */
.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-card);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-md); margin-bottom: var(--space-md);
}
.footer-grid h4 {
  color: var(--accent); margin-bottom: var(--space-sm);
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: var(--text-muted); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent); }
.social-links { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.social-links a { font-size: 0.9rem; }
.footer-bottom {
  text-align: center; padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted); font-size: 0.8rem;
}

/* Newsletter in footer */
.footer-newsletter { margin-top: var(--space-md); }
.newsletter-form {
  display: flex; gap: 0.5rem;
}
.newsletter-form input {
  flex: 1; padding: 0.6rem 0.8rem;
  background: var(--bg); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); font-size: 0.85rem; font-family: var(--sans);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* ========= LIGHTBOX ========= */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--text);
  font-size: 2rem; cursor: pointer; z-index: 201;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-content img { max-width: 90vw; max-height: 90vh; }

/* ========= EXIT INTENT POPUP ========= */
.exit-popup {
  display: none; position: fixed; inset: 0; z-index: 300;
  align-items: center; justify-content: center;
}
.exit-popup.active { display: flex; }
.exit-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}
.exit-popup-content {
  position: relative; z-index: 1;
  background: var(--bg-card); border: 1px solid rgba(212,168,67,0.2);
  padding: var(--space-lg);
  max-width: 480px; width: 90%;
  text-align: center;
  animation: popupIn 0.4s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer;
  transition: color var(--transition);
}
.exit-popup-close:hover { color: var(--text); }
.exit-popup-content h3 {
  margin-bottom: var(--space-sm); color: var(--accent);
}
.exit-popup-content p {
  color: var(--text-muted); margin-bottom: var(--space-md); line-height: 1.7;
}
.exit-popup-form {
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.exit-popup-form input {
  padding: 0.9rem 1rem; background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1); color: var(--text);
  font-size: 1rem; font-family: var(--sans); text-align: center;
}
.exit-popup-form input:focus { outline: none; border-color: var(--accent); }
.exit-popup-note {
  font-size: 0.8rem; color: var(--text-muted); margin-top: var(--space-xs);
}

/* ========= MOBILE STICKY CTA ========= */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90; padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(10,10,10,0.95) 30%);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.btn-sticky { width: 100%; max-width: 400px; }

/* ========= MOBILE ========= */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(17,17,17,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { padding: 0.6rem 0; }
  .has-dropdown { position: static; }
  .dropdown { position: static; display: none; border: none; padding-left: var(--space-sm); background: transparent; backdrop-filter: none; opacity: 1; visibility: visible; transition: none; }
  .has-dropdown.open .dropdown { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .video-grid { grid-template-columns: 1fr; }
  .mobile-sticky-cta { display: block; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ========= SELECTION ========= */
::selection { background: rgba(212,168,67,0.3); color: var(--text); }

/* ========= SCROLLBAR ========= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
