@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --obsidian: #080808;
  --moonlight: #E2E8F0;
  --emerald: #064E3B;
  --smoke: #1C1C1E;
  --pure: #FFFFFF;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--obsidian);
  color: var(--moonlight);
  line-height: 1.6;
  font-size: 0.9rem;
  overflow-x: hidden;
  padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

a:hover {
  color: var(--pure);
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform var(--transition-luxury);
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--pure);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald);
  transition: width var(--transition-smooth);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--moonlight);
  transition: all var(--transition-smooth);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--space-md);
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) forwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   LUXURY HERO SECTIONS
   ============================================ */

/* Home Hero - Floating Elements & Gradient */
.hero-home {
  min-height: 100vh;
  position: relative;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(6, 78, 59, 0.15) 0%, transparent 70%);
  z-index: 0;
  animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.floating-circle,
.floating-square {
  position: absolute;
  border: 1px solid rgba(6, 78, 59, 0.3);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.floating-square {
  border-radius: 0;
  transform: rotate(45deg);
}

.floating-circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-circle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.floating-circle-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.floating-square-1 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 20%;
  animation-delay: -7s;
}

.floating-square-2 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  right: 10%;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
    opacity: 0.6;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(6, 78, 59, 0.2);
  border: 1px solid rgba(6, 78, 59, 0.5);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s 0.2s forwards;
}

