:root {
  --plum:       #6B2D50;
  --plum-deep:  #4A1F37;
  --plum-light: #8B3D68;
  --gold:       #C9956A;
  --gold-light: #DFB898;
  --blush:      #F2D7D9;
  --cream:      #FAF6F0;
  --cream-deep: #F0E8DF;
  --mid:        #A0536A;
  --text:       #2C1820;
  --text-mid:   #6B4055;
  --text-light: #A0536A;
  --white:      #FFFFFF;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; }

.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,45,80,0.08);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  padding: 0.85rem 4rem;
  box-shadow: 0 2px 24px rgba(107,45,80,0.08);
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--plum-deep) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ─────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 3rem 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-label { margin-bottom: 1.5rem; }

.hero-h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--plum);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-h1-plain {
  font-style: normal;
  font-weight: 500;
  display: block;
}

.hero-gold-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.75rem 0;
}

.hero-p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  background: var(--plum);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--plum-deep); transform: translateY(-1px); }

.btn-ghost {
  color: var(--plum);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--gold); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero-decor {
  position: absolute;
  bottom: 4rem; left: 4rem;
  width: 120px; height: 120px;
  border: 1px solid rgba(201,149,106,0.3);
  border-radius: 50%;
}
.hero-decor::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,149,106,0.2);
  border-radius: 50%;
}

/* ── MARQUEE STRIP ───────────────────────────────── */
.marquee-strip {
  background: var(--plum);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  padding: 0 2.5rem;
}

.marquee-dot {
  color: rgba(201,149,106,0.4);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION BASE ────────────────────────────────── */
section { padding: 7rem 4rem; }

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--plum);
  font-weight: 400;
  margin-top: 0.75rem;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* ── ABOUT ───────────────────────────────────────── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 4rem;
}

.about-img {
  position: relative;
  height: 560px;
}

.about-img-main {
  width: 85%; height: 100%;
  background: var(--blush);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem; right: 0;
  width: 55%; height: 55%;
  background: var(--cream-deep);
  border-radius: 3px;
  border: 8px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content .label { margin-bottom: 1rem; }

.about-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--plum);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--blush);
}

.stat-item {}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--plum);
  font-weight: 500;
  line-height: 1;
}

.stat-num span { font-size: 1.5rem; color: var(--gold); }

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.3rem;
  font-weight: 400;
}

/* ── PRODUCTS ────────────────────────────────────── */
#products {
  background: var(--cream);
  padding: 7rem 4rem;
}

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

.product-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(107,45,80,0.12);
}

.product-img {
  height: 260px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.product-img.gold-bg { background: var(--cream-deep); }
.product-img.mid-bg { background: #EDE0E5; }

.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--plum);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  font-weight: 500;
}

.product-badge.soon { background: var(--gold); }

.product-body { padding: 1.5rem; }

.product-cat {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

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

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--plum);
  font-weight: 500;
}

.product-price .unit {
  font-size: 0.7rem;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  display: block;
  letter-spacing: 0.05em;
}

.btn-small {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-small:hover { color: var(--gold); }
.btn-small.disabled { color: var(--text-light); border-color: rgba(160,83,106,0.3); cursor: default; }

/* ── WHY MATERNUM ────────────────────────────────── */
#why {
  background: var(--plum);
  padding: 7rem 4rem;
  text-align: center;
}

#why .label { color: var(--gold-light); margin-bottom: 1rem; }

#why h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
  font-style: italic;
}

#why > p {
  color: rgba(242,215,217,0.8);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  font-weight: 300;
}

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

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,149,106,0.2);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: background 0.3s;
}

.why-card:hover { background: rgba(255,255,255,0.1); }

.why-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-style: italic;
}

.why-card p {
  font-size: 0.82rem;
  color: rgba(242,215,217,0.7);
  line-height: 1.75;
  font-weight: 300;
}

/* ── BLOG ────────────────────────────────────────── */
#blog {
  background: var(--white);
  padding: 7rem 4rem;
}

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

.blog-card {
  border: 1px solid var(--blush);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.blog-card:hover { box-shadow: 0 8px 32px rgba(107,45,80,0.08); }

.blog-img {
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-body { padding: 1.5rem; }

.blog-date {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* ── CONTACT ─────────────────────────────────────── */
#contact {
  background: var(--cream);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .label { margin-bottom: 1rem; }

.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--plum);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 36px; height: 36px;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid rgba(107,45,80,0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--plum); }

.form-group textarea { resize: vertical; min-height: 140px; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--plum-deep);
  color: rgba(242,215,217,0.7);
  padding: 4rem 4rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,149,106,0.15);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

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

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  color: rgba(242,215,217,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.2s;
}

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

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(242,215,217,0.4);
  font-weight: 300;
}

.footer-legal {
  display: flex; gap: 1.5rem;
}

.footer-legal a {
  color: rgba(242,215,217,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

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

/* ── PLACEHOLDER ICON ────────────────────────────── */
.ph-icon {
  opacity: 0.25;
}

/* ── SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LOADING SKELETON ────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--blush) 25%, var(--cream-deep) 50%, var(--blush) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 3px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── MOBILE NAV ──────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--plum);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.nav-mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--plum);
  text-decoration: none;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
}

.nav-mobile-menu a:hover { color: var(--gold); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #home { grid-template-columns: 1fr; }
  .hero-right { height: 300px; }
  #about { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .about-img { height: 320px; }
  section { padding: 4rem 1.5rem; }
  #products { padding: 4rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  #contact { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
