@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

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

:root {
  --cream:      #FDF8F2;
  --petal:      #F2DDE0;
  --blush:      #E8B4B8;
  --rose:       #C47E89;
  --wine:       #6B2737;
  --wine-deep:  #4A1A25;
  --gold:       #B8912A;
  --gold-light: #D4AF52;
  --charcoal:   #1E1E1E;
  --warm-grey:  #7A7068;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ── BUBBLES ── */
.bubble {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--blush), transparent 70%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.bubble-1 { width: 500px; height: 500px; top: -120px; left: -160px; }
.bubble-2 { width: 320px; height: 320px; top: 55%; right: -80px; }
.bubble-3 { width: 200px; height: 200px; bottom: 15%; left: 8%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--wine);
  text-decoration: none;
}

.nav-logo sup {
  font-size: 0.55em;
  vertical-align: super;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--wine);
}

.nav-links a.nav-cta {
  background: var(--wine);
  color: white;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
}

.nav-links a.nav-cta:hover {
  background: var(--wine-deep);
  color: white;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 6rem;
  position: relative;
  background: linear-gradient(170deg, var(--cream) 60%, var(--petal) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(4.5rem, 11vw, 8rem);
  line-height: 0.95;
  color: var(--wine);
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-grey);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-cta {
  display: inline-block;
  background: var(--wine);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(107, 39, 55, 0.25);
}

.hero-cta:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(107, 39, 55, 0.3);
}

/* ── WAX SEAL ── */
.wax-seal {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 110px;
  height: 110px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(107, 39, 55, 0.35),
              inset 0 1px 0 rgba(255,255,255,0.1);
  animation: sealFloat 5s ease-in-out infinite;
  transform: rotate(-12deg);
  z-index: 2;
}

.wax-seal span {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
}

@keyframes sealFloat {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-8deg)  translateY(-8px); }
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--blush);
}

/* ── INTRO ── */
.intro-section {
  padding: 8rem 3rem;
  position: relative;
  z-index: 1;
}

.intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--wine);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro-text p {
  color: var(--warm-grey);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.text-link {
  color: var(--wine);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--blush);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── STACKED CARDS ── */
.stacked-cards {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacked-card {
  position: absolute;
  width: 260px;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(232, 180, 184, 0.3);
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stacked-card:hover {
  transform: translateX(-50%) rotate(0deg) translateY(-12px) !important;
  box-shadow: 0 28px 60px rgba(107, 39, 55, 0.14);
  z-index: 10 !important;
}

.card-1 { transform: translateX(-50%) rotate(-6deg); left: 50%; top: 0;   z-index: 3; }
.card-2 { transform: translateX(-50%) rotate(3deg);  left: 50%; top: 60px; z-index: 2; }
.card-3 { transform: translateX(-50%) rotate(-2deg); left: 50%; top: 120px; z-index: 1; }

.card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.card-sub {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-bottom: 1rem;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── CATALOG ── */
.catalog-section {
  padding: 8rem 3rem;
  background: var(--petal);
  position: relative;
  z-index: 1;
}

.catalog-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.catalog-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--wine);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.catalog-sub {
  color: var(--warm-grey);
  font-size: 1rem;
  font-weight: 300;
}

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

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(232, 180, 184, 0.25);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(107, 39, 55, 0.12);
}

.product-card.sold-out {
  opacity: 0.75;
}

.product-img {
  position: relative;
  background: linear-gradient(135deg, var(--petal), var(--cream));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon {
  font-size: 2.5rem;
  color: var(--wine);
  opacity: 0.4;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.badge-out {
  background: var(--warm-grey);
}

.badge-new {
  background: var(--rose);
}

.product-info {
  padding: 1.75rem;
}

.product-type {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--wine);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--petal);
  padding-top: 1.25rem;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--wine);
  font-weight: 600;
}

.sold-out-price {
  color: var(--warm-grey);
}

.add-btn {
  display: inline-block;
  background: var(--wine);
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.add-btn:hover {
  background: var(--wine-deep);
  transform: scale(1.03);
}

.btn-disabled {
  background: var(--warm-grey);
  pointer-events: none;
  opacity: 0.7;
}

/* ── DARK SECTION ── */
.dark-section {
  background: var(--wine-deep);
  padding: 9rem 3rem;
  position: relative;
  z-index: 1;
}

.dark-content {
  max-width: 720px;
  margin: 0 auto;
}

.dark-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.dark-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 8rem 3rem;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--wine);
  letter-spacing: -0.02em;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(232, 180, 184, 0.25);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--petal);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial p {
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-source {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── CTA ── */
.cta-section {
  padding: 9rem 2rem;
  background: linear-gradient(160deg, var(--petal) 0%, var(--blush) 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--wine);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--wine-deep);
}

.cta-content > p {
  font-size: 1.15rem;
  color: var(--wine);
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--wine);
  color: white;
  text-decoration: none;
  padding: 1.1rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: 0 14px 40px rgba(107, 39, 55, 0.3);
  margin-bottom: 1.5rem;
}

.cta-button:hover {
  background: var(--wine-deep);
  transform: translateY(-3px);
}

.cta-note {
  font-size: 0.82rem;
  color: var(--wine);
  opacity: 0.55;
  display: block;
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--wine-deep);
  color: white;
  padding: 5rem 3rem 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-logo sup {
  font-size: 0.55em;
  vertical-align: super;
}

.footer-brand p:not(.footer-logo) {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 4rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: flex; }

  .intro-section, .catalog-section, .dark-section,
  .testimonials-section, .cta-section { padding: 5rem 1.5rem; }

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

  .wax-seal { width: 80px; height: 80px; font-size: 0.65rem; }

  .stacked-cards { height: 280px; }
  .stacked-card { width: 220px; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
