/* ===== SERENITY EXTENSIONS — Luxury Pink, Black & Gold ===== */

/* Fonts: Playfair Display (headings) + Cormorant Garamond (body) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ===== CSS Variables ===== */
:root {
  --black-deep: #0a0a0a;
  --black-rich: #111110;
  --black-surface: #1a1a18;
  --pink-rich: #e91e63;
  --pink-deep: #c2185b;
  --pink-muted: #ad1457;
  --pink-pale: #f8bbd9;
  --pink-bright: #f50057;
  --gold-bright: #d4a843;
  --gold-rich: #c9a84c;
  --gold-muted: #a8893f;
  --gold-dim: #7a6a35;
  --gold-pale: #e8d9a8;
  --cream: #f5f0e8;
  --cream-warm: #faf8f3;
  --white: #ffffff;
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted: rgba(245, 240, 232, 0.4);
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-gold-bright: rgba(201, 168, 76, 0.5);
  --border-pink: rgba(233, 30, 99, 0.25);
  --border-pink-bright: rgba(233, 30, 99, 0.5);
  --shadow-gold: rgba(201, 168, 76, 0.15);
  --shadow-pink: rgba(233, 30, 99, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background-color: var(--black-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a {
  color: var(--gold-rich);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--gold-bright); }

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
  margin: 1.5rem auto;
}

.gold-divider--short {
  width: 40px;
  height: 1px;
  background: var(--gold-rich);
  margin: 1rem auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-pink);
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 1rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--pink-rich);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__logo span {
  font-weight: 300;
  color: var(--text-secondary);
  font-size: 0.85em;
  letter-spacing: 0.15em;
  text-transform: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar__links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.navbar__links a:hover { color: var(--pink-rich); }

.navbar__cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--pink-rich);
  color: var(--pink-rich) !important;
  transition: all 0.25s ease !important;
  cursor: pointer;
}

.navbar__cta:hover {
  background: var(--pink-rich);
  color: var(--white) !important;
}

/* Mobile nav toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--pink-rich);
  transition: all 0.25s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(233, 30, 99, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-rich);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--pink-rich);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero__divider {
  margin: 2.5rem auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--pink-rich), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink-rich) 0%, var(--pink-bright) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
  color: var(--white);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-bright) 100%);
  color: var(--black-deep);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  color: var(--black-deep);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-pink-bright);
  color: var(--pink-rich);
}

.btn--outline:hover {
  background: rgba(233, 30, 99, 0.08);
  border-color: var(--pink-rich);
  color: var(--pink-bright);
}

/* ===== PHILOSOPHY / INTRO SECTION ===== */
.philosophy {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.philosophy__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 1.5rem;
}

.philosophy__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 1rem;
}

.philosophy__body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
  font-weight: 300;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 6rem 2rem 8rem;
}

.collections__header {
  text-align: center;
  margin-bottom: 4rem;
}

.collections__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 1rem;
}

.collections__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-pink);
}

.collection-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__bg {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 8, 0.85) 0%,
    rgba(10, 10, 8, 0.2) 50%,
    rgba(10, 10, 8, 0.05) 100%
  );
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
}

.collection-card__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 0.5rem;
}

.collection-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.collection-card__cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-rich);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.collection-card:hover .collection-card__cta { gap: 0.8rem; }

.collection-card__arrow {
  width: 20px;
  height: 1px;
  background: var(--gold-rich);
  position: relative;
  display: inline-block;
}

.collection-card__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold-rich);
  border-top: 1px solid var(--gold-rich);
  transform: rotate(45deg);
}

/* ===== FEATURES ===== */
.features {
  padding: 8rem 2rem;
  background: var(--black-rich);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.features__header {
  text-align: center;
  margin-bottom: 5rem;
}

.features__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 1rem;
}

.features__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 0 1rem;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
}

.feature-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-rich);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.feature-item__body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.testimonial__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--pink-muted);
  margin-bottom: -1rem;
}

.testimonial__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.testimonial__author {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-rich);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--black-deep) 0%, var(--black-surface) 50%, var(--black-deep) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 1.5rem;
}

.cta-band__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.cta-band__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 1rem auto 3rem;
  max-width: 480px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 2rem 3rem;
  border-top: 1px solid var(--border-pink);
  background: var(--black-deep);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pink-rich);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--pink-rich); }

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer__legal a:hover { color: var(--pink-muted); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }

  .collections__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero { padding: 7rem 1.5rem 5rem; }

  .collections__grid { grid-template-columns: 1fr; }

  .features__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }

  .footer__brand-desc { max-width: 100%; }

  .btn { font-size: 0.8rem; padding: 0.8rem 1.8rem; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}