/* ============================================================
   MIORAVIE — Premium Skincare Website
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --cream:        #E7D6BF;
  --beige:        #D8C1A5;
  --coffee:       #5B3A29;
  --coffee-light: #7A5241;
  --lavender:     #CFC7D9;
  --lavender-deep:#A89BBB;
  --foam:         #F8F5F1;
  --taupe:        #B7A89A;
  --cocoa:        #3D2A22;
  --white:        #FEFCFA;
  --text-dark:    #2A1F1A;
  --text-mid:     #6B5548;
  --text-light:   #9B8B80;
  --border:       rgba(91, 58, 41, 0.12);

  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    28px;
  --radius-xl:    36px;

  --shadow-soft:  0 4px 32px rgba(91,58,41,0.08);
  --shadow-card:  0 8px 48px rgba(91,58,41,0.10);
  --shadow-hover: 0 16px 64px rgba(91,58,41,0.16);

  --transition:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Noise texture overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--coffee);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--coffee);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s var(--transition), height 0.3s var(--transition), opacity 0.3s;
  opacity: 0.5;
}

.cursor-follower.hovered {
  width: 48px; height: 48px;
  opacity: 0.8;
  background: rgba(91,58,41,0.06);
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-gap { padding: clamp(60px, 10vw, 120px) 0; }

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.section-label.centered { text-align: center; }

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cocoa);
  letter-spacing: -0.01em;
}
.section-headline em { font-style: italic; color: var(--coffee-light); }
.section-headline.centered { text-align: center; }

.body-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.section-header { margin-bottom: clamp(40px, 6vw, 64px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  cursor: none;
}

.btn-primary {
  background: var(--coffee);
  color: var(--foam);
  box-shadow: 0 4px 20px rgba(91,58,41,0.25);
}
.btn-primary:hover {
  background: var(--cocoa);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,58,41,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--coffee);
  border: 1.5px solid var(--beige);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--cocoa);
  color: var(--foam);
  box-shadow: 0 4px 20px rgba(61,42,34,0.25);
}
.btn-dark:hover {
  background: var(--coffee);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,42,34,0.35);
}

.btn-outline-dark {
  background: transparent;
  color: var(--cocoa);
  border: 1.5px solid rgba(61,42,34,0.3);
}
.btn-outline-dark:hover {
  background: rgba(61,42,34,0.06);
  border-color: var(--cocoa);
  transform: translateY(-2px);
}

/* ---------- Link Arrow ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--coffee);
  transition: gap var(--transition-fast);
  cursor: none;
}
.link-arrow:hover { gap: 12px; }
.link-arrow span { transition: transform var(--transition-fast); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(254, 252, 250, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--cocoa);
  letter-spacing: 0.04em;
  cursor: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition-fast);
  cursor: none;
}
.nav-links a:hover { color: var(--coffee); }

.nav-cta {
  padding: 10px 22px;
  background: var(--coffee) !important;
  color: var(--foam) !important;
  border-radius: 100px;
  font-size: 11px !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta:hover { background: var(--cocoa) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--coffee);
  transition: transform var(--transition), opacity var(--transition-fast);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--foam);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--transition);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cocoa);
  letter-spacing: 0.02em;
  cursor: none;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--coffee); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--foam);
  overflow: hidden;
  padding-top: 80px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(207,199,217,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 20% 80%, rgba(231,214,191,0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.15); opacity: 0.65; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cocoa);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--coffee-light); }

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.badge-dot.coffee   { background: var(--coffee); }
.badge-dot.lavender { background: var(--lavender-deep); }
.badge-dot.natural  { background: #8BAF7A; }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-card-stack {
  position: relative;
  height: 520px;
}

.product-card-hero {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card-hero:hover {
  box-shadow: var(--shadow-hover);
}

.card-main {
  width: 300px;
  height: 380px;
  top: 40px; left: 60px;
  background: linear-gradient(145deg, #E8D5BD, #D4B896);
  animation: heroFloat 6s ease-in-out infinite;
}

.card-secondary {
  width: 220px;
  height: 280px;
  top: 0; right: 20px;
  background: linear-gradient(145deg, #DDD4E8, #C8BEDA);
  animation: heroFloat 8s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

.card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(61,42,34,0.72) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-overlay .card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(231,214,191,0.8);
}

.card-overlay .card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--foam);
  line-height: 1.15;
}

.soap-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.soap-bar {
  width: 120px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), 0 2px 8px rgba(91,58,41,0.15);
}

.soap-1 { margin-bottom: -4px; width: 110px; height: 44px; }
.soap-2 { width: 120px; }

.soap-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(61,42,34,0.7);
}
.soap-brand.small { font-size: 9px; }

.soap-foam {
  width: 80px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  filter: blur(8px);
  position: absolute;
  top: 32px;
  opacity: 0.8;
}

.soap-lavender {
  width: 90px;
  height: 38px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lavender-foam {
  width: 60px; height: 30px;
  background: rgba(255,255,255,0.6);
  top: 28px;
}

.soap-visual.small { gap: 4px; }

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(61,42,34,0.55);
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cocoa);
}

/* Floating elements */
.float-elem {
  position: absolute;
  pointer-events: none;
}

