*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blush: #f3e8ff;
  --rose: #7c3aed;
  --rose-dark: #6d28d9;
  --rose-deep: #4c1d95;
  --cream: #ffffff;
  --warm: #f8f6ff;
  --gold: #a78bfa;
  --gold-light: #ddd6fe;
  --charcoal: #000000;
  --muted: #6b7280;
  --sage: #8b9fb9;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 3rem;
  background: rgba(253,248,244,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,120,138,0.12);
  transition: box-shadow 0.3s;
}
.nav-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--rose-deep); letter-spacing: 0.01em;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand span { font-size: 0.6rem; font-weight: 400; font-family: 'Nunito', sans-serif; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-size: 0.82rem; font-weight: 500; padding: 0.5rem 0.9rem; border-radius: 100px; transition: all 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { background: var(--blush); color: var(--rose-dark); }
.nav-cta { background: var(--rose) !important; color: white !important; }
.nav-cta:hover { background: var(--rose-dark) !important; }

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,120,138,0.4);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
body:hover .cursor { opacity: 1; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HOME HERO ── */
.hero-immersive {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 7rem 3rem 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f8f6ff 0%, #faf7f2 100%);
}
.hero-immersive::before {
  content: '';
  position: absolute; top: -300px; left: -300px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,230,232,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 520px;
}
.hero-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--rose-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; 
  line-height: 1.1; color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.hero-title em { 
  font-style: italic; color: var(--rose); 
}
.hero-desc {
  font-size: 1.05rem; 
  line-height: 1.8; 
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn-lg {
  padding: 1rem 2.2rem !important;
  font-size: 0.95rem !important;
}
.hero-logo-side {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
}
.hero-logo-container {
  position: relative; width: 360px;
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(212,120,138,0.15)) drop-shadow(0 4px 16px rgba(0,0,0,0.06));
  animation: float 3s ease-in-out infinite;
}
.hero-logo {
  width: 100%; height: auto;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* STATS STRIP */
.stats-strip {
  background: white;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(212,120,138,0.12);
  border-bottom: 1px solid rgba(212,120,138,0.12);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: var(--warm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,120,138,0.12);
}
.stat-icon {
  font-size: 2.2rem;
}
.stat-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}
.stat-name {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* OLD HERO STYLES (for fallback) */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 7rem 3rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,230,232,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rose); }
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-sub { font-size: 1.05rem; line-height: 1.8; color: var(--muted); max-width: 420px; margin-bottom: 2.5rem; }
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.hero-stats {
  display: flex; gap: 2rem;
}
.stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--rose-deep); line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; margin-top: 0.2rem; }

/* BUTTON STYLES */
.btn-gold {
  background: var(--rose); color: white;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  text-transform: none; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
  transition: all 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,120,138,0.3); }
.btn-ghost {
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  text-transform: none; text-decoration: none;
  background: transparent; cursor: pointer; font-family: inherit;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { background: var(--charcoal); color: white; transform: translateY(-2px); }

/* ── STRIP ── */
.marquee-strip {
  background: var(--rose-deep); overflow: hidden;
  padding: 1rem 3rem; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  padding: 0 3rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.marquee-item::after { content: '✦'; opacity: 0.4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; }
.tag-line {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose); display: block;
  margin-bottom: 0.75rem;
}
.sec-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 1rem;
}
.sec-title em { font-style: italic; color: var(--rose); }
.sec-body {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
}

