@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 {
  --deep-ink: #0D0E12;
  --liquid-chrome: #CBD5E1;
  --electric-moss: #1E2923;
  --steel-thread: #475569;
  --starlight: #F8FAFC;
  
  --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.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(13, 14, 18, 0.1);
  --shadow-md: 0 4px 16px rgba(13, 14, 18, 0.15);
  --shadow-lg: 0 8px 32px rgba(13, 14, 18, 0.2);
  
  --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;
}

body {
  font-family: var(--font-body);
  background: var(--deep-ink);
  color: var(--liquid-chrome);
  line-height: 1.6;
  font-size: 0.9rem;
  overflow-x: hidden;
}

.page-transition {
  animation: fadeInPage var(--transition-luxury) forwards;
}

@keyframes fadeInPage {
  to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--starlight);
}

h1 { font-size: 3rem; margin-bottom: var(--space-md); }
h2 { font-size: 2.5rem; margin-bottom: var(--space-sm); }
h3 { font-size: 2rem; margin-bottom: var(--space-sm); }
h4 { font-size: 1.5rem; margin-bottom: var(--space-xs); }

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

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

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: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-luxury);
  width: 90%;
  max-width: 1200px;
}

header.header-hidden {
  transform: translateX(-50%) translateY(-120%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--starlight);
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  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: 0.5rem 0;
}

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

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

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

.burger span {
  width: 1.8rem;
  height: 2px;
  background: var(--starlight);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

/* ========== HERO SECTIONS - Modern Design with Animations ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

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

/* Animated gradient mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(203, 213, 225, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(30, 41, 35, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(71, 85, 105, 0.15) 0%, transparent 50%);
  animation: meshFloat 12s ease-in-out infinite alternate;
}

@keyframes meshFloat {
  0% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.9; transform: scale(1.05) translate(2%, -1%); }
}

/* Floating decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(203, 213, 225, 0.08);
  border-radius: 50%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) { width: 400px; height: 400px; top: 10%; left: -5%; animation-delay: 0s; animation-duration: 18s; }
.hero-shape:nth-child(2) { width: 250px; height: 250px; top: 50%; right: -3%; animation-delay: -5s; animation-duration: 22s; }
.hero-shape:nth-child(3) { width: 150px; height: 150px; bottom: 15%; left: 15%; animation-delay: -10s; animation-duration: 16s; }
.hero-shape:nth-child(4) { width: 80px; height: 80px; top: 25%; right: 25%; animation-delay: -3s; animation-duration: 14s; }
.hero-shape:nth-child(5) { width: 300px; height: 300px; bottom: -10%; right: 20%; animation-delay: -7s; animation-duration: 24s; }

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(15px, -20px) scale(1.02); opacity: 0.5; }
  50% { transform: translate(-10px, 15px) scale(0.98); opacity: 0.4; }
  75% { transform: translate(-20px, -10px) scale(1.01); opacity: 0.35; }
}

/* Glowing orb accent */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 213, 225, 0.06) 0%, transparent 70%);
  z-index: 0;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow--1 { top: -150px; left: -100px; }