.float-bean { color: var(--coffee); opacity: 0.4; font-size: 6px; }
.float-1 { top: 20px; left: 40px; animation: floatEl 4s ease-in-out infinite; }
.float-2 { bottom: 100px; right: 10px; animation: floatEl 5s ease-in-out infinite reverse; font-size: 8px; }
.float-sprig { color: var(--lavender-deep); opacity: 0.5; font-size: 14px; top: 60px; right: 60px; animation: floatEl 6s ease-in-out infinite; }
.float-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--beige); bottom: 60px; left: 20px; animation: floatEl 7s ease-in-out infinite; }
.float-ring { width: 40px; height: 40px; border: 1.5px solid rgba(91,58,41,0.2); border-radius: 50%; bottom: 180px; right: 0; animation: floatEl 9s ease-in-out infinite reverse; }

@keyframes floatEl {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(3px, -6px) rotate(5deg); }
  66%       { transform: translate(-3px, -3px) rotate(-3deg); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  z-index: 1;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--taupe), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.about-text-card {
  background: var(--foam);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-row: 1 / 3;
}

.about-visual-card {
  background: linear-gradient(145deg, var(--cream), var(--beige));
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}

.about-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

.about-visual-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.about-soap-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-soap-stack {
  position: relative;
  width: 160px;
  height: 120px;
}

.about-soap {
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 16px rgba(91,58,41,0.18);
  width: 120px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as-1 { bottom: 0; left: 20px; z-index: 3; }
.as-2 { bottom: 30px; left: 14px; z-index: 2; width: 126px; }
.as-3 { bottom: 60px; left: 8px; z-index: 1; width: 130px; }

.about-soap-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(61,42,34,0.65);
}

