/**
 * ============================================================
 * KINSHASA EDITORIAL - COMPLETE DESIGN SYSTEM
 * Ma Yve Grill - Authentic Congolese Cuisine
 * Version: 1.0.0
 * Author: Senior Frontend Engineer
 * ============================================================
 *
 * TABLE OF CONTENTS:
 * 1. CSS Custom Properties (Root)
 * 2. Reset & Base
 * 3. Typography Scale
 * 4. Layout System
 * 5. Hero Section
 * 6. Curtain Reveal Animation
 * 7. Buttons
 * 8. Navigation
 * 9. Footer
 * 10. Forms
 * 11. Responsive Breakpoints
 * 12. Print Styles
 * 13. Accessibility
 * ============================================================
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (ROOT)
   ============================================================ */
:root {
  /* --- Colors --- */
  --terracotta: #C04000;
  --terracotta-light: #D46020;
  --terracotta-dark: #A03000;
  --terracotta-50: rgba(192, 64, 0, 0.05);
  --terracotta-100: rgba(192, 64, 0, 0.1);
  --terracotta-200: rgba(192, 64, 0, 0.2);

  --gold: #FFB347;
  --gold-light: #FFD700;
  --gold-dark: #E09020;
  --gold-50: rgba(255, 179, 71, 0.05);
  --gold-100: rgba(255, 179, 71, 0.1);

  --forest: #228B22;
  --forest-light: #2EAD2E;
  --forest-dark: #1A6B1A;

  --charcoal: #1A1A1A;
  --charcoal-light: #2C2C2C;
  --charcoal-lighter: #3D3D3D;

  --cream: #FAF0E6;
  --cream-dark: #F0E0D0;
  --warm-sand: #F5E6D3;
  --warm-sand-dark: #E8D4BC;

  --white: #FFFFFF;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);

  --error: #DC2626;
  --error-light: #FEE2E2;
  --success: #228B22;
  --success-light: #DCFCE7;
  --warning: #F59E0B;
  --info: #3B82F6;

  /* --- Typography --- */
  --font-headline: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-label: 'Inter', sans-serif;

  /* --- Typography Scale --- */
  --text-xs: clamp(0.75rem, 0.8vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1vw, 1rem);
  --text-base: clamp(1rem, 1.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.5vw, 1.375rem);
  --text-xl: clamp(1.25rem, 2vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 2.5vw, 2.25rem);
  --text-3xl: clamp(2rem, 3.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 5vw, 4rem);
  --text-5xl: clamp(3rem, 8vw, 6rem);
  --text-6xl: clamp(4rem, 10vw, 8rem);
  --text-7xl: clamp(5rem, 12vw, 10rem);

  /* --- Spacing --- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --space-3xl: 14rem;

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 800ms ease;
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- Container --- */
  --container-max: 1440px;
  --container-narrow: 900px;
  --container-wide: 1600px;

  /* --- Z-Index Scale --- */
  --z-base: 1;
  --z-above: 10;
  --z-nav: 100;
  --z-modal: 1000;
  --z-overlay: 2000;
  --z-toast: 3000;
  --z-max: 999999;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 26, 26, 0.12);
  --shadow-xl: 0 24px 80px rgba(26, 26, 26, 0.16);
  --shadow-gold: 0 8px 32px rgba(255, 179, 71, 0.25);
  --shadow-terracotta: 0 8px 32px rgba(192, 64, 0, 0.25);

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

/* --- Modern CSS Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* --- Selection --- */
::selection {
  background-color: var(--gold);
  color: var(--charcoal);
}

::-moz-selection {
  background-color: var(--gold);
  color: var(--charcoal);
}

/* --- Focus States --- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm-sand);
}

::-webkit-scrollbar-thumb {
  background: var(--terracotta);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--terracotta-dark);
}

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

/* --- Links --- */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* --- Lists --- */
ul, ol {
  list-style: none;
}

/* --- Buttons --- */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Inputs --- */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */

/* --- Headlines --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-5xl);
  line-height: 1.05;
}

h2 {
  font-size: var(--text-4xl);
  line-height: 1.1;
}

h3 {
  font-size: var(--text-3xl);
  line-height: 1.15;
}

h4 {
  font-size: var(--text-2xl);
  line-height: 1.2;
}

h5 {
  font-size: var(--text-xl);
  line-height: 1.3;
}

h6 {
  font-size: var(--text-lg);
  line-height: 1.4;
}

/* --- Body Text --- */
p {
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 70ch;
}

