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

/* ── TOKENS ── */
:root {
  --cream:      #FDF6EF;
  --peach:      #F5E0D0;
  --rose:       #C8917E;
  --mauve:      #B08090;
  --dusty:      #D6B8C0;
  --brown:      #3A1F14;
  --warm-mid:   #7A4030;
  --gold:       #C49A50;
  --gold-lt:    #E8D5A8;
  --white:      #FFFAF6;
  --shadow:     rgba(58, 31, 20, 0.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── SPARKLE HELPER ── */
.spark::before { content: '✦ '; color: var(--gold); font-size: 0.75em; }
.spark::after  { content: ' ✦'; color: var(--gold); font-size: 0.75em; }

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--peach);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--rose);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links .btn-nav {
  background: var(--rose);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 1.5px;
  transition: background 0.2s, transform 0.15s;
}
.nav-links .btn-nav:hover { background: var(--warm-mid); transform: translateY(-1px); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 64px;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(200,145,126,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(176,128,144,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--brown);
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
  display: block;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-mid);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(200,145,126,0.35);
}
.btn-primary:hover { background: var(--warm-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,145,126,0.40); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--dusty);
  color: var(--warm-mid);
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap {
  width: min(460px, 100%);
  aspect-ratio: 3/4;
  border-radius: 24px 80px 24px 80px;
  overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow), 0 0 0 8px var(--peach);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(196,154,80,0.4);
  animation: spin-badge 20s linear infinite;
}
@keyframes spin-badge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-badge strong { font-size: 22px; font-style: normal; display: block; }
.hero-floater {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px var(--shadow);
  font-size: 13px;
  color: var(--brown);
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.hero-floater.f1 { top: 10%; left: -10%; }
.hero-floater.f2 { bottom: 18%; left: -14%; }
.hero-floater .star { font-size: 18px; }

/* ════════════════════════════════
   MARQUEE BANNER
════════════════════════════════ */
.marquee-wrap {
  background: var(--rose);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 32px;
}
.marquee-track span.sep { color: var(--gold-lt); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   SECTION COMMONS
════════════════════════════════ */
section { padding: 80px 64px; }
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub {
  font-size: 15px;
  color: var(--warm-mid);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ════════════════════════════════
   PRODUCT GRID
════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px var(--shadow); }
.product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--peach);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--rose);
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.product-tag.sold-out { background: var(--mauve); }
.product-info { padding: 16px 20px 20px; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brown);
}
.product-meta {
  font-size: 12px;
  color: var(--mauve);
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--rose);
}
.product-price span { font-size: 12px; font-weight: 400; color: var(--mauve); margin-left: 4px; }
.btn-shop-item {
  background: var(--peach);
  color: var(--rose);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-shop-item:hover { background: var(--rose); color: var(--white); }

/* ════════════════════════════════
   ABOUT STRIP
════════════════════════════════ */
.about-strip {
  background: var(--peach);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border-radius: 32px;
  overflow: hidden;
  margin: 0 48px;
}
.about-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 48px 48px 48px 0; }
.stats-row { display: flex; gap: 36px; margin: 32px 0; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-top: 4px;
}

/* ════════════════════════════════
   INSTAGRAM GRID
════════════════════════════════ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--peach);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.insta-item:hover img { transform: scale(1.06); }
.insta-item .overlay {
  position: absolute; inset: 0;
  background: rgba(58,31,20,0.35);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
}
.insta-item:hover .overlay { opacity: 1; }

/* ════════════════════════════════
   VALUES ROW
════════════════════════════════ */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  border-top: 3px solid var(--dusty);
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brown);
}
.value-desc { font-size: 14px; color: var(--warm-mid); line-height: 1.7; }

/* ════════════════════════════════
   NEWSLETTER / CTA SECTION
════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  border-radius: 32px;
  margin: 0 48px 80px;
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦';
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.2);
  letter-spacing: 8px; font-size: 14px; white-space: nowrap;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-sub { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 36px; }
.cta-socials { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  border-radius: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.social-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--brown);
  color: rgba(253,246,239,0.7);
  padding: 60px 64px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(253,246,239,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(253,246,239,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}

/* ════════════════════════════════
   SHOP PAGE — FILTERS
════════════════════════════════ */
.shop-hero {
  padding: 80px 64px 40px;
  text-align: center;
}
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--dusty);
  color: var(--warm-mid);
  padding: 9px 22px;
  border-radius: 30px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose); border-color: var(--rose); color: var(--white);
}

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 64px;
}
.about-hero-img {
  border-radius: 24px 80px 24px 80px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px var(--shadow);
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.timeline { margin-top: 32px; }
.timeline-item {
  display: flex; gap: 20px;
  padding-bottom: 28px;
  border-left: 2px solid var(--dusty);
  padding-left: 24px;
  position: relative;
  margin-left: 8px;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -7px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--cream);
}
.timeline-item:last-child { border-color: transparent; }
.tl-year {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  min-width: 56px;
  padding-top: 2px;
}
.tl-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 4px;
}
.tl-content p { font-size: 14px; color: var(--warm-mid); line-height: 1.6; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero, .about-hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 340px; }
  section { padding: 60px 24px; }
  .about-strip { grid-template-columns: 1fr; margin: 0 16px; }
  .about-content { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section, .about-strip { margin: 0 16px; }
  .shop-hero { padding: 60px 24px 24px; }
}