.hero-title-gradient {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line-1,
.title-line-2,
.title-line-3 {
  background: linear-gradient(135deg, var(--moonlight) 0%, var(--pure) 50%, rgba(6, 78, 59, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpLuxury 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.title-line-1 {
  animation-delay: 0.3s;
}

.title-line-2 {
  animation-delay: 0.5s;
}

.title-line-3 {
  animation-delay: 0.7s;
}

@keyframes fadeInUpLuxury {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.8);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.1s forwards;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.8rem;
  background: linear-gradient(135deg, var(--emerald) 0%, rgba(6, 78, 59, 0.9) 100%);
  border: 1px solid rgba(6, 78, 59, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-luxury::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-luxury:hover::after {
  width: 400px;
  height: 400px;
}

.btn-luxury i {
  transition: transform var(--transition-smooth);
}

.btn-luxury:hover i {
  transform: translateX(5px);
}

.btn-outline-luxury {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2.8rem;
  background: transparent;
  border: 1px solid rgba(226, 232, 240, 0.3);
  color: var(--moonlight);
}

.btn-outline-luxury:hover {
  border-color: var(--emerald);
  background: rgba(6, 78, 59, 0.1);
  color: var(--pure);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s 1.3s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
}

/* Limited Editions Hero - Split Title & Stats */
.hero-editions {
  min-height: 85vh;
  position: relative;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(6, 78, 59, 0.03) 2px, rgba(6, 78, 59, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(6, 78, 59, 0.03) 2px, rgba(6, 78, 59, 0.03) 4px);
  z-index: 0;
  opacity: 0.5;
}

.edition-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s 0.2s forwards;
}

.badge-number {
  font-size: 4rem;
  font-weight: 300;
  font-family: var(--font-display);
  color: var(--emerald);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}

.hero-title-split {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInFromLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.title-word-1 {
  animation-delay: 0.4s;
}

.title-word-2 {
  animation-delay: 0.6s;
  color: var(--emerald);
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(6, 78, 59, 0.05);
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp 1s 0.8s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 300;
  font-family: var(--font-display);
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(6, 78, 59, 0.3);
}

/* Posters Hero - Image Reveal */
.hero-posters {
  min-height: 90vh;
  position: relative;
}

.hero-image-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.reveal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--obsidian);
  transform-origin: left;
  animation: revealSlide 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-overlay-1 {
  animation-delay: 0s;
}

.reveal-overlay-2 {
  animation-delay: 0.2s;
}

.reveal-overlay-3 {
  animation-delay: 0.4s;
}

@keyframes revealSlide {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.poster-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(6, 78, 59, 0.2);
  border: 1px solid rgba(6, 78, 59, 0.5);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
}

.hero-title-reveal {
  font-size: 5.5rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.reveal-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealText 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-reveal {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 1s 1.2s forwards;
}

.hero-gallery-preview {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.preview-item {
  width: 120px;
  opacity: 0;
  transform: scale(0.8);
  animation: scaleInRotate 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preview-item-1 {
  animation-delay: 1.4s;
}

.preview-item-2 {
  animation-delay: 1.6s;
}

.preview-item-3 {
  animation-delay: 1.8s;
}

@keyframes scaleInRotate {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.preview-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.3) 0%, rgba(6, 78, 59, 0.1) 100%);
  border: 1px solid rgba(6, 78, 59, 0.4);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  transition: transform var(--transition-smooth);
}

.preview-item:hover .preview-image {
  transform: translateY(-5px) scale(1.05);
}

.preview-label {
  font-size: 0.7rem;
  text-align: center;
  color: rgba(226, 232, 240, 0.7);
  letter-spacing: 0.05em;
}

/* Contact Hero - Elegant Typography */
.hero-contact {
  min-height: 75vh;
  position: relative;
}

.hero-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.contact-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200px;
  background: linear-gradient(90deg, transparent, rgba(6, 78, 59, 0.1), transparent);
  animation: waveMove 15s linear infinite;
}

.contact-wave-1 {
  animation-delay: 0s;
  opacity: 0.3;
}

.contact-wave-2 {
  animation-delay: -5s;
  opacity: 0.2;
  height: 150px;
}

.contact-wave-3 {
  animation-delay: -10s;
  opacity: 0.15;
  height: 100px;
}

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

.contact-icon-wrapper {
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s 0.2s forwards;
}

.contact-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(6, 78, 59, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  animation: iconPulse 3s ease-in-out infinite;
}

.contact-icon-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(6, 78, 59, 0.3);
  animation: iconRipple 3s ease-in-out infinite;
}

.contact-icon-circle i {
  font-size: 2.5rem;
  color: var(--emerald);
  z-index: 1;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    border-color: rgba(6, 78, 59, 0.5);
  }
  50% {
    transform: scale(1.05);
    border-color: rgba(6, 78, 59, 0.8);
  }
}

@keyframes iconRipple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hero-title-elegant {
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateX(90deg);
  animation: charReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay);
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.hero-subtitle-elegant {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 1s 1.5s forwards;
}

.hero-contact-quick {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.7s forwards;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(6, 78, 59, 0.1);
  border: 1px solid rgba(6, 78, 59, 0.3);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.contact-quick-link:hover {
  background: rgba(6, 78, 59, 0.2);
  border-color: var(--emerald);
  transform: translateY(-3px);
}

.contact-quick-link i {
  font-size: 1.2rem;
  color: var(--emerald);
}

/* Responsive Design for Hero Sections */
@media (max-width: 1024px) {
  .hero-title-gradient,
  .hero-title-split,
  .hero-title-reveal,
  .hero-title-elegant {
    font-size: 3.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .hero-gallery-preview {
    gap: var(--space-sm);
  }
  
  .preview-item {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .hero-title-gradient,
  .hero-title-split,
  .hero-title-reveal,
  .hero-title-elegant {
    font-size: 2.5rem;
  }
  
  .hero-subtitle,
  .hero-subtitle-reveal,
  .hero-subtitle-elegant {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-luxury,
  .btn-outline-luxury {
    width: 100%;
    justify-content: center;
  }
  
  .floating-circle-1,
  .floating-circle-2,
  .floating-circle-3,
  .floating-square-1,
  .floating-square-2 {
    display: none;
  }
  
  .hero-contact-quick {
    flex-direction: column;
  }
  
  .contact-quick-link {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--emerald);
  color: var(--pure);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-luxury), height var(--transition-luxury);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 3rem;
  font-weight: 300;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--smoke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.card-text {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: var(--space-sm);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pure);
  font-weight: 600;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  margin: var(--space-xl) 0;
}

.asymmetric-section:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.asymmetric-section:nth-child(even) .asymmetric-content {
  order: 2;
}

.asymmetric-section:nth-child(even) .asymmetric-visual {
  order: 1;
}

.asymmetric-content {
  padding: var(--space-md);
  transform: translateX(-2rem);
}

.asymmetric-visual {
  position: relative;
  transform: rotate(-3deg);
  transition: transform var(--transition-luxury);
}

.asymmetric-visual:hover {
  transform: rotate(0deg) scale(1.02);
}

.asymmetric-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overlap-section {
  position: relative;
  margin: var(--space-xl) 0;
}

.overlap-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40%;
  height: 80%;
  background: var(--emerald);
  opacity: 0.1;
  border-radius: var(--radius-lg);
  transform: rotate(5deg);
}

.overlap-content {
  position: relative;
  z-index: 1;
  background: var(--smoke);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 70%;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--obsidian);
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: var(--radius-sm);
  color: var(--moonlight);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer {
  background: var(--smoke);
  padding: var(--space-md) 0;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.modal-content {
  background: var(--smoke);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

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

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  color: var(--moonlight);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--pure);
}

.contact-section {
  background: var(--smoke);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-lg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  color: var(--emerald);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  min-height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--smoke);
  border: 1px solid rgba(6, 78, 59, 0.2);
  transition: box-shadow var(--transition-smooth);
}

.map-container:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 78, 59, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
  transition: filter var(--transition-smooth);
}

.map-container:hover iframe {
  filter: grayscale(0) contrast(1.1);
}

/* Loading state for map */
.map-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(6, 78, 59, 0.3);
  border-top-color: var(--emerald);
  border-radius: 50%;
  animation: mapLoading 1s linear infinite;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

@keyframes mapLoading {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  padding: var(--space-lg);
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--emerald);
  margin-bottom: var(--space-md);
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 600px;
  padding: var(--space-lg);
}

.error-content h1 {
  font-size: 8rem;
  color: var(--emerald);
  margin-bottom: var(--space-sm);
}

.parallax-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-lg);
  background: rgba(8, 8, 8, 0.7);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: all var(--transition-luxury);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: all var(--transition-luxury);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-luxury);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero h1 { font-size: 3rem; }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .asymmetric-section,
  .asymmetric-section:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-content {
    transform: translateX(0);
  }
  
  .asymmetric-section:nth-child(even) .asymmetric-content,
  .asymmetric-section:nth-child(even) .asymmetric-visual {
    order: initial;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--smoke);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero h1 { font-size: 2.5rem; }
  
  .overlap-content {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero h1 { font-size: 2rem; }
  
  .btn {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
  }
  
  .card-img {
    height: 15rem;
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

.luxury-page {
  background: linear-gradient(135deg, var(--obsidian) 0%, #0a0a0a 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.luxury-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  flex: 1;
}

.luxury-card {
  background: linear-gradient(145deg, var(--smoke) 0%, rgba(28, 28, 30, 0.8) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(226, 232, 240, 0.1) inset;
  border: 1px solid rgba(226, 232, 240, 0.05);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.03), transparent);
  transition: left 0.8s;
}

.luxury-card:hover::before {
  left: 100%;
}

.luxury-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--pure) 0%, var(--moonlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxury-subtitle {
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.luxury-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: var(--space-md);
}

.luxury-icon {
  font-size: 5rem;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--moonlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.luxury-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  margin: var(--space-lg) 0;
  opacity: 0.3;
}

.luxury-list {
  list-style: none;
  padding: 0;
}

.luxury-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-md);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
}