/* ══════════════════════════════════
   PROCESS SECTION
══════════════════════════════════ */
.process-section { background: var(--cream); }
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.process-step {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212,120,138,0.1);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212,120,138,0.15);
}
.step-num {
  position: absolute;
  top: -1.2rem; right: 1.5rem;
  width: 36px; height: 36px;
  background: var(--rose);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.step-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* WHY SECTION */
.why-section { 
  background: white;
  padding: 6rem 3rem;
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.why-content {
  max-width: 500px;
}
.why-list {
  list-style: none;
  margin: 2rem 0;
}
.why-list li {
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.7rem 0;
  line-height: 1.6;
}
.why-visual {
  display: flex; justify-content: center; align-items: center;
}
.why-card {
  background: linear-gradient(135deg, #f0d5f5 0%, #e8f0ff 100%);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(212,120,138,0.2);
}
.why-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.why-stat {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}
.why-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── FEATURED (old styles for backward compat) ── */
.feat-section { background: var(--warm); }
.feat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feat-cards { display: flex; flex-direction: column; gap: 1rem; }
.feat-card {
  background: white;
  border-radius: 1.2rem; padding: 1.5rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,120,138,0.1);
}
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.feat-title { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; margin-bottom: 0.3rem; }
.feat-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--cream); }
.testi-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: white;
  border-radius: 1.5rem; padding: 2rem;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212,120,138,0.1);
}
.testi-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 40px rgba(212,120,138,0.15); 
}
.testi-card::before {
  content: '"';
  font-family: 'Libre Baskerville', serif;
  font-size: 8rem; font-weight: 900;
  color: rgba(212,120,138,0.08);
  position: absolute; top: -1rem; left: 1rem;
  line-height: 1; pointer-events: none;
}
.testi-header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,120,138,0.1);
}
.testi-stars { 
  color: var(--gold); 
  font-size: 0.9rem; 
  letter-spacing: 2px; 
}
.testi-service {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--blush);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}
.testi-text {
  font-style: italic; font-size: 0.92rem; color: var(--charcoal);
  line-height: 1.7; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.testi-footer {
  border-top: 1px solid rgba(212,120,138,0.1);
  padding-top: 1rem;
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--rose-deep); margin-bottom: 0.2rem; }
.testi-event { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; }