.hero-glow--2 { bottom: -200px; right: -150px; animation-delay: -4s; }
.hero-glow--3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; animation-delay: -2s; opacity: 0.5; }

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-glow--3 { animation-name: glowPulseSoft; }
@keyframes glowPulseSoft {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

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

/* Staggered hero content reveal */
.hero-content .hero-title {
  display: block;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.hero-content .hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-content .hero-title .word {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(1.2em);
  animation: heroWordReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content .hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-content .hero-title .word:nth-child(2) { animation-delay: 0.35s; }
.hero-content .hero-title .word:nth-child(3) { animation-delay: 0.5s; }
.hero-content .hero-title .word:nth-child(4) { animation-delay: 0.65s; }
.hero-content .hero-title .word:nth-child(5) { animation-delay: 0.8s; }
.hero-content .hero-title .word:nth-child(6) { animation-delay: 0.95s; }
.hero-content .hero-title .word:nth-child(7) { animation-delay: 1.1s; }

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

.hero-content .hero-subtitle {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: heroSubtitleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

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

.hero-content .hero-cta {
  opacity: 0;
  animation: heroCtaReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

@keyframes heroCtaReveal {
  to { opacity: 1; }
}

/* Single-line title animation (for subpages) */
.hero.hero--compact .hero-content .hero-title .line .word {
  animation-delay: calc(0.15s + var(--i, 0) * 0.1s) !important;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.hero p {
  font-size: 1.1rem;
  color: var(--liquid-chrome);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero page variants */
.hero--home { min-height: 100vh; }
.hero--consultations,
.hero--signature { min-height: 65vh; }
.hero--contact { min-height: 55vh; }

/* Consultations: Elegant split reveal with underline animation */
.hero--consultations .hero-content .hero-title .line {
  position: relative;
  display: inline-block;
}

.hero--consultations .hero-content .hero-title .line::after {
  content: '';
  position: absolute;
  bottom: -0.3em;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--liquid-chrome), var(--starlight));
  animation: underlineGrow 1s ease-out 1.2s forwards;
}

@keyframes underlineGrow {
  to { width: 100%; }
}

/* Signature: Gradient text shimmer */
.hero--signature .hero-title {
  background: linear-gradient(120deg, var(--starlight) 0%, var(--liquid-chrome) 50%, var(--starlight) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Contact: Warm pulse CTA accent */
.hero--contact .hero-glow {
  background: radial-gradient(circle, rgba(203, 213, 225, 0.08) 0%, transparent 70%);
}

.hero--contact .hero-content .hero-cta .btn {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 30px rgba(203, 213, 225, 0.2); }
}

/* Magnetic-style hover on hero CTA */
.hero .btn {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(203, 213, 225, 0.25);
}

/* Scroll indicator (Home only) */
.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel-thread);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: scrollIndicatorFade 1s ease-out 1.5s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--liquid-chrome), transparent);
  border-radius: 2px;
  animation: scrollLineBounce 2s ease-in-out infinite;
}

@keyframes scrollIndicatorFade {
  to { opacity: 1; }
}

@keyframes scrollLineBounce {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--liquid-chrome);
  color: var(--deep-ink);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  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: var(--starlight);
  transform: translate(-50%, -50%);
  transition: width var(--transition-luxury), height var(--transition-luxury);
}

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

.btn span {
  position: relative;
  z-index: 1;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--liquid-chrome);
  color: var(--liquid-chrome);
}

.btn-outline:hover {
  background: var(--liquid-chrome);
  color: var(--deep-ink);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  color: var(--steel-thread);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
}

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

.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: rgba(203, 213, 225, 0.03);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-luxury);
  border: 1px solid rgba(203, 213, 225, 0.1);
  transform: translateY(2rem);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-0.5rem);
  background: rgba(203, 213, 225, 0.05);
  border-color: rgba(203, 213, 225, 0.2);
  box-shadow: var(--shadow-lg);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: transform var(--transition-luxury);
}

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

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

.card p {
  color: var(--steel-thread);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

.overlap-content {
  position: relative;
  z-index: 2;
  background: rgba(13, 14, 18, 0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transform: translateX(-3rem);
  margin-top: -5rem;
}

.product-card {
  background: rgba(203, 213, 225, 0.03);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-luxury);
  border: 1px solid rgba(203, 213, 225, 0.1);
}

.product-card:hover {
  transform: translateY(-1rem) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: var(--space-md);
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--starlight);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: linear-gradient(135deg, rgba(30, 41, 35, 0.3) 0%, rgba(13, 14, 18, 0.8) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--liquid-chrome);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  background: rgba(203, 213, 225, 0.05);
  border: 1px solid rgba(203, 213, 225, 0.2);
  border-radius: var(--radius-sm);
  color: var(--starlight);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--liquid-chrome);
  background: rgba(203, 213, 225, 0.08);
  box-shadow: 0 0 0 3px rgba(203, 213, 225, 0.1);
}

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

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

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

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--steel-thread);
}

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