p.lead {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.6;
  color: var(--charcoal-light);
}

/* --- Labels --- */
.label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--space-xs);
}

.label--gold {
  color: var(--gold-dark);
}

.label--cream {
  color: var(--cream);
  opacity: 0.8;
}

.label--center {
  text-align: center;
}

/* --- Eyebrow --- */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* --- Display Text --- */
.display-text {
  font-family: var(--font-headline);
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-text--italic {
  font-style: italic;
  font-weight: 400;
}

/* --- Quote / Pull Quote --- */
.pull-quote {
  font-family: var(--font-headline);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--terracotta);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
}

/* ============================================================
   4. LAYOUT SYSTEM
   ============================================================ */

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--full {
  max-width: none;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

/* --- Section --- */
.section {
  position: relative;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section--lg {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section--xl {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section--cream {
  background-color: var(--cream);
}

.section--sand {
  background-color: var(--warm-sand);
}

.section--dark {
  background-color: var(--charcoal);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--cream);
}

.section--dark p {
  color: var(--white-70);
}

/* --- Asymmetric Grid --- */
.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.asymmetric-grid--2col {
  grid-template-columns: 1fr;
}

.asymmetric-grid--3col {
  grid-template-columns: 1fr;
}

.asymmetric-grid--offset {
  align-items: center;
}

/* --- Offset Layout --- */
.offset-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.offset-layout__image {
  position: relative;
}

.offset-layout__content {
  position: relative;
  z-index: 2;
}

/* --- Editorial Split --- */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  align-items: center;
}

.editorial-split__media {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

.editorial-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-split__content {
  padding: var(--space-xl) var(--space-md);
}

/* --- Spacer Utility --- */
.spacer { height: var(--space-sm); }
.spacer--md { height: var(--space-md); }
.spacer--lg { height: var(--space-lg); }
.spacer--xl { height: var(--space-xl); }

/* --- Divider --- */
.divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.divider--terracotta {
  background: var(--terracotta);
}

/* --- Decorative Line --- */
.deco-line {
  position: absolute;
  width: 1px;
  height: 120px;
  background: var(--gold);
  opacity: 0.3;
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__background img,
.hero__background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.1) 40%,
    rgba(26, 26, 26, 0.5) 80%,
    rgba(26, 26, 26, 0.8) 100%
  );
  z-index: 2;
}

/* --- Floating Orbs --- */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  pointer-events: none;
  z-index: 2;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: var(--terracotta);
  opacity: 0.15;
  top: 10%;
  left: -5%;
  animation: orb-drift-1 15s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  opacity: 0.12;
  top: 40%;
  right: -8%;
  animation: orb-drift-2 18s ease-in-out infinite alternate;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--charcoal-lighter);
  opacity: 0.2;
  bottom: 10%;
  left: 30%;
  animation: orb-drift-3 12s ease-in-out infinite alternate;
}

/* --- Film Grain Overlay --- */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.03;
}

.hero__grain::after {
  content: '';
  position: absolute;
  inset: 0;
  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: 128px;
}

/* --- Golden Dust Particles --- */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
  will-change: transform;
  animation: particle-drift linear infinite;
}

/* --- Hero Content --- */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  max-width: 900px;
}

.hero__label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: hero-reveal 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: hero-reveal 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-70);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: hero-reveal 0.8s ease forwards;
  animation-delay: 0.9s;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: hero-reveal 0.8s ease forwards;
  animation-delay: 1.2s;
}

/* --- Scroll Indicator --- */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: hero-reveal 0.8s ease forwards;
  animation-delay: 1.8s;
}

.hero__scroll-text {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white-50);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white-20);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ============================================================
   6. CURTAIN REVEAL ANIMATION
   ============================================================ */

.curtain-reveal {
  position: relative;
  overflow: hidden;
}

.curtain-reveal__bar {
  position: absolute;
  inset: 0;
  z-index: 10;
  transform-origin: left center;
  transform: scaleX(1);
}

.curtain-reveal__bar--terracotta {
  background: var(--terracotta);
}

