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

:root {
  --bg: #ffffff;
  --bg-secondary: #f5f4f1;
  --bg-tertiary: #eeede9;
  --text: #111110;
  --text-secondary: #5f5e5a;
  --text-tertiary: #888780;
  --border: rgba(17,17,16,0.12);
  --border-md: rgba(17,17,16,0.22);
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border: 0.5px solid var(--border-md);
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.nav-cta:hover { background: var(--text); color: var(--bg); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 0.5px solid var(--border);
}

.hero-left {
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 0.5px solid var(--border);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.2rem;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 360px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  font-size: 13px;
  font-weight: 500;
  padding: 11px 24px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.8; }

.btn-ghost {
  font-size: 13px;
  font-weight: 400;
  padding: 11px 24px;
  background: transparent;
  color: var(--text-secondary);
  border: 0.5px solid var(--border-md);
  border-radius: 22px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--text); color: var(--text); }

.hero-right {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

/* ── STATS ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--border);
}

.stat {
  padding: 1.5rem 2.5rem;
  border-right: 0.5px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── FEATURES ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--border);
}

.feature {
  padding: 2.5rem;
  border-right: 0.5px solid var(--border);
}

.feature:last-child { border-right: none; }

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── PRODUCTS ── */
.products {
  padding: 3rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
}

.section-link {
  font-size: 12px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.section-link:hover { color: var(--text); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
}

.product-img {
  height: 500px;
  background: var(--bg-tertiary);
  overflow: hidden;
}

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

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

.product-info { padding: 1.25rem 1.5rem; }

.product-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.product-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-price {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
}

.about-left {
  padding: 3rem 2.5rem;
  border-right: 0.5px solid var(--border);
}

.about-right {
  padding: 3rem 2.5rem;
  background: var(--bg-secondary);
}

.about h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.about p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.values { display: flex; flex-direction: column; gap: 16px; }

.value { display: flex; gap: 14px; align-items: flex-start; }

.value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  margin-top: 8px;
  flex-shrink: 0;
}

.value strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.value span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  padding: 5rem 2.5rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.cta-section p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo {
  font-size: 16px;
}

footer p {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 260px; border-right: none; }
  h1 { font-size: 56px; }
  .hero-left { padding: 3rem 1.25rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 0.5px solid var(--border); }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 0.5px solid var(--border); }
  .products { padding: 2rem 1.25rem; }
  .product-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 0.5px solid var(--border); }
  .about-left, .about-right { padding: 2rem 1.25rem; }
  .cta-section h2 { font-size: 44px; }
  .cta-section { padding: 3rem 1.25rem; }
  footer { padding: 1.25rem; flex-direction: column; gap: 8px; text-align: center; }
}