:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C4553A;
  --accent-light: #E8DDD4;
  --card-bg: #FFFFFF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--accent-light);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 32px;
  max-width: 750px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--accent-light);
}
.hero-accent {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent-light) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 1;
}

/* PRODUCTS */
.products {
  padding: 100px 0;
  background: var(--bg-alt);
}
.products-header {
  max-width: 1140px;
  margin: 0 auto 64px;
  padding: 0 32px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -2px;
}
.products-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-card-large {
  grid-column: span 2;
}
.product-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.product-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* WHY SECTION */
.why {
  padding: 100px 0;
}
.why-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-top: 24px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-feature {
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}
.why-feature-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.why-feature-text {
  font-size: 15px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 120px 0;
  background: var(--fg);
  color: var(--bg);
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.closing-title em {
  color: var(--accent);
  font-style: italic;
}
.closing-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--accent-light);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-text {
  text-align: right;
}
.footer-text p {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-sub {
  font-size: 13px !important;
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero-title { letter-spacing: -2px; }
  .hero-lede { font-size: 17px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 22px; }
  .hero-accent { width: 300px; height: 300px; top: -60px; right: -60px; }
  
  .products { padding: 64px 0; }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card-large {
    grid-column: span 1;
  }
  
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why { padding: 64px 0; }
  .why-feature-number { font-size: 32px; }
  
  .closing { padding: 80px 0; }
  .closing-title { letter-spacing: -1px; }
  
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-text { text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .stat-divider { display: none; }
  .stat { flex-direction: row; align-items: baseline; gap: 8px; }
}