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

@font-face {
  font-family: 'Lovelo Black';
  src: url('https://cdn.jsdelivr.net/gh/lorenz/lovelo-fontface@master/fonts/lovelo_black-webfont.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/lorenz/lovelo-fontface@master/fonts/lovelo_black-webfont.woff') format('woff'),
       url('https://cdn.jsdelivr.net/gh/lorenz/lovelo-fontface@master/fonts/lovelo_black-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lovelo Line';
  src: url('https://cdn.jsdelivr.net/gh/lorenz/lovelo-fontface@master/fonts/lovelo_line_bold-webfont.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/lorenz/lovelo-fontface@master/fonts/lovelo_line_bold-webfont.woff') format('woff'),
       url('https://cdn.jsdelivr.net/gh/lorenz/lovelo-fontface@master/fonts/lovelo_line_bold-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* --- CUSTOM VARIABLES --- */
:root {
  --bg-dark: #F9F7F3;
  --bg-soft: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.76);
  --border-glass: rgba(26, 26, 26, 0.09);
  
  --primary: #1A1A1A;
  --primary-glow: rgba(26, 26, 26, 0.08);
  --secondary: #D4AF37;
  --secondary-glow: rgba(212, 175, 55, 0.22);
  --blush: #E8D7D0;
  --champagne-soft: #F0E5D3;
  
  --text-primary: #1A1A1A;
  --text-secondary: #2D2F36;
  --text-muted: #7C7F8A;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 24px 70px rgba(26, 26, 26, 0.12);
  --shadow-ink: 0 22px 52px rgba(26, 26, 26, 0.12);
  --shadow-gold: 0 18px 42px rgba(212, 175, 55, 0.18);
}

/* --- RESET & BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 229, 211, 0.78), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(242, 228, 216, 0.58), transparent 28%),
    var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Decorative background glowing spots */
body::before, body::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  pointer-events: none;
}

body::before {
  top: 10%;
  left: -150px;
  background: rgba(194, 155, 104, 0.16);
}

body::after {
  bottom: 20%;
  right: -150px;
  background: rgba(45, 47, 54, 0.08);
}

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

/* --- HEADER & NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 243, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--primary);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--champagne-soft);
  box-shadow: 0 10px 28px rgba(10, 10, 12, 0.16);
}

.logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.14);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
  transform: scale(1.05) rotate(5deg);
}

.logo-text {
  font-family: 'Lovelo Black', var(--font-sans);
  font-weight: normal;
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-links a.active {
  color: var(--secondary);
  font-weight: 600;
}

.nav-links .btn-nav {
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  background: var(--text-primary);
  color: var(--bg-dark);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(10, 10, 12, 0.14);
}

.nav-links .btn-nav:hover {
  background: #2D2F36;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(10, 10, 12, 0.18);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-headline {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(240, 229, 211, 0.72);
  border: 1px solid rgba(194, 155, 104, 0.3);
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #8B6914;
  box-shadow: 0 14px 36px rgba(194, 155, 104, 0.14);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.gradient-text-ink {
  background: linear-gradient(135deg, var(--primary), #8B6914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #8B6914, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 12px 30px rgba(10, 10, 12, 0.06);
}

.store-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-ink);
}

.store-icon {
  font-size: 1.75rem;
  color: var(--text-primary);
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

/* --- SMARTPHONE MOCKUP --- */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.phone-wrapper {
  position: relative;
  width: min(330px, 86vw);
  aspect-ratio: 1320 / 2868;
  background: linear-gradient(145deg, #19191f, #030305 44%, #111116);
  border-radius: 40px;
  padding: 8px;
  box-shadow:
    0 30px 70px rgba(10, 10, 12, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 55px rgba(194, 155, 104, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease;
}

.phone-wrapper::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 32px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 27%, transparent 72%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

.phone-wrapper::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 26px;
  border-radius: 999px;
  background: #030305;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  display: block;
  object-fit: cover;
}

.phone-wrapper-primary {
  z-index: 4;
  transform: rotateY(-8deg) rotateX(3deg) translateZ(40px);
}

.phone-wrapper-primary:hover {
  transform: rotateY(-3deg) rotateX(2deg) translateZ(54px) translateY(-8px);
}

.phone-wrapper-secondary {
  position: absolute;
  width: min(235px, 56vw);
  opacity: 0.78;
  filter: saturate(0.9) brightness(0.72);
  z-index: 2;
}

.phone-wrapper-left {
  left: 2%;
  transform: rotateY(22deg) rotateZ(-8deg) translateY(42px) translateZ(-90px);
}

.phone-wrapper-right {
  right: 0;
  transform: rotateY(-24deg) rotateZ(8deg) translateY(-34px) translateZ(-110px);
}

.screen-aura {
  position: absolute;
  width: min(620px, 92vw);
  height: min(620px, 92vw);
  background:
    linear-gradient(135deg, rgba(240, 229, 211, 0.86), rgba(242, 228, 216, 0.68)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(194, 155, 104, 0.2);
  border-radius: 48px;
  transform: rotate(-7deg);
  z-index: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 40px 110px rgba(10, 10, 12, 0.12);
}

/* --- STATS SECTION --- */
.stats {
  padding: 0 2rem;
  margin: 5rem auto;
  max-width: 1100px;
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 100px;
  padding: 2.5rem 1.5rem;
  box-shadow: 
    0 30px 70px rgba(26, 26, 26, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
}

.stats-container:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 35px 80px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stat-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

/* Elegant thin vertical dividers between items */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.18);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-smooth);
}

.stat-item:hover .stat-number {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 0.5rem;
  transition: var(--transition-smooth);
}

.stat-item:hover .stat-label {
  color: var(--text-primary);
  letter-spacing: 2.2px;
}

/* --- FEATURES SECTION --- */
.features {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
}

.features-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 4.5rem;
}

.editorial-col {
  border-top: 1px solid rgba(212, 175, 55, 0.28); /* Elegant thin champagne border line */
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.editorial-col:hover {
  transform: translateY(-8px);
}

.editorial-col:hover .editorial-num {
  color: var(--primary);
}

.editorial-col:hover .editorial-icon {
  background: #FFFFFF;
  border-color: var(--secondary-glow);
  box-shadow: 0 16px 42px rgba(212, 175, 55, 0.14);
  transform: rotate(5deg) scale(1.08);
}

.col-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.editorial-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 500;
  font-style: italic;
  color: var(--secondary);
  line-height: 1;
  transition: var(--transition-smooth);
}

.editorial-icon {
  color: var(--primary);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.col-body h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.col-body p {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 300;
}

/* --- LUXURY LOOKBOOK SHOWCASE SECTION --- */
.gallery {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 3rem;
  margin-top: 5rem;
  padding: 0 1rem;
}

.lookbook-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

/* Staggered Column 2 offset (create beautiful fashion asymmetry) */
.lookbook-item:nth-child(3n-1) {
  transform: translateY(45px);
}

.lookbook-card {
  width: min(260px, 80vw);
  aspect-ratio: 1320 / 2868;
  background: linear-gradient(145deg, #1b1b22, #050507 45%, #121219);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.2rem;
  overflow: hidden;
  padding: 8px;
  box-shadow:
    0 24px 52px rgba(26, 26, 26, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.lookbook-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 1.8rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
  z-index: 2;
}

.lookbook-card::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 64px;
  height: 19px;
  border-radius: 999px;
  background: #030305;
  transform: translateX(-50%);
  z-index: 3;
}

.lookbook-aura {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--secondary-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
  pointer-events: none;
}

.lookbook-item:hover .lookbook-card {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 34px 70px rgba(26, 26, 26, 0.22),
    0 0 44px rgba(212, 175, 55, 0.2);
  transform: translateY(-8px) scale(1.02) rotate(1deg);
}

.lookbook-item:hover .lookbook-aura {
  opacity: 1;
}

.lookbook-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.8rem;
  display: block;
  object-fit: cover;
}

.lookbook-copy {
  width: 100%;
  text-align: center;
  max-width: 290px;
}

.lookbook-kicker {
  display: block;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lookbook-copy h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.lookbook-copy p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- CTA DOWNLOAD BANNER --- */
.cta-banner {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-box {
  background: linear-gradient(145deg, #1e1e24 0%, #0c0c0e 100%);
  border: 1px solid rgba(212, 175, 55, 0.22); /* Elegant luxury gold thin border */
  border-radius: 3rem;
  padding: 6rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 50px rgba(212, 175, 55, 0.08);
}

/* Floating Luxury Light Orbs */
.cta-box::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  z-index: 1;
  filter: blur(70px);
  pointer-events: none;
  animation: floatGlow1 8s infinite alternate ease-in-out;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 215, 208, 0.18) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  z-index: 1;
  filter: blur(60px);
  pointer-events: none;
  animation: floatGlow2 6s infinite alternate ease-in-out;
}

@keyframes floatGlow1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(20px) scale(1.1); }
}

@keyframes floatGlow2 {
  0% { transform: translateY(0) scale(1.1); }
  100% { transform: translateY(-20px) scale(1); }
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.1;
  max-width: 750px;
  background: linear-gradient(135deg, #F9F7F3 30%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}

.cta-box p {
  color: rgba(249, 247, 243, 0.78);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 520px;
  z-index: 2;
  line-height: 1.7;
}

.cta-box .store-buttons {
  z-index: 2;
  margin-top: 1rem;
}

.cta-box .store-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #F9F7F3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.cta-box .store-btn:hover {
  background: #F9F7F3;
  color: #1A1A1A;
  border-color: #F9F7F3;
  box-shadow: 0 20px 48px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.cta-box .store-btn .store-icon {
  color: #F9F7F3;
  transition: var(--transition-smooth);
}

.cta-box .store-btn:hover .store-icon {
  color: #1A1A1A;
}

.cta-box .store-btn .store-subtitle {
  color: rgba(249, 247, 243, 0.6);
  transition: var(--transition-smooth);
}

.cta-box .store-btn:hover .store-subtitle {
  color: rgba(26, 26, 26, 0.6);
}

/* --- LEGAL COMPLIANCE PAGES (PRIVACY & TERMS) --- */
.legal-main {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
}

.legal-back-btn:hover {
  color: var(--text-primary);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 2rem;
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-glow);
}

.legal-card h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.8px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
  letter-spacing: -0.3px;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.legal-content li::before {
  content: "•";
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- LUXURY HIGH-FASHION EDITORIAL FOOTER --- */
.luxury-footer {
  background: linear-gradient(180deg, #121213 0%, #070708 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15); /* Delicate champagne top border */
  padding: 8rem 2rem 4rem;
  color: #F9F7F3;
  position: relative;
  overflow: hidden;
}

.footer-glow-spot {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(232, 215, 208, 0.01) 70%, transparent 100%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 440px;
}

/* User feedback: make footer clovy logo text white on dark background */
.luxury-footer .logo-text.footer-logo {
  color: #FFFFFF !important;
  font-family: 'Lovelo Black', var(--font-sans);
  font-size: 1.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.luxury-footer .logo-text.footer-logo:hover {
  color: var(--secondary) !important;
}

.footer-tagline {
  color: rgba(249, 247, 243, 0.52);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

/* Minimal Editorial Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.newsletter-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(249, 247, 243, 0.16);
  padding-bottom: 0.6rem;
  transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
  border-bottom: 1px solid var(--secondary);
}

.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  flex: 1;
  padding: 0.25rem 0;
}

.newsletter-form input::placeholder {
  color: rgba(249, 247, 243, 0.3);
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: rgba(249, 247, 243, 0.55);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.newsletter-form button:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav-col h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-nav-col a {
  color: rgba(249, 247, 243, 0.6);
  font-size: 0.92rem;
  font-weight: 300;
  position: relative;
  display: inline-block;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

/* Slide-out underline anim */
.footer-nav-col a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-col a:hover {
  color: #FFFFFF;
}

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


.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-copy {
  color: rgba(249, 247, 243, 0.35);
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(249, 247, 243, 0.4);
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 4rem;
  }
  
  .badge-headline {
    align-self: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .store-buttons {
    justify-content: center;
  }

  .hero-mockup {
    min-height: 590px;
  }

  .phone-wrapper-primary {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0);
  }

  .phone-wrapper-left {
    left: 13%;
    transform: rotateY(22deg) rotateZ(-7deg) translateY(58px) translateZ(-90px);
  }

  .phone-wrapper-right {
    right: 12%;
    transform: rotateY(-22deg) rotateZ(7deg) translateY(-26px) translateZ(-110px);
  }
  
  .features-editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
  
  .lookbook-item:nth-child(3n-1) {
    transform: translateY(0);
  }
  
  .lookbook-item:nth-child(2n) {
    transform: translateY(30px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* JS will toggle this */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(249, 247, 243, 0.98);
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 18px 42px rgba(10, 10, 12, 0.14);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }

  .hero-mockup {
    min-height: 540px;
  }

  .phone-wrapper {
    width: min(285px, 82vw);
    border-radius: 34px;
  }

  .phone-wrapper::before {
    border-radius: 27px;
  }

  .phone-screen {
    border-radius: 27px;
  }

  .phone-wrapper-secondary {
    display: none;
  }

  .screen-aura {
    width: min(390px, 92vw);
    height: min(390px, 92vw);
    border-radius: 34px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .lookbook-item:nth-child(2n),
  .lookbook-item:nth-child(3n-1) {
    transform: translateY(0);
  }
  
  .lookbook-copy {
    max-width: 100%;
  }
  
  /* hamburger animate states */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .cta-box h2 {
    font-size: 2.25rem;
  }
  
  .legal-card {
    padding: 2.5rem 1.5rem;
  }
  
  .legal-card h1 {
    font-size: 2rem;
  }

  /* Luxury footer mobile optimization */
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }


  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding-top: 2rem;
  }

  /* Luxury stats mobile overrides */
  .stats {
    margin: 3rem auto;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 2rem;
    padding: 2.25rem 1.5rem;
    gap: 2.25rem;
  }

  .stat-item:not(:last-child)::after {
    display: none; /* Hide vertical dividers on mobile */
  }

  .stat-item:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -1.125rem;
    left: 20%;
    width: 60%;
    height: 1px;
    background: rgba(212, 175, 55, 0.15); /* Sleek horizontal dividers on mobile */
  }
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.12);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  padding-top: 1rem;
  font-weight: 300;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 1.05rem;
    padding: 1.25rem 1.25rem;
  }
  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
}