.about-decor-ring {
  position: absolute;
  width: 180px; height: 180px;
  border: 1.5px solid rgba(91,58,41,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.about-stat-pill {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(61,42,34,0.15);
  z-index: 2;
}
.about-stat-pill-2 { bottom: 72px; left: 24px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--coffee);
}
.stat-label {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 400;
}

.about-tagline-card {
  background: var(--coffee);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  text-align: center;
}

.about-ingredients-card {
  background: linear-gradient(145deg, var(--lavender), #E0D9EA);
  border: 1px solid rgba(168,155,187,0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.5);
}

.ing-dot { width: 7px; height: 7px; border-radius: 50%; }
.coffee-dot   { background: var(--coffee); }
.lavender-dot { background: var(--lavender-deep); }
.oat-dot      { background: #C4A882; }
.shea-dot     { background: #E8CFA0; }
.coconut-dot  { background: #F0E8D8; border: 1px solid var(--beige); }
.vitamin-dot  { background: #E4A44A; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: linear-gradient(180deg, var(--white) 0%, var(--foam) 100%);
}

.products-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.product-bento-card {
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.product-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pb-large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  padding: 40px 36px;
  background: linear-gradient(135deg, var(--cream), #EAD9C4);
}
.pb-large:hover { background: linear-gradient(135deg, #EAD9C4, var(--beige)); }

.product-bento-card:not(.pb-large) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pb-serum       { background: linear-gradient(135deg, #F0EAF5, var(--lavender)); }
.pb-serum:hover { background: linear-gradient(135deg, var(--lavender), #D8CEEA); }

.pb-moisturiser       { background: linear-gradient(135deg, var(--foam), var(--cream)); }
.pb-sunscreen         { background: linear-gradient(135deg, #FFF8EE, #F5E8D0); }
.pb-body-scrub        { background: linear-gradient(135deg, #EEE8E0, var(--beige)); }
.pb-lip-scrub         { background: linear-gradient(135deg, #F5EEF5, #EDD8ED); }

/* Product Icons */
.pb-icon { flex-shrink: 0; }

.pb-icon-art {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 12px rgba(91,58,41,0.08);
  transition: transform var(--transition);
}
.pb-large .pb-icon-art { width: 80px; height: 80px; border-radius: var(--radius-lg); }
.product-bento-card:hover .pb-icon-art { transform: scale(1.06) rotate(-2deg); }

/* Soap icon */
.pi-soap-bar {
  width: 32px; height: 14px;
  background: linear-gradient(135deg, var(--beige), var(--coffee-light));
  border-radius: 4px;
  position: absolute;
  bottom: 18px;
}
.pb-large .pi-soap-bar { width: 42px; height: 18px; bottom: 22px; }

.pi-foam {
  width: 24px; height: 16px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  filter: blur(3px);
}
.pb-large .pi-foam { width: 32px; height: 20px; top: 14px; }

/* Serum icon */
.pi-bottle {
  width: 14px; height: 36px;
  background: linear-gradient(180deg, var(--lavender-deep), #8B7BAA);
  border-radius: 6px 6px 4px 4px;
  position: absolute;
  bottom: 12px;
}
.pi-drop {
  width: 8px; height: 8px;
  background: var(--lavender-deep);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: absolute;
  top: 14px;
  opacity: 0.6;
}

/* Moisturiser icon */
.pi-jar {
  width: 36px; height: 24px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: 4px 4px 8px 8px;
  position: absolute;
  bottom: 12px;
  border: 1.5px solid rgba(91,58,41,0.2);
}
.pi-lid {
  width: 40px; height: 10px;
  background: var(--beige);
  border-radius: 4px;
  position: absolute;
  bottom: 34px;
  border: 1.5px solid rgba(91,58,41,0.2);
}

/* Sun icon */
.pi-sun {
  width: 24px; height: 24px;
  background: radial-gradient(circle, #F5C842, #E8A020);
  border-radius: 50%;
  position: absolute;
}
.pi-rays {
  width: 44px; height: 44px;
  border: 2px dashed rgba(229,161,32,0.5);
  border-radius: 50%;
  position: absolute;
  animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Scrub icon */
.pi-scrub-jar {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, #D4B896, var(--coffee-light));
  border-radius: 6px;
  position: absolute;
  bottom: 12px;
  border: 1.5px solid rgba(91,58,41,0.25);
}
.pi-granules {
  position: absolute;
  top: 14px;
  display: flex;
  gap: 3px;
}
.pi-granules::before,
.pi-granules::after {
  content: '';
  width: 5px; height: 5px;
  background: var(--coffee);
  border-radius: 50%;
  opacity: 0.5;
}

/* Lip icon */
.pi-lip-tube {
  width: 12px; height: 30px;
  background: linear-gradient(180deg, #D4A0C8, #A06090);
  border-radius: 4px 4px 2px 2px;
  position: absolute;
  bottom: 16px;
  left: 50%; transform: translateX(-50%);
}
.pi-sparkle {
  position: absolute;
  top: 14px; right: 14px;
  width: 6px; height: 6px;
  background: #D4A0C8;
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: -8px 8px 0 3px rgba(212,160,200,0.3);
}

.pb-content { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.pb-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coffee-light);
  background: rgba(91,58,41,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.pb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--cocoa);
  line-height: 1.1;
}
.pb-large .pb-title { font-size: 34px; }

.pb-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
}

.pb-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--coffee);
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: gap var(--transition-fast);
  cursor: none;
}
.product-bento-card:hover .pb-cta { gap: 10px; }

.pb-deco {
  position: absolute;
  width: 200px; height: 200px;
  border: 1.5px solid rgba(91,58,41,0.1);
  border-radius: 50%;
  right: -60px; bottom: -60px;
  pointer-events: none;
}

/* ============================================================
   WHY MIORAVIE
   ============================================================ */
.why { background: var(--foam); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.wc-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: linear-gradient(145deg, var(--cream), var(--beige));
  justify-content: flex-end;
  padding: 40px;
}
.wc-large .why-title { font-size: 30px; }
.wc-large .why-desc  { font-size: 14px; }

.wc-accent { background: linear-gradient(145deg, var(--lavender), #D8D0E8); }

.why-icon-wrap { flex: 1; display: flex; align-items: flex-start; }

.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coffee);
  transition: transform var(--transition);
  box-shadow: var(--shadow-soft);
}
.why-card:hover .why-icon { transform: rotate(-5deg) scale(1.08); }
.why-icon svg { width: 20px; height: 20px; }

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cocoa);
  line-height: 1.2;
}

.why-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
}

/* ============================================================
   ROUTINE
   ============================================================ */
.routine {
  background: linear-gradient(180deg, var(--foam) 0%, var(--white) 100%);
}

.routine-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.routine-flow::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige) 15%, var(--beige) 85%, transparent);
  z-index: 0;
}

.routine-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.rs-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--taupe);
  background: var(--foam);
  padding: 0 8px;
}

.rs-line { display: none; }

.rs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
  max-width: 160px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.rs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.rs-card.last { border-color: var(--lavender-deep); background: linear-gradient(145deg, #F4F0F8, var(--foam)); }

.rs-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Routine icons */
.rsi-soap {
  width: 28px; height: 12px;
  background: linear-gradient(135deg, var(--beige), var(--coffee-light));
  border-radius: 3px;
}
.rsi-drop {
  width: 10px; height: 14px;
  background: var(--lavender-deep);
  border-radius: 50% 50% 40% 40%;
  transform: scaleX(0.8);
}
.rsi-cream {
  width: 24px; height: 18px;
  background: var(--cream);
  border-radius: 3px 3px 6px 6px;
  border: 1.5px solid var(--beige);
}
.rsi-sun {
  width: 22px; height: 22px;
  background: radial-gradient(circle, #F5C842, #E8A020);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(248,194,32,0.2);
}
.rsi-scrub {
  width: 22px; height: 18px;
  background: linear-gradient(135deg, var(--beige), var(--taupe));
  border-radius: 4px;
}

.rs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cocoa);
}

.rs-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-light);
  font-weight: 300;
}

.rs-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  background: rgba(168,155,187,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(168,155,187,0.3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  background: var(--white);
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(207,199,217,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}

.testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tc-large { padding: 44px 40px; }
.tc-large .tcard-text { font-size: 17px; }

.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--cream);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}
.tc-large .tcard-quote { font-size: 96px; color: var(--beige); }

.tcard-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 28px;
}

.tcard-author { display: flex; align-items: center; gap: 12px; }

.tcard-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ta-1 { background: linear-gradient(135deg, var(--cream), var(--beige)); }
.ta-2 { background: linear-gradient(135deg, var(--lavender), var(--lavender-deep)); }
.ta-3 { background: linear-gradient(135deg, var(--beige), var(--taupe)); }

.tcard-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--cocoa);
}
.tcard-role {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

.tcard-deco {
  position: absolute;
  width: 160px; height: 160px;
  border: 1.5px solid rgba(207,199,217,0.3);
  border-radius: 50%;
  right: -50px; bottom: -50px;
  pointer-events: none;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--foam); }

.cta-inner {
  text-align: center;
  background: linear-gradient(145deg, var(--cocoa), var(--coffee));
  border-radius: var(--radius-xl);
  padding: clamp(60px, 10vw, 100px) clamp(30px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(231,214,191,0.1) 0%, transparent 60%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(207,199,217,0.08) 0%, transparent 60%);
  bottom: -100px; left: 100px;
  pointer-events: none;
}

.cta-inner .section-label { color: rgba(231,214,191,0.6); position: relative; z-index: 1; }

.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  color: var(--foam);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-headline em { font-style: italic; color: var(--cream); }

.cta-sub {
  font-size: 15px;
  color: rgba(231,214,191,0.7);
  font-weight: 300;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cocoa);
  padding: 60px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--transition-fast);
  cursor: none;
}
.footer-nav a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(183,168,154,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  cursor: none;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { color: var(--cream); border-color: var(--cream); background: rgba(231,214,191,0.1); }

.footer-divider {
  height: 1px;
  background: rgba(183,168,154,0.2);
  margin-bottom: 28px;
}

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

.footer-bottom span {
  font-size: 12px;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-card-stack { height: 440px; }
  .card-main { width: 240px; height: 320px; left: 30px; }
  .card-secondary { width: 180px; height: 240px; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-text-card { grid-row: auto; }
  .about-visual-card { min-height: 240px; }

  .products-bento { grid-template-columns: repeat(2, 1fr); }
  .pb-large { grid-column: 1 / 3; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .wc-large { grid-column: 1 / 3; grid-row: auto; flex-direction: row; align-items: center; gap: 32px; }

  .routine-flow { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .routine-flow::before { display: none; }
  .rs-5 { grid-column: 2; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .tc-large { grid-column: 1 / 3; }
}

/* Mobile */
@media (max-width: 768px) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 48px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }

  .hero-visual { order: -1; }
  .hero-card-stack { height: 320px; }
  .card-main { width: 200px; height: 260px; left: 50%; transform: translateX(-60%); }
  .card-secondary { width: 150px; height: 200px; right: 50%; transform: translateX(40%); top: 10px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual-card { min-height: 200px; }
  .about-stat-pill { position: static; margin-top: 8px; }
  .about-stat-pill-2 { margin-top: 0; }

  .about-visual-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 24px;
  }

  .products-bento { grid-template-columns: 1fr; }
  .pb-large { grid-column: 1; flex-direction: column; gap: 20px; }

  .why-grid { grid-template-columns: 1fr; }
  .wc-large { grid-column: 1; flex-direction: column; gap: 20px; }

  .routine-flow { grid-template-columns: 1fr 1fr; }
  .routine-flow::before { display: none; }
  .rs-5 { grid-column: auto; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .tc-large { grid-column: 1; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-nav { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-card-stack { height: 260px; }
  .card-main { width: 160px; height: 210px; }
  .card-secondary { width: 120px; height: 160px; }

  .routine-flow { grid-template-columns: 1fr 1fr; }
  .rs-5 { grid-column: auto; }

  .about-card { padding: 28px 24px; }
  .product-bento-card { padding: 24px 20px; }
}