.curtain-reveal__bar--cream {
  background: var(--cream);
  animation-delay: 0.15s;
}

/* When active class is added by IntersectionObserver */
.curtain-reveal.is-active .curtain-reveal__bar--terracotta {
  animation: curtain-terracotta 0.8s var(--transition-bounce) forwards;
}

.curtain-reveal.is-active .curtain-reveal__bar--cream {
  animation: curtain-cream 0.8s var(--transition-bounce) 0.15s forwards;
}

.curtain-reveal__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.curtain-reveal.is-active .curtain-reveal__content {
  opacity: 1;
  transform: translateY(0);
}

/* --- Curtain Keyframes --- */
@keyframes curtain-terracotta {
  0% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

@keyframes curtain-cream {
  0% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

/* ============================================================
   7. BUTTONS
   ============================================================ */

/* --- Base Button --- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2.5rem;
  border: 2px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  transition: color var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
  min-height: 48px;
  min-width: 48px;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateY(101%);
  transition: transform var(--transition-normal);
  z-index: 0;
  border-radius: inherit;
}

.btn:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:hover::before {
  transform: translateY(0);
}

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

/* --- Button Variants --- */
.btn--outline {
  background: transparent;
  color: var(--terracotta);
}

.btn--outline::before {
  background: var(--terracotta);
}

.btn--outline:hover {
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--white {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}

.btn--white::before {
  background: var(--terracotta);
}

.btn--white:hover {
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn--gold::before {
  background: var(--charcoal);
}

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

.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn--dark::before {
  background: var(--cream);
}

.btn--dark:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* --- Button Sizes --- */
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.btn--md {
  padding: 1rem 2.5rem;
  font-size: var(--text-sm);
}

.btn--lg {
  padding: 1.25rem 3.5rem;
  font-size: var(--text-base);
  letter-spacing: 2.5px;
}

/* --- Button with Icon --- */
.btn--icon svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn--icon:hover svg {
  transform: translateX(3px);
}

/* --- Magnetic Hover (CSS only) --- */
.btn--magnetic {
  transition: transform var(--transition-fast), box-shadow var(--transition-normal);
}

.btn--magnetic:hover {
  transform: scale(1.05);
}

.btn--magnetic:active {
  transform: scale(0.98);
}

/* --- Ghost Button --- */
.btn--ghost {
  background: transparent;
  border-color: var(--white-50);
  color: var(--white);
}

.btn--ghost::before {
  background: var(--white);
}

.btn--ghost:hover {
  border-color: var(--white);
  color: var(--charcoal);
}

/* ============================================================
   8. NAVIGATION
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-sm) 0;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: rgba(250, 240, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xs) 0;
}

.header--scrolled .header__logo-text,
.header--scrolled .nav__link {
  color: var(--charcoal);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Logo --- */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header__logo-text {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-normal);
}

.header__logo-text span {
  color: var(--gold);
  font-style: italic;
}

/* --- Navigation --- */
.nav {
  display: none;
}

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

.nav__link {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-90);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-normal);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

/* --- Header Actions --- */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* --- Language Toggle --- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white-90);
}

.header--scrolled .lang-toggle {
  color: var(--charcoal);
}

.lang-toggle__btn {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
  min-height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle__btn:hover {
  background: var(--white-20);
  color: var(--gold);
}

.lang-toggle__btn.is-active {
  background: var(--terracotta);
  color: var(--white);
}

.header--scrolled .lang-toggle__btn:hover {
  background: var(--warm-sand);
}

/* --- Cart Icon --- */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.header--scrolled .cart-btn {
  color: var(--charcoal);
}

.cart-btn:hover {
  transform: scale(1.1);
  color: var(--gold);
}

.cart-btn__count {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cart-bounce 0.3s var(--transition-bounce);
}

/* --- Hamburger --- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: calc(var(--z-nav) + 10);
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  color: var(--white);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform-origin: center;
}

.header--scrolled .hamburger__line {
  color: var(--charcoal);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 5);
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: var(--font-headline);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--gold);
  transform: translateX(10px);
}

.mobile-menu__footer {
  position: absolute;
  bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu__phone {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  color: var(--gold);
  letter-spacing: 2px;
}

/* ============================================================
   9. FOOTER
   ============================================================ */

.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer__logo {
  font-family: var(--font-headline);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
}

.footer__logo span {
  color: var(--gold);
  font-style: italic;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--white-50);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--white-70);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer__link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--white-70);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--charcoal-light);
}