/* CTA BANNER - NEW */
.cta-banner-new {
  background: linear-gradient(135deg, #f0d5f5 0%, #e8f0ff 100%);
  border: 2px solid rgba(212,120,138,0.2);
  padding: 5rem 3rem;
  text-align: center;
  border-radius: 2rem;
  margin: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-banner-new::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(212,120,138,0.1);
}
.cta-banner-new::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(212,120,138,0.08);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner-new h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.cta-banner-new h2 em {
  font-style: italic;
  color: var(--rose);
}
.cta-banner-new p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-decor {
  font-size: 2.5rem;
  letter-spacing: 1rem;
  color: rgba(212,120,138,0.3);
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA BANNER - OLD */
.cta-banner {
  background: var(--warm);
  border-top: 1px solid rgba(212,120,138,0.12);
  border-bottom: 1px solid rgba(212,120,138,0.12);
  padding: 6rem 3rem; text-align: center;
}
.cta-banner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 700;
  color: var(--charcoal); margin-bottom: 1rem;
}
.cta-banner h2 em { font-style: italic; color: var(--rose); }
.cta-banner p {
  font-size: 1rem;
  color: var(--muted); max-width: 500px; margin: 0 auto 2.5rem;
}

/* ══════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════ */
.products-hero {
  padding: 8rem 3rem 3rem; text-align: center;
  background: var(--warm);
}
.products-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem,5vw,4rem); font-weight: 700;
  color: var(--charcoal); margin: 0.8rem 0;
}
.products-hero h1 em { font-style: italic; color: var(--rose); }
.filter-row { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.fpill {
  padding: 0.5rem 1.2rem; border-radius: 100px;
  border: 1.5px solid rgba(212,120,138,0.25);
  background: white; color: var(--muted);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.fpill:hover { border-color: rgba(212,120,138,0.5); color: var(--rose); }
.fpill.active { background: var(--rose); color: white; border-color: var(--rose); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; padding: 2rem 3rem 5rem; }
.product-card {
  background: white;
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212,120,138,0.15);
}
.product-card.hidden { display: none; }
.product-img {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 4rem; position: relative;
}
.pi-1 { background: linear-gradient(135deg, #f5e6e8, #f0d0d5); }
.pi-2 { background: linear-gradient(135deg, #f9f0e4, #f0d8c0); }
.pi-3 { background: linear-gradient(135deg, #e8f0e8, #c8ddc8); }
.pi-4 { background: linear-gradient(135deg, #ede8f5, #d8ccee); }
.product-body { padding: 1.3rem; }
.product-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem;
}
.product-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--rose-deep);
}
.product-pill {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--rose-dark); padding: 0.25rem 0.7rem; border-radius: 100px;
}
.order-btn {
  margin-top: 1rem; width: 100%;
  background: var(--rose);
  border: none;
  color: white; padding: 0.5rem 1.1rem;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.order-btn:hover { background: var(--rose-dark); }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-hero {
  padding: 8rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  background: var(--warm);
}
.about-visual {
  background: var(--rose-deep); border-radius: 2rem; padding: 3rem;
  color: white; position: relative; overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-visual::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(212,120,138,0.2);
}
.about-big-emoji { font-size: 3.5rem; display: block; margin-bottom: 1.5rem; position: relative; z-index: 2; }
.about-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.9); line-height: 1.4; margin-bottom: 1rem; position: relative; z-index: 2;
}
.about-attr { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; position: relative; z-index: 2; }
.about-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: white;
  padding: 1rem 1.3rem; border-radius: 1rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(200,149,108,0.35);
}
.about-body { padding: 5rem 3rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(212,120,138,0.1); font-size: 0.95rem; color: var(--charcoal);
}
.values-list li:last-child { border-bottom: none; }
.vcheck {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 0.6rem; color: var(--rose);
}
.perks { display: flex; flex-direction: column; gap: 1rem; }
.perk-card {
  background: var(--warm); border-radius: 1.5rem; padding: 2rem;
}
.perk-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.perk-title { font-family: 'Libre Baskerville', serif; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.2rem; }
.perk-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-hero { padding: 8rem 3rem 4rem; background: var(--warm); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding: 4rem 3rem; }
.contact-rows { margin-top: 2rem; }
.contact-row-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(212,120,138,0.1); }
.contact-row-item:last-child { border-bottom: none; }
.c-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.c-lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.2rem; }
.c-val { font-size: 0.92rem; color: var(--charcoal); }
.form-box {
  background: white; border-radius: 1.5rem; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.form-box-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.3rem;
}
.form-box-sub {
  font-size: 0.85rem;
  color: var(--muted); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
label { font-size: 0.75rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
input, textarea, select {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 0.8rem; font-family: inherit; font-size: 0.9rem;
  background: var(--cream); color: var(--charcoal);
  transition: border-color 0.2s; outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(138,117,112,0.5); }
input:focus, textarea:focus, select:focus { border-color: var(--rose); background: white; }
select option { background: var(--cream); color: var(--charcoal); }
textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--rose); color: white;
  border: none; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.2s; margin-top: 0.5rem; letter-spacing: 0.03em;
}
.form-submit:hover { background: var(--rose-dark); transform: translateY(-1px); }
.success-msg {
  display: none; text-align: center; padding: 2rem;
  background: #f0faf0; border-radius: 1rem; color: #3a7a3a; font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.45); padding: 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem; font-weight: 700;
  color: white; margin-bottom: 0.5rem;
}
.footer-desc { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; cursor: pointer; transition: color 0.2s; }
.footer-nav a:hover { color: var(--rose); }
.footer-bottom {
  background: #1a1412; padding: 1rem 3rem;
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 0.5rem;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.anim { animation: fadeUp 0.7s ease both; }
.anim-2 { animation: fadeUp 0.7s 0.1s ease both; }
.anim-3 { animation: fadeUp 0.7s 0.2s ease both; }
.anim-4 { animation: fadeUp 0.7s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
  .hero-immersive, .hero, .feat-inner, .why-inner, .about-hero, .about-grid, .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-immersive { padding: 5rem 1.5rem 3rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-logo-side { margin-top: 2rem; }
  .hero-content { max-width: 100%; }
  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; padding: 2rem 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; }
  .products-hero, .about-hero, .contact-hero { padding: 6rem 1.5rem 3rem; }
  .about-body, .contact-inner { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 4rem 1.5rem; }
  .cta-banner-new { margin: 3rem 1.5rem; padding: 3rem 1.5rem; }
  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-immersive, .hero { padding: 4rem 1rem 2rem; }
  .stats-strip { grid-template-columns: 1fr; padding: 1.5rem 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .btn-lg { width: 100%; }
  .why-card { width: 100%; height: auto; min-height: 200px; }
}