.info-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(203, 213, 225, 0.03);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.info-item:hover {
  background: rgba(203, 213, 225, 0.06);
  transform: translateX(0.5rem);
}

.info-item i {
  font-size: 1.3rem;
  color: var(--liquid-chrome);
  margin-top: 0.2rem;
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  font-size: 0.75rem;
  color: var(--steel-thread);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--steel-thread);
}

.footer-links a:hover {
  color: var(--liquid-chrome);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 14, 18, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  max-width: 600px;
  width: 90%;
  transition: bottom var(--transition-luxury);
  border: 1px solid rgba(203, 213, 225, 0.2);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-content p {
  font-size: 0.8rem;
  color: var(--liquid-chrome);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.error-content h1 {
  font-size: 8rem;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--liquid-chrome), var(--starlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--liquid-chrome);
  margin-bottom: var(--space-md);
  animation: checkmark var(--transition-luxury) ease-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.policy-page {
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 5rem;
}

.policy-page h1 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-page h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.8rem;
}

.policy-page p {
  margin-bottom: var(--space-sm);
  color: var(--steel-thread);
  line-height: 1.8;
}

.policy-page ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-md);
  color: var(--steel-thread);
}

.policy-page li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

@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-section:nth-child(even) .content,
  .asymmetric-section:nth-child(even) .visual {
    order: initial;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  header {
    width: 95%;
    padding: var(--space-xs) var(--space-sm);
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(13, 14, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-xl) var(--space-md);
    transition: right var(--transition-luxury);
    z-index: 999;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  nav a {
    font-size: 1.2rem;
  }
  
  .burger {
    display: flex;
  }
  
  .hero h1 { font-size: 2.2rem; }
  .hero-shape:nth-child(1) { width: 200px; height: 200px; }
  .hero-shape:nth-child(2) { width: 120px; height: 120px; }
  .hero-shape:nth-child(5) { width: 150px; height: 150px; }
  .hero p { font-size: 0.95rem; }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .overlap-content {
    transform: translateX(0);
    margin-top: 0;
  }
  
  .visual {
    transform: rotate(0);
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .hero h1 { font-size: 1.8rem; }
  
  .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.75rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .card img {
    height: 200px;
  }
  
  .product-image {
    height: 220px;
  }
}

@media (max-width: 320px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    word-wrap: break-word;
  }

  :root {
    font-size: 87%;
    --space-xs: 0.35rem;
    --space-sm: 0.6rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  
  header {
    width: 100%;
    padding: 0.4rem var(--space-sm);
  }
  
  .logo {
    font-size: 0.9rem;
  }
  
  nav {
    width: 85%;
    padding: var(--space-lg) var(--space-sm);
  }
  
  nav a {
    font-size: 1rem;
  }
  
  .burger span {
    width: 1.25rem;
  }
  
  .hero {
    padding: var(--space-lg) var(--space-sm);
    min-height: 90vh;
  }
  
  .hero--home { min-height: 90vh; }
  .hero--consultations,
  .hero--signature { min-height: 55vh; }
  .hero--contact { min-height: 50vh; }
  
  .hero h1 { font-size: 1.35rem; }
  .hero p { font-size: 0.8rem; margin-bottom: var(--space-md); }
  
  .hero-shape:nth-child(1) { width: 120px; height: 120px; }
  .hero-shape:nth-child(2) { width: 80px; height: 80px; }
  .hero-shape:nth-child(3) { width: 60px; height: 60px; }
  .hero-shape:nth-child(4) { width: 40px; height: 40px; }
  .hero-shape:nth-child(5) { width: 100px; height: 100px; }
  
  .hero-scroll {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }
  
  .hero-scroll-line {
    height: 28px;
  }
  
  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.65rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .section-title {
    margin-bottom: var(--space-md);
  }
  
  .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .card h3 {
    font-size: 1.05rem;
  }
  
  .card img {
    height: 160px;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-price {
    font-size: 1.4rem;
  }
  
  .asymmetric-section {
    gap: var(--space-md);
  }
  
  .overlap-content {
    padding: var(--space-md);
  }
  
  .contact-section {
    padding: var(--space-sm);
  }
  
  .contact-grid {
    gap: var(--space-md);
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.65rem;
    font-size: 16px;
  }
  
  .map-container {
    height: 280px;
  }
  
  footer {
    padding: var(--space-sm);
  }
  
  .footer-links {
    gap: var(--space-sm);
  }
  
  .footer-links a {
    font-size: 0.65rem;
  }
  
  .cookie-popup {
    padding: var(--space-sm);
    width: 100%;
  }
  
  .cookie-content p {
    font-size: 0.75rem;
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
  
  .thank-you-content i {
    font-size: 2.5rem;
  }
  
  .policy-page {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .policy-page h1 {
    font-size: 1.4rem;
  }
  
  .policy-page h2 {
    font-size: 1.15rem;
  }
}

/* ========== SIGNATURE PAGE - Luxury Editorial Design ========== */
.signature-page {
  --luxury-accent: #B8A98A;
  --luxury-accent-subtle: rgba(184, 169, 138, 0.25);
  --luxury-accent-muted: rgba(184, 169, 138, 0.12);
}

.signature-page .hero--signature {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-xl);
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 14, 18, 0.4) 40%, var(--deep-ink) 100%);
}

.signature-page .hero--signature .hero-canvas {
  opacity: 0.6;
}

.signature-page .hero--signature .hero-content {
  text-align: left;
  max-width: 100%;
  padding: 0 var(--space-md);
}

.signature-page .hero--signature .hero-title {
  background: none;
  -webkit-text-fill-color: var(--starlight);
  animation: none;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.signature-page .hero--signature .hero-title .line {
  display: block;
}

.signature-page .hero--signature .hero-subtitle {
  max-width: 520px;
  margin-left: 0;
  margin-right: 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--steel-thread);
}

.signature-page .hero--signature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxury-accent-muted), transparent);
  opacity: 0.6;
}

