/* ==========================================================================
   ROAMA IMPORTS — DESIGN SYSTEM & LUXURY EDITORIAL STYLES (V3 - BULLETPROOF)
   Haute Parfumerie Experience • 100% Mobile First • Cross-Device Engineered
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-base: #060608;
  --bg-surface: #0c0d10;
  --bg-card: rgba(16, 17, 21, 0.88);
  --bg-card-hover: rgba(24, 26, 33, 0.96);
  
  /* Gold Tones (Refined Metallic Champagne & Warm Gold) */
  --gold-300: #f4e4bc;
  --gold-400: #dfba73;
  --gold-500: #c59b4e;
  --gold-600: #9e7932;
  --gold-glow: rgba(197, 155, 78, 0.32);
  --gold-glow-soft: rgba(223, 186, 115, 0.14);
  --gold-border: rgba(197, 155, 78, 0.32);
  --gold-border-bright: rgba(244, 228, 188, 0.6);

  /* Neutrals */
  --text-primary: #f8f7f4;
  --text-secondary: #a3a4ab;
  --text-muted: #71737e;
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.22s ease-out;
}

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

html {
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.6;
  overflow-x: hidden !important;
  position: relative;
  padding-bottom: 74px; /* Space for mobile sticky concierge */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* Background Atmosphere */
.page-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 450px;
  background: radial-gradient(ellipse at 50% 0%, rgba(197, 155, 78, 0.16) 0%, rgba(197, 155, 78, 0.04) 50%, transparent 70%);
}

.ambient-light-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 100%, rgba(197, 155, 78, 0.1) 0%, transparent 70%);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   SCROLL REVEAL (LUXURY PROGRESSIVE MOTION)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.scroll-delay-1 { transition-delay: 0.1s; }
.scroll-delay-2 { transition-delay: 0.2s; }
.scroll-delay-3 { transition-delay: 0.3s; }
.scroll-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   HEADER & HERO
   ========================================================================== */
.site-header {
  padding: 28px 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.logo-frame {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(244, 228, 188, 0.75) 0%, rgba(197, 155, 78, 0.2) 50%, rgba(244, 228, 188, 0.65) 100%);
  box-shadow: 0 0 35px var(--gold-glow);
  transition: var(--transition-smooth);
}

.logo-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(223, 186, 115, 0.45);
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-300) 40%, var(--gold-500) 80%, #a47b2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 20px rgba(197, 155, 78, 0.25));
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--gold-400);
  letter-spacing: 0.08em;
  font-weight: 400;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Value Badges */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  max-width: 840px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(197, 155, 78, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.badge-item:hover {
  background: rgba(197, 155, 78, 0.16);
  border-color: var(--gold-400);
}

.badge-icon {
  width: 14px;
  height: 14px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Primary Action Buttons */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 48px;
}

.btn-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 60%, var(--gold-600) 100%);
  color: #060608 !important;
  border: 1px solid rgba(244, 228, 188, 0.6);
  box-shadow: 0 10px 25px rgba(197, 155, 78, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(197, 155, 78, 0.45);
}

.btn-secondary {
  background: rgba(14, 15, 19, 0.7);
  color: var(--gold-300) !important;
  border: 1px solid var(--gold-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(197, 155, 78, 0.14);
  border-color: var(--gold-400);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-tertiary {
  background: transparent;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-subtle);
  min-height: 48px;
}

.btn-tertiary:hover {
  border-color: var(--gold-border);
  color: var(--gold-300) !important;
  background: rgba(255, 255, 255, 0.04);
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-primary .btn-icon {
  stroke: #060608;
}

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

/* --- REFINED SHINY SWEEP GLOW (STRICTLY CLIPPED TO BUTTON) --- */
.shiny-sweep {
  position: relative !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.shiny-sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  border-radius: inherit;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: shinySweep 6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes shinySweep {
  0%, 75% { left: -120%; }
  100% { left: 180%; }
}

/* ==========================================================================
   OFFICIAL SHOWCASE BANNER SECTION
   ========================================================================== */
.banner-showcase {
  margin-bottom: 64px;
}

.banner-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.75);
  background: #000;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-frame:hover .banner-img {
  transform: scale(1.02);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 8, 0.94) 0%, rgba(6, 6, 8, 0.25) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
}

.banner-caption {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  letter-spacing: 0.12em;
  color: var(--gold-300);
  text-transform: uppercase;
}

/* ==========================================================================
   QUICK CONCIERGE CUSTOM ORDER SEARCH (RESET & STYLED)
   ========================================================================== */
.quick-order-section {
  margin-bottom: 64px;
  background: linear-gradient(135deg, rgba(20, 22, 28, 0.85) 0%, rgba(10, 11, 14, 0.96) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.quick-order-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.quick-order-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 20px;
}

.quick-order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .quick-order-form {
    flex-direction: row;
  }
}

.quick-order-input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  flex: 1;
  min-height: 52px;
  background: #090a0d !important;
  border: 1px solid var(--gold-border) !important;
  border-radius: 999px !important;
  padding: 0 20px !important;
  color: #ffffff !important;
  font-family: var(--font-sans) !important;
  font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
  outline: none !important;
  transition: var(--transition-fast);
}

.quick-order-input:focus {
  border-color: var(--gold-400) !important;
  box-shadow: 0 0 15px rgba(197, 155, 78, 0.28) !important;
}

