/* ============================================================
   LUXURY EDITORIAL DESIGN SYSTEM
   Vibe: Editorial Luxury | Layout: Asymmetrical Bento / Cascade
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
  /* Colors - Editorial Luxury Palette */
  --lux-cream: #FDFBF7;
  --lux-dark: #1C1917;
  --lux-gold: #A16207;
  --lux-gold-light: #B88E4F;
  --lux-border: rgba(28, 25, 23, 0.08);
  --lux-border-white: rgba(255, 255, 255, 0.15);
  
  /* Accent colors - Luxury Tones */
  --lux-copper: #C4622D;
  --lux-sage: #7A9E7E;
  --lux-lavender: #9B7DB8;
  
  /* Typography */
  --lux-font-heading: 'Bodoni Moda', serif;
  --lux-font-body: 'Jost', sans-serif;
  --lux-font-script: 'Great Vibes', cursive;
  
  /* Spacing - Macro Whitespace */
  --lux-space-xxl: clamp(8rem, 15vw, 12rem);
  --lux-space-xl: clamp(4rem, 10vw, 8rem);
  --lux-space-lg: 4rem;
  
  /* Motion */
  --lux-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --lux-duration: 900ms;
}

/* Base Styles */
body.luxury-theme {
  background-color: var(--lux-cream);
  color: var(--lux-dark);
  font-family: var(--lux-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.luxury-theme section {
  position: relative;
  overflow: hidden;
}

/* ──────────────────────────────────────────
   AMBIENT MESH GLOWS
────────────────────────────────────────── */

.lux-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
}

.lux-glow--gold { background: radial-gradient(circle, var(--lux-gold), transparent); }
.lux-glow--copper { background: radial-gradient(circle, var(--lux-copper), transparent); }

/* ──────────────────────────────────────────
   EDITORIAL SPLIT LAYOUT
────────────────────────────────────────── */

.lux-editorial-split {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 10vw, 8rem);
}

.lux-editorial-split > * { flex: 1; }

@media (max-width: 900px) {
  .lux-editorial-split { flex-direction: column; gap: 4rem; text-align: center; }
}

/* ──────────────────────────────────────────
   DOUBLE-BEZEL (DOPPELRAND) ARCHITECTURE
────────────────────────────────────────── */

.lux-card-shell {
  background: rgba(28, 25, 23, 0.03);
  padding: 0.65rem;
  border-radius: 3rem;
  border: 1px solid var(--lux-border);
  transition: all var(--lux-duration) var(--lux-ease);
  height: 100%;
}

.lux-card-core {
  background: white;
  padding: 3rem;
  border-radius: calc(3rem - 0.65rem);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 10px 40px rgba(0, 0, 0, 0.02);
}

.lux-card-shell:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 
    0 40px 80px rgba(161, 98, 7, 0.1),
    0 0 0 1px rgba(161, 98, 7, 0.05);
}

/* Color Overrides for Cards */
.lux-card-shell--copper { background: rgba(196, 98, 45, 0.05); border-color: rgba(196, 98, 45, 0.1); }
.lux-card-shell--sage   { background: rgba(122, 158, 126, 0.05); border-color: rgba(122, 158, 126, 0.1); }
.lux-card-shell--lavender { background: rgba(155, 125, 184, 0.05); border-color: rgba(155, 125, 184, 0.1); }

/* ──────────────────────────────────────────
   TYPOGRAPHY & RHYTHM
────────────────────────────────────────── */

.lux-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--lux-gold);
  margin-bottom: 2.5rem;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(161, 98, 7, 0.04);
  border: 1px solid rgba(161, 98, 7, 0.08);
}

.lux-title-giant {
  font-family: var(--lux-font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.lux-section-title {
  font-family: var(--lux-font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.lux-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 600px;
}

/* ──────────────────────────────────────────
   BUTTON ARCHITECTURE (BUTTON-IN-BUTTON)
────────────────────────────────────────── */

.lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.85rem 0.85rem 0.85rem 3rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all var(--lux-duration) var(--lux-ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}

.lux-btn--primary {
  background: var(--lux-dark);
  color: white;
}

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

.lux-btn__icon {
  width: 3.2rem;
  height: 3.2rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--lux-duration) var(--lux-ease);
  position: relative;
  font-size: 1.2rem;
}

.lux-btn__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.lux-btn--secondary .lux-btn__icon { background: rgba(28, 25, 23, 0.05); }

.lux-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lux-btn:hover .lux-btn__icon {
  transform: rotate(45deg) scale(1.15);
  background: var(--lux-gold);
  color: white;
}

.lux-btn:active {
  transform: scale(0.96);
}

/* ──────────────────────────────────────────
   BENTO GRID ARCHITECTURE
────────────────────────────────────────── */

.lux-grid-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}

.lux-bento-span-12 { grid-column: span 12; }
.lux-bento-span-8  { grid-column: span 8; }
.lux-bento-span-6  { grid-column: span 6; }
.lux-bento-span-4  { grid-column: span 4; }
.lux-bento-span-3  { grid-column: span 3; }

@media (max-width: 1024px) {
  .lux-bento-span-12,
  .lux-bento-span-8,
  .lux-bento-span-4,
  .lux-bento-span-6,
  .lux-bento-span-3 { grid-column: span 12; }
}

/* ──────────────────────────────────────────
   UTILITIES & EFFECTS
────────────────────────────────────────── */

.lux-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.lux-reveal {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(15px);
  transition: opacity 1400ms var(--lux-ease),
              transform 1400ms var(--lux-ease),
              filter 1400ms var(--lux-ease);
}

.lux-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