.luxury-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-size: 0.7rem;
}

.luxury-section {
  margin-bottom: var(--space-lg);
}

.luxury-section h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--pure);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.luxury-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--emerald);
}

.luxury-btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .luxury-title {
    font-size: 2.5rem;
  }
  
  .luxury-subtitle {
    font-size: 1.1rem;
  }
  
  .luxury-icon {
    font-size: 4rem;
  }
  
  .luxury-container {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 480px) {
  .luxury-title {
    font-size: 2rem;
  }
  
  .luxury-subtitle {
    font-size: 1rem;
  }
  
  .luxury-icon {
    font-size: 3.5rem;
  }
  
  .luxury-card {
    padding: var(--space-md);
  }
  
  .luxury-btn-group {
    flex-direction: column;
  }
  
  .luxury-btn-group .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  /* Base Typography */
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  html {
    font-size: 14px;
  }
  
  body {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.15rem; }
  h4 { font-size: 1rem; }
  
  /* Header & Navigation */
  .header-inner {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }
  
  .nav {
    width: 85%;
    padding: var(--space-md);
  }
  
  .nav a {
    font-size: 0.75rem;
    padding: var(--space-xs) 0;
  }
  
  .burger span {
    width: 1.2rem;
  }
  
  /* Hero Sections - General */
  .hero {
    min-height: 85vh;
    padding-top: 3rem;
  }
  
  .hero-content {
    padding: var(--space-sm);
    max-width: 100%;
  }
  
  /* Home Hero */
  .hero-home {
    min-height: 90vh;
  }
  
  .hero-title-gradient {
    font-size: 2rem;
    gap: 0.3rem;
  }
  
  .title-line-1,
  .title-line-2,
  .title-line-3 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    padding: 0 var(--space-xs);
    margin-bottom: var(--space-md);
  }
  
  .hero-badge {
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .btn-luxury,
  .btn-outline-luxury {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.7rem;
    justify-content: center;
  }
  
  .btn-luxury i,
  .btn-outline-luxury i {
    font-size: 0.7rem;
  }
  
  .hero-scroll-indicator {
    bottom: 1.5rem;
  }
  
  .scroll-line {
    height: 30px;
  }
  
  .hero-scroll-indicator span {
    font-size: 0.6rem;
  }
  
  /* Floating Elements - Hide on very small screens */
  .floating-circle,
  .floating-square {
    display: none;
  }
  
  /* Limited Editions Hero */
  .hero-editions {
    min-height: 80vh;
  }
  
  .edition-badge {
    margin-bottom: var(--space-md);
  }
  
  .badge-number {
    font-size: 2.5rem;
  }
  
  .badge-label {
    font-size: 0.65rem;
  }
  
  .hero-title-split {
    font-size: 2.2rem;
    gap: 0.2rem;
  }
  
  .title-word {
    font-size: 1.9rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    margin-top: var(--space-md);
  }
  
  .stat-item {
    width: 100%;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
    margin: var(--space-xs) 0;
  }
  
  /* Posters Hero */
  .hero-posters {
    min-height: 85vh;
  }
  
  .poster-badge {
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-title-reveal {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-subtitle-reveal {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-gallery-preview {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }
  
  .preview-item {
    width: 80px;
  }
  
  .preview-image {
    height: 100px;
  }
  
  .preview-label {
    font-size: 0.6rem;
  }
  
  /* Contact Hero */
  .hero-contact {
    min-height: 75vh;
  }
  
  .contact-icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .contact-icon-circle i {
    font-size: 1.8rem;
  }
  
  .hero-title-elegant {
    font-size: 1.8rem;
    gap: 0.05rem;
    line-height: 1.3;
  }
  
  .title-char {
    font-size: 1.6rem;
  }
  
  .hero-subtitle-elegant {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-contact-quick {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .contact-quick-link {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.75rem;
    justify-content: center;
  }
  
  .contact-quick-link i {
    font-size: 1rem;
  }
  
  /* Sections */
  .section {
    padding: var(--space-lg) 0;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  /* Grid Layouts */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  /* Cards */
  .card {
    border-radius: var(--radius-md);
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
  }
  
  .card-text {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }
  
  .card-price {
    font-size: 1.1rem;
  }
  
  .card-img {
    height: 12rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Asymmetric Sections */
  .asymmetric-section {
    padding: var(--space-md) 0;
  }
  
  .asymmetric-content {
    padding: var(--space-sm);
  }
  
  .asymmetric-content h2 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
  }
  
  .asymmetric-content p {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }
  
  /* Overlap Sections */
  .overlap-content {
    padding: var(--space-md);
  }
  
  .overlap-content h2 {
    font-size: 1.5rem;
  }
  
  .overlap-content p {
    font-size: 0.75rem;
  }
  
  /* Parallax Sections */
  .parallax-section {
    min-height: 50vh;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .parallax-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .parallax-content p {
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
  }
  
  /* Contact Form */
  .contact-section {
    padding: var(--space-md) 0;
  }
  
  .contact-section h2 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
  }
  
  .contact-section p {
    font-size: 0.75rem;
    margin-bottom: var(--space-md);
  }
  
  .contact-grid {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .contact-info {
    gap: var(--space-sm);
  }
  
  .contact-item {
    padding: var(--space-sm);
  }
  
  .contact-item i {
    font-size: 1.2rem;
  }
  
  .contact-item h4 {
    font-size: 0.9rem;
  }
  
  .contact-item p {
    font-size: 0.7rem;
  }
  
  .map-container {
    height: 200px;
  }
  
  .map-container iframe {
    height: 100%;
  }
  
  .form-group {
    margin-bottom: var(--space-sm);
  }
  
  .form-label {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }
  
  .form-input,
  .form-textarea {
    padding: 0.7rem;
    font-size: 0.75rem;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .checkbox-group {
    font-size: 0.7rem;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-md) 0;
    font-size: 0.7rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .footer-links a {
    font-size: 0.65rem;
  }
  
  /* Luxury Styles */
  .luxury-title {
    font-size: 1.5rem;
  }
  
  .luxury-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }
  
  .luxury-icon {
    font-size: 2.5rem;
  }
  
  .luxury-card {
    padding: var(--space-sm);
  }
  
  .luxury-container {
    padding: var(--space-md) var(--space-sm);
  }
  
  .luxury-text {
    font-size: 0.8rem;
  }
  
  .luxury-list li {
    font-size: 0.75rem;
    padding-left: var(--space-sm);
  }
  
  .luxury-btn-group {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .luxury-btn-group .btn {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: var(--space-md);
    margin: var(--space-sm);
    max-width: calc(100% - 2rem);
  }
  
  .modal-content h3 {
    font-size: 1.15rem;
  }
  
  .modal-content p {
    font-size: 0.75rem;
  }
  
  /* Error Pages */
  .error-content h1 {
    font-size: 3.5rem;
  }
  
  .error-content p {
    font-size: 0.8rem;
  }
  
  /* Utility Adjustments */
  .hero-canvas {
    opacity: 0.3;
  }
  
  /* Reduce animation complexity on very small screens */
  .hero-bg-gradient,
  .hero-bg-pattern {
    opacity: 0.5;
  }
  
  .contact-wave {
    height: 100px;
  }
  
  .contact-wave-2 {
    height: 80px;
  }
  
  .contact-wave-3 {
    height: 60px;
  }
}