.quick-order-input::placeholder {
  color: var(--text-muted);
}

.quick-order-btn {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  min-height: 52px;
  padding: 0 24px;
  background: var(--gold-500) !important;
  color: #060608 !important;
  border: 1px solid var(--gold-400) !important;
  border-radius: 999px !important;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.quick-order-btn:hover {
  background: var(--gold-400) !important;
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* ==========================================================================
   CURATED EDITORIAL SHOWCASE + FILTER TABS
   ========================================================================== */
.section-editorial {
  margin-bottom: 72px;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-divider {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin: 14px auto 0;
}

/* Filter Tabs Reset */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: rgba(14, 15, 19, 0.85) !important;
  border: 1px solid var(--gold-border) !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  color: var(--gold-300) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: var(--transition-fast) !important;
  -webkit-tap-highlight-color: transparent;
}

.filter-btn:hover {
  background: rgba(197, 155, 78, 0.16) !important;
  border-color: var(--gold-400) !important;
  color: #ffffff !important;
}

.filter-btn.active {
  background: var(--gold-500) !important;
  color: #060608 !important;
  font-weight: 700 !important;
  border-color: var(--gold-400) !important;
  box-shadow: 0 4px 15px var(--gold-glow) !important;
}

/* Fragrance Grid */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.fragrance-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.fragrance-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
}

.fragrance-card.hidden {
  display: none !important;
}

.fragrance-visual {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(197, 155, 78, 0.08) 0%, transparent 70%);
}

.fragrance-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.65));
}

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

.fragrance-category {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
  font-weight: 600;
}

.fragrance-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.btn-card-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(197, 155, 78, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold-300) !important;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  min-height: 48px;
  width: 100%;
  justify-content: center;
  touch-action: manipulation;
}

.btn-card-action:hover {
  background: var(--gold-500);
  color: #060608 !important;
  border-color: var(--gold-400);
  box-shadow: 0 6px 18px var(--gold-glow);
}

.btn-card-action .btn-icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   OFFICIAL MANIFESTO & PILLARS
   ========================================================================== */
.section-manifesto {
  background: linear-gradient(180deg, rgba(16, 17, 21, 0.75) 0%, rgba(8, 9, 11, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 44px 24px;
  margin-bottom: 72px;
  position: relative;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-style: italic;
  color: var(--gold-300);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.manifesto-quote span {
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 12px;
  text-transform: uppercase;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.pillar-item {
  padding: 22px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-fast);
}

.pillar-item:hover {
  border-color: var(--gold-border);
  background: rgba(197, 155, 78, 0.05);
}

.pillar-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(197, 155, 78, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.pillar-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   ORDER PROCESS
   ========================================================================== */
.section-process {
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.step-card {
  position: relative;
  padding: 28px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: var(--transition-fast);
}

.step-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  opacity: 0.65;
  margin-bottom: 10px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.step-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ ACCORDION (100% FIXED & STYLED)
   ========================================================================== */
.section-faq {
  margin-bottom: 72px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gold-border);
  background: rgba(14, 15, 19, 0.95);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover, .faq-item.active {
  border-color: var(--gold-400);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 14px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   FINAL CONCIERGE CTA
   ========================================================================== */
.concierge-cta {
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 50px;
  background: radial-gradient(circle at center, rgba(197, 155, 78, 0.14) 0%, rgba(6, 6, 8, 0.6) 70%);
  border-radius: 20px;
  border: 1px solid var(--gold-border);
}

.concierge-subtitle {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.concierge-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.concierge-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 1px solid var(--gold-border);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.footer-quote {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-500);
  font-style: italic;
}

/* ==========================================================================
   STICKY BOTTOM BAR (MOBILE ONLY — STRICT HIDDEN ON DESKTOP)
   ========================================================================== */
.mobile-sticky-bar {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 14, 0.96);
    border-top: 1px solid var(--gold-border);
    padding: 10px 14px;
    z-index: 9999;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.85);
    gap: 10px;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
  }
  
  .mobile-sticky-bar.visible {
    display: flex !important;
  }
}

.btn-sticky-wpp {
  flex: 1.3;
  min-height: 48px;
  position: relative !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: #060608 !important;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid rgba(244, 228, 188, 0.5);
  box-shadow: 0 4px 15px rgba(197, 155, 78, 0.35);
  touch-action: manipulation;
}

.btn-sticky-cat {
  flex: 1;
  min-height: 48px;
  position: relative !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
  background: rgba(20, 22, 28, 0.95);
  color: var(--gold-300) !important;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid var(--gold-border);
  touch-action: manipulation;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 768px) {
  .site-header {
    padding: 18px 0 10px;
  }
  .logo-frame {
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }
  .badges-row {
    gap: 6px;
    margin-bottom: 24px;
  }
  .badge-item {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .cta-actions {
    margin-bottom: 36px;
  }
  .banner-showcase {
    margin-bottom: 48px;
  }
  .banner-overlay {
    padding: 16px;
  }
  .section-manifesto {
    padding: 32px 18px;
    margin-bottom: 48px;
  }
  .concierge-cta {
    padding: 36px 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid, .process-steps {
    grid-template-columns: 1fr;
  }
  .fragrance-visual {
    height: 190px;
  }
  .btn-luxury {
    min-height: 50px;
    font-size: 0.8rem;
    padding: 12px 16px;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .shiny-sweep::after {
    display: none !important;
  }
}
