/* Shared styles for HIM / HER pages */
:root {
  --gold: #C8A24B;
  --rose: #D9A89C;
  --nude: #EADBD0;
  --ink: #0A0A0A;
  --bone: #F4F1EC;
  --concrete: #3A3A3A;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; margin: 0; }
.serif { font-family: 'Playfair Display', serif; }
.tracking-mega { letter-spacing: 0.3em; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
}
.nav .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.nav a { text-decoration: none; }
.nav-links { display: flex; gap: 2rem; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary { background: currentColor; }
.btn-primary span { color: var(--ink); }
.btn:hover { transform: translateY(-2px); }

/* Hero */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 2rem 4rem;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 2rem; }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1; margin: 0 0 1.5rem;
  font-weight: 600;
}
.hero p.lead { font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; opacity: 0.8; max-width: 480px; }
.hero-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 2px;
}

/* Sections */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600; line-height: 1.1;
  margin: 0 0 3rem;
}

/* Product card preview */
.product-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .product-preview { grid-template-columns: 1fr; } }

.product-preview .img-wrap {
  aspect-ratio: 1; background-size: cover; background-position: center;
}
.price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 600; }

/* Features grid */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature {
  border-top: 1px solid currentColor;
  padding-top: 1.5rem; opacity: 0.85;
}
.feature .num {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-style: italic; margin-bottom: 0.5rem; opacity: 0.6;
}
.feature h4 { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; }
.feature p { margin: 0; font-size: 0.875rem; line-height: 1.5; opacity: 0.75; }

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  font-size: 0.8rem;
}
footer .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}

/* Switch universe banner */
.switch-banner {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.switch-banner a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.switch-banner a:hover { opacity: 0.6; }

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.marquee-track {
  display: flex; gap: 4rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