/* Editorial quote block */
.signature-quote {
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.signature-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--starlight);
  letter-spacing: 0.02em;
  position: relative;
}

.signature-quote blockquote::before {
  content: '"';
  position: absolute;
  left: -0.5em;
  top: -0.3em;
  font-size: 4em;
  color: var(--luxury-accent-muted);
  font-family: Georgia, serif;
}

.signature-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--luxury-accent);
}

/* Luxury section divider */
.signature-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) auto;
  max-width: 400px;
}

.signature-divider::before,
.signature-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxury-accent-muted));
}

.signature-divider::after {
  background: linear-gradient(90deg, var(--luxury-accent-muted), transparent);
}

.signature-divider span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--luxury-accent);
}

/* Luxury feature blocks */
.signature-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.signature-feature:nth-child(even) {
  direction: rtl;
}

.signature-feature:nth-child(even) > * {
  direction: ltr;
}

.signature-feature {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.signature-feature-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.signature-feature-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-feature:hover .signature-feature-visual img {
  transform: scale(1.04);
}

.signature-feature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--luxury-accent-muted);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.signature-feature:hover .signature-feature-visual::after {
  opacity: 1;
}

.signature-feature-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}

.signature-feature-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--luxury-accent);
  margin-top: var(--space-sm);
  opacity: 0.7;
}

.signature-feature-content p {
  color: var(--steel-thread);
  line-height: 1.85;
  font-size: 0.95rem;
}

/* Numbered principles - luxury style */
.signature-principles {
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(180deg, transparent 0%, rgba(184, 169, 138, 0.03) 50%, transparent 100%);
}

.signature-principles .section-title {
  margin-bottom: var(--space-lg);
}

.signature-principle-card {
  background: transparent;
  border: 1px solid var(--luxury-accent-muted);
  border-radius: 0;
  padding: var(--space-lg);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s, background 0.5s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(2rem);
}

.signature-principle-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.signature-principle-card:nth-child(1) { transition-delay: 0.1s; }
.signature-principle-card:nth-child(2) { transition-delay: 0.2s; }
.signature-principle-card:nth-child(3) { transition-delay: 0.3s; }
.signature-principle-card:nth-child(4) { transition-delay: 0.4s; }

