/* =========================================================
   GlowLush — Lip Care Essentials
   Warm editorial aesthetic. Cream, berry, gold palette.
   ========================================================= */

:root {
  --bg: #FBF7F2;
  --bg-warm: #F5EDE4;
  --berry: #B05B5B;
  --berry-deep: #7A3232;
  --cream: #FFF8F0;
  --gold: #C4A882;
  --gold-light: #E8D5B7;
  --ink: #1E1A18;
  --ink-light: #5C4F46;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--berry); color: var(--white); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

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

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--berry);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.18);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.nav-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--bg);
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(176, 91, 91, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at bottom left, rgba(196, 168, 130, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { display: flex; flex-direction: column; gap: 24px; }

.hero-overline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--berry);
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--berry);
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 380px;
  font-weight: 300;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pill {
  padding: 6px 16px;
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ---- HERO VISUAL ---- */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-berry {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(176, 91, 91, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.orb-warm {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 160, 160, 0.4) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation: pulse 5s ease-in-out infinite 1s;
}

.orb-gold {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.5) 0%, transparent 70%);
  bottom: 15%;
  left: 15%;
  animation: pulse 6s ease-in-out infinite 0.5s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) translate(-50%, -50%); opacity: 0.7; }
  50% { transform: scale(1.08) translate(-50%, -50%); opacity: 1; }
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: 24px;
  padding: 28px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(176, 91, 91, 0.1), 0 4px 16px rgba(0,0,0,0.04);
  min-width: 220px;
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}

.hero-card:hover { transform: rotate(0deg) scale(1.02); }

.hero-card-2 {
  position: absolute;
  bottom: 30px;
  right: 10px;
  transform: rotate(6deg);
  border-color: rgba(176, 91, 91, 0.2);
}

.hero-card-2:hover { transform: rotate(3deg) scale(1.02); }

.card-inner { display: flex; flex-direction: column; gap: 6px; }

.card-shine {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 160, 0.4) 0%, transparent 70%);
  filter: blur(20px);
}

.card-shine-2 {
  background: radial-gradient(circle, rgba(196, 168, 130, 0.5) 0%, transparent 70%);
}

.card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.card-detail {
  font-size: 0.72rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* ---- SCROLL HINT ---- */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

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

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ---- RITUAL SECTION ---- */
.ritual {
  padding: 120px 48px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.ritual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ritual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ritual-inner { max-width: 1100px; margin: 0 auto; }

.ritual-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}

.label-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
}

.label-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.4;
}

.ritual-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step { padding: 0 40px 0 0; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
}

.step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0.4;
}

/* ---- ESSENTIALS ---- */
.essentials {
  padding: 120px 48px;
  background: var(--bg-warm);
}

.essentials-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--ink);
  margin-top: 12px;
  line-height: 1.2;
}

.essentials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.essential-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(196, 168, 130, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.essential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(176, 91, 91, 0.1);
}

.ec-visual {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.essential-card-1 .ec-visual { background: linear-gradient(135deg, #F8E8E8, #F0D0D0); }
.essential-card-2 .ec-visual { background: linear-gradient(135deg, #FDF0EA, #F5E0D8); }
.essential-card-3 .ec-visual { background: linear-gradient(135deg, #F0EBE0, #E5DDD0); }

.ec-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.ec-orb-1 { width: 160px; height: 160px; background: rgba(176,91,91,0.25); top: 20%; left: 20%; }
.ec-orb-2 { width: 100px; height: 100px; background: rgba(232,160,160,0.3); bottom: 20%; right: 20%; }
.ec-orb-3 { width: 160px; height: 160px; background: rgba(196,168,130,0.3); top: 20%; left: 20%; }
.ec-orb-4 { width: 100px; height: 100px; background: rgba(220,180,160,0.3); bottom: 20%; right: 20%; }
.ec-orb-5 { width: 140px; height: 140px; background: rgba(196,168,130,0.25); top: 20%; right: 20%; }
.ec-orb-6 { width: 80px; height: 80px; background: rgba(180,150,130,0.3); bottom: 20%; left: 20%; }

.ec-icon {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
}

.ec-icon svg { width: 100%; height: 100%; }

.ec-content {
  padding: 28px 28px 32px;
}

.ec-category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 8px;
  font-weight: 500;
}

.ec-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.ec-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.ec-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--berry);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 120px 48px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.manifesto-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 300px;
}

.mg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.3);
}

.mg-ring-1 { width: 240px; height: 240px; animation: spin 20s linear infinite; }
.mg-ring-2 { width: 170px; height: 170px; border-style: dashed; animation: spin 14s linear infinite reverse; }
.mg-ring-3 { width: 100px; height: 100px; border-color: rgba(176,91,91,0.3); animation: spin 9s linear infinite; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.mg-center {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--berry);
  letter-spacing: 0.1em;
}

.manifesto-right { display: flex; flex-direction: column; gap: 20px; }

.manifesto-eyebrow { margin-bottom: 4px; }

.manifesto-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
  line-height: 1.3;
}

.manifesto-body {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.8;
  font-weight: 300;
}

.manifesto-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(196,168,130,0.25);
}

.pillar {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--berry);
  font-weight: 400;
  min-width: 60px;
}

.pillar-label {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 48px;
  background: var(--berry-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,160,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

.closing-overline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-visual {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cv-orb {
  border-radius: 50%;
  filter: blur(40px);
}

.cv-orb-1 { width: 120px; height: 120px; background: rgba(232,160,160,0.4); animation: float 4s ease-in-out infinite; }
.cv-orb-2 { width: 80px; height: 80px; background: rgba(196,168,130,0.5); animation: float 5s ease-in-out infinite 1s; }
.cv-orb-3 { width: 100px; height: 100px; background: rgba(255,248,240,0.2); animation: float 3s ease-in-out infinite 0.5s; }

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

/* ---- FOOTER ---- */
.footer {
  padding: 64px 48px 40px;
  background: var(--ink);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand { margin-bottom: 40px; }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  cursor: default;
}

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

.footer-copy, .footer-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 100px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 320px; }
  .hero-card { min-width: 180px; padding: 20px 24px; }
  .ritual { padding: 80px 24px; }
  .ritual-steps { grid-template-columns: 1fr; gap: 48px; }
  .step-divider { display: none; }
  .step { padding: 0; }
  .step-desc { max-width: 100%; }
  .essentials { padding: 80px 24px; }
  .essentials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .manifesto { padding: 80px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-graphic { height: 220px; }
  .closing { padding: 100px 24px; }
  .footer { padding: 48px 24px 32px; }
  .footer-links { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .step-number { font-size: 2.5rem; }
  .manifesto-statement { font-size: 1.5rem; }
  .closing-headline { font-size: 2.5rem; }
}