.footer__hours-day {
  color: var(--white-90);
}

/* --- Newsletter --- */
.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form__input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-lighter);
  border-radius: var(--radius-full);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.newsletter-form__input::placeholder {
  color: var(--white-50);
}

.newsletter-form__input:focus {
  border-color: var(--gold);
  outline: none;
}

/* --- Social Links --- */
.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal-lighter);
  border-radius: 50%;
  color: var(--white-70);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--charcoal-light);
  transform: translateY(-3px);
}

/* --- Footer Bottom --- */
.footer__bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--white-50);
}

.footer__credit {
  font-size: 0.75rem;
  color: var(--white-30);
}

/* ============================================================
   10. FORMS
   ============================================================ */

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

.form-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--warm-sand-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.form-input::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.form-input:hover {
  border-color: var(--gold);
}

.form-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-100);
  outline: none;
}

/* --- Floating Label --- */
.form-group--floating {
  position: relative;
}

.form-group--floating .form-label {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-base);
  text-transform: none;
  letter-spacing: 0;
  color: rgba(26, 26, 26, 0.5);
  background: var(--white);
  padding: 0 4px;
  transition: all var(--transition-normal);
  pointer-events: none;
  margin-bottom: 0;
}

.form-group--floating .form-input {
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
}

.form-group--floating .form-input:focus ~ .form-label,
.form-group--floating .form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: 0.65rem;
  color: var(--terracotta);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Textarea --- */
textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

/* --- Select --- */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C04000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --- Validation States --- */
.form-input.is-valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px var(--success-light);
}

.form-input.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-light);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-success {
  font-size: var(--text-xs);
  color: var(--success);
  margin-top: 4px;
}

/* --- Checkbox & Radio --- */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  cursor: pointer;
}

.form-check__input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--warm-sand-dark);
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.form-check__input:checked {
  background: var(--terracotta);
  border-color: var(--terracotta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L4.5 8.5 2 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-check__label {
  font-size: var(--text-sm);
  color: var(--charcoal);
  cursor: pointer;
}

/* ============================================================
   11. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Small: 640px --- */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

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

  .offset-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* --- Medium: 768px --- */
@media (min-width: 768px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .asymmetric-grid--2col {
    grid-template-columns: 1fr 1fr;
  }

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

  .editorial-split {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-split__content {
    padding: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-menu__link {
    font-size: var(--text-4xl);
  }
}

/* --- Large: 1024px --- */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav {
    display: block;
  }

  .mobile-menu {
    display: none !important;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .asymmetric-grid--offset {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .offset-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
  }

  .offset-layout:nth-child(even) .offset-layout__image {
    order: 2;
  }
}

/* --- XL: 1280px --- */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .editorial-split__content {
    padding: var(--space-3xl);
  }
}

/* ============================================================
   12. PRINT STYLES
   ============================================================ */
@media print {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .header,
  .hero__particles,
  .hero__orb,
  .hero__scroll,
  .footer__newsletter,
  .footer__social,
  .btn,
  .hamburger,
  .lang-toggle,
  .cart-btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-lg) 0;
    background: var(--white) !important;
  }

  .hero__headline,
  .hero__subtitle {
    color: var(--charcoal) !important;
    text-shadow: none !important;
  }

  .section {
    padding: var(--space-md) 0;
    page-break-inside: avoid;
  }

  .curtain-reveal__bar {
    display: none !important;
  }

  .curtain-reveal__content {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
    color: var(--terracotta);
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}

/* ============================================================
   13. ACCESSIBILITY
   ============================================================ */

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: calc(var(--z-max) + 1);
  padding: var(--space-sm) var(--space-md);
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Screen Reader Only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Focus Trap Indicator --- */
.focus-trap:focus {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes hero-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

@keyframes hero-reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orb-drift-1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, -40px);
  }
}

@keyframes orb-drift-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50px, 30px);
  }
}

@keyframes orb-drift-3 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, -60px);
  }
}

@keyframes particle-drift {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

@keyframes scroll-line {
  0% {
    top: -100%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}

@keyframes cart-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(192, 64, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(192, 64, 0, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
