:root {
  --bg: #0e0a09;
  --bg-warm: #1a1210;
  --fg: #f5ede6;
  --fg-muted: #b8a99a;
  --accent: #c8485b;
  --accent-soft: #d4737f;
  --accent-glow: rgba(200, 72, 91, 0.15);
  --nude: #d4a88c;
  --nude-light: #e8cdb8;
  --mauve: #9b7084;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(ellipse, rgba(212, 168, 140, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(200, 72, 91, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero h1 .nude-text {
  color: var(--nude);
}

.hero-lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--nude));
  margin-top: 3rem;
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 2rem;
  position: relative;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--accent);
}

.manifesto-sub {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--fg-muted);
  padding-left: 2rem;
  font-style: italic;
}

/* === PRODUCTS === */
.products {
  padding: 6rem 2rem 8rem;
  background: var(--bg-warm);
}

.products-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.product-card {
  background: rgba(245, 237, 230, 0.03);
  border: 1px solid rgba(245, 237, 230, 0.06);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: rgba(200, 72, 91, 0.25);
  transform: translateY(-4px);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.product-icon.gloss {
  background: linear-gradient(135deg, var(--nude), var(--nude-light));
}

.product-icon.liner {
  background: linear-gradient(135deg, var(--mauve), var(--accent-soft));
}

.product-icon.plumper {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.product-detail {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 8rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.philosophy-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.philosophy-left p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phil-item {
  padding: 1.5rem;
  border-left: 2px solid var(--accent);
  background: rgba(200, 72, 91, 0.04);
}

.phil-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--fg);
}

.phil-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* Signup form */
.signup-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  background: rgba(245, 237, 230, 0.06);
  border: 1px solid rgba(245, 237, 230, 0.15);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  min-width: 240px;
  transition: border-color 0.2s;
}

.signup-form input[type="email"]::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-soft);
}

.signup-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.signup-form button:hover:not(:disabled) {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.signup-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signup-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4rem;
  color: var(--accent-soft);
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(245, 237, 230, 0.06);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.footer-sub {
  font-size: 0.8rem;
  color: rgba(184, 169, 154, 0.5);
  margin-top: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: 90vh; }
  .product-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .philosophy { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .products { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-badge { font-size: 0.6rem; }
  .product-card { padding: 2rem 1.5rem; }
}