.signature-principle-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--luxury-accent);
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-principle-card:hover {
  border-color: var(--luxury-accent-subtle);
  background: rgba(184, 169, 138, 0.04);
}

.signature-principle-card:hover::before {
  height: 100%;
}

.signature-principle-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--luxury-accent);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
}

.signature-principle-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.signature-principle-card p {
  font-size: 0.9rem;
  color: var(--steel-thread);
  line-height: 1.8;
}

/* Luxury outcomes grid */
.signature-outcomes {
  padding: var(--space-xl) var(--space-md);
}

.signature-outcome {
  text-align: center;
  padding: var(--space-lg);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(2rem);
}

.signature-outcome.visible {
  opacity: 1;
  transform: translateY(0);
}

.signature-outcome:nth-child(1) { transition-delay: 0.1s; }
.signature-outcome:nth-child(2) { transition-delay: 0.2s; }
.signature-outcome:nth-child(3) { transition-delay: 0.3s; }

.signature-outcome i {
  font-size: 1.8rem;
  color: var(--luxury-accent);
  margin-bottom: var(--space-md);
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-outcome:hover i {
  transform: scale(1.15);
}

.signature-outcome h3 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.signature-outcome p {
  font-size: 0.85rem;
  color: var(--steel-thread);
  line-height: 1.7;
}

/* Full-width statement */
.signature-statement {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.signature-statement p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--liquid-chrome);
  letter-spacing: 0.02em;
}

/* Luxury CTA section */
.signature-cta {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--luxury-accent-muted);
}

.signature-cta .btn {
  background: transparent;
  border: 2px solid var(--luxury-accent);
  color: var(--luxury-accent);
}

.signature-cta .btn:hover {
  background: var(--luxury-accent);
  color: var(--deep-ink);
}

/* Responsive - Signature luxury */
@media (max-width: 1024px) {
  .signature-feature {
    grid-template-columns: 1fr;
  }

  .signature-feature:nth-child(even) {
    direction: ltr;
  }

  .signature-feature-visual img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .signature-page .hero--signature .hero-content {
    text-align: center;
  }

  .signature-page .hero--signature .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .signature-page .hero--signature::after {
    left: var(--space-md);
    right: var(--space-md);
  }
}

@media (max-width: 320px) {
  .signature-page .hero--signature {
    min-height: 55vh;
    padding-bottom: var(--space-lg);
  }

  .signature-page .hero--signature .hero-title {
    font-size: 1.35rem;
  }

  .signature-page .hero--signature .hero-subtitle {
    font-size: 0.8rem;
  }

  .signature-quote blockquote {
    font-size: 1.2rem;
  }

  .signature-quote blockquote::before {
    font-size: 2.5em;
  }

  .signature-quote cite {
    font-size: 0.65rem;
  }

  .signature-divider {
    margin: var(--space-lg) auto;
  }

  .signature-feature {
    padding: var(--space-md) var(--space-sm);
  }

  .signature-feature-visual img {
    height: 220px;
  }

  .signature-feature-content h2 {
    font-size: 1.2rem;
  }

  .signature-feature-content h2::after {
    width: 40px;
  }

  .signature-feature-content p {
    font-size: 0.85rem;
  }

  .signature-principles {
    padding: var(--space-md) var(--space-sm);
  }

  .signature-principle-card {
    padding: var(--space-sm);
  }

  .signature-principle-number {
    font-size: 0.75rem;
  }

  .signature-principle-card h3 {
    font-size: 1.05rem;
  }

  .signature-principle-card p {
    font-size: 0.8rem;
  }

  .signature-outcome {
    padding: var(--space-md);
  }

  .signature-outcome i {
    font-size: 1.4rem;
  }

  .signature-outcome h3 {
    font-size: 1rem;
  }

  .signature-outcome p {
    font-size: 0.75rem;
  }

  .signature-statement p {
    font-size: 0.9rem;
  }

  .signature-cta h2 {
    font-size: 1.2rem;
  }

  .signature-cta p {
    font-size: 0.8rem;
  }
}
