:root {
  --bg: #FFF8F2;
  --fg: #1A0F1E;
  --plum: #4A1B4D;
  --plum-deep: #2E0F30;
  --rose: #D4A373;
  --cream: #FFF8F2;
  --blush: #F5E6D3;
  --text: #1A0F1E;
  --text-muted: #7A5C73;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ——— NAVBAR ——— */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: rgba(255,248,242,0.7);
  letter-spacing: 0.04em;
  font-weight: 300;
  text-transform: uppercase;
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  background: var(--plum-deep);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

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

.hero-lede {
  font-size: 17px;
  color: rgba(255,248,242,0.7);
  max-width: 400px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--plum-deep) 0%, transparent 30%);
  z-index: 1;
}

/* ——— MANIFESTO ——— */
.manifesto {
  background: var(--plum);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--plum), var(--rose));
}

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

.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
  font-weight: 400;
}

.manifesto-response {
  font-size: 16px;
  color: rgba(255,248,242,0.65);
  line-height: 1.8;
  font-weight: 300;
}

/* ——— PRODUCTS ——— */
.products {
  padding: 100px 48px;
  background: var(--bg);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid var(--rose);
  padding: 6px 14px;
  border-radius: 100px;
}

.products-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.5px;
}

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

.product-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(74,27,77,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(74,27,77,0.12);
}

.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blush);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-info {
  padding: 28px 24px 32px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  background: rgba(212,163,115,0.12);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ——— DIFFERENT ——— */
.different {
  background: var(--plum-deep);
  padding: 100px 48px;
}

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

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

.diff-icon {
  font-size: 24px;
  color: var(--rose);
  margin-bottom: 20px;
}

.diff-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.diff-body {
  font-size: 14px;
  color: rgba(255,248,242,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ——— CLOSING ——— */
.closing {
  background: var(--blush);
  padding: 120px 48px;
  text-align: center;
}

.closing-badge {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
}

/* ——— FOOTER ——— */
.footer {
  background: var(--plum);
  padding: 48px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,248,242,0.5);
  margin-bottom: 24px;
  font-style: italic;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,248,242,0.3);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 120px 32px 48px;
  }
  .hero-image-wrap {
    height: 60vw;
    min-height: 280px;
  }
  .hero-overlay {
    background: linear-gradient(to top, var(--plum-deep) 0%, transparent 60%);
  }
  .product-grid, .different-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .manifesto, .products, .different, .closing {
    padding: 72px 32px;
  }
  .navbar {
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 48px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}
