/* ═══════════════════════════════════════════
   GLOSSUP — Theme CSS
   ═══════════════════════════════════════════ */

:root {
  --bg: #FAF7F2;
  --bg-warm: #F5F0E8;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B5F52;
  --text-light: #9C8E82;
  --accent: #C98E7C;
  --accent-dark: #A87060;
  --gold: #B89B6A;
  --gold-light: #D4BC94;
  --border: #E8E0D5;
  --card-shadow: 0 2px 20px rgba(26,26,26,0.06), 0 1px 4px rgba(26,26,26,0.04);
}

/* ── Layout ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 5rem 3rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  min-height: 480px;
}

.hero-overline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  font-weight: 300;
  line-height: 1.7;
}

/* Hero Card Stack */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.hero-card {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.hero-card-1 {
  top: 0;
  left: 0;
  width: 200px;
  animation: float1 6s ease-in-out infinite;
}

.hero-card-2 {
  top: 80px;
  right: 0;
  width: 160px;
  animation: float2 7s ease-in-out infinite;
}

.hero-card-3 {
  bottom: 40px;
  left: 20px;
  width: 210px;
  animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px) rotate(0.5deg); }
  50% { transform: translateY(-10px) rotate(-0.5deg); }
}

.card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
}

.card-service {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.card-time {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.3rem;
}

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

.card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.card-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Nail art circles */
.hero-nail-art {
  position: absolute;
  bottom: -20px;
  right: -40px;
  display: flex;
  gap: 8px;
  opacity: 0.3;
}

.nail-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

/* Hero bottom bar */
.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.bar-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* ── Differentiation ── */
.diff {
  padding: 6rem 3rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.section-overline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.diff-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.diff-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ── Features ── */
.features {
  padding: 6rem 3rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,26,26,0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Niche ── */
.niche {
  background: var(--text);
  padding: 6rem 3rem;
}

.niche-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.niche-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.niche-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.niche-sub {
  font-size: 1rem;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.niche-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.proof-item {
  text-align: center;
}

.proof-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.proof-label {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.5);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(250,247,242,0.15);
}

/* ── Closing ── */
.closing {
  padding: 8rem 3rem;
  text-align: center;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.closing-vibe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.vibe-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.vibe-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav-tagline { display: none; }

  .hero { padding: 3rem 1.5rem 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-right { display: none; }

  .hero-bottom-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem;
    margin-top: 2rem;
  }

  .diff { padding: 4rem 1.5rem; }
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .niche { padding: 4rem 1.5rem; }
  .niche-proof { flex-direction: column; gap: 2rem; }
  .proof-divider { width: 50px; height: 1px; }

  .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-bottom-bar { justify-content: flex-start; }
}