:root {
  --bg: #F5F0E8;
  --bg-warm: #EDE7DA;
  --fg: #1A1714;
  --accent: #C8401A;
  --accent-warm: #E05C2A;
  --muted: #7A7166;
  --surface: #FAF7F2;
  --border: #D9D0C4;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--fg);
  color: var(--bg);
  padding: 0.25rem 0.55rem;
  letter-spacing: 0.05em;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200, 64, 26, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(200, 64, 26, 0.05) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(26, 23, 20, 0.015) 60px,
      rgba(26, 23, 20, 0.015) 61px
    );
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.65;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
.hero-tagline-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.tagline-rule {
  width: 3rem;
  height: 2px;
  background: var(--accent);
}
.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  line-height: 1.2;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--fg);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 7rem 3rem;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
}
.manifesto-label {
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}
.manifesto-label span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  border-top: 1px solid rgba(245,240,232,0.3);
  padding-top: 0.5rem;
  width: 100%;
}
.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bg);
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.75;
  max-width: 56ch;
}
.manifesto-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  margin-top: 1rem;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pillar-icon {
  color: var(--accent);
  width: 2rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
}
.pillar p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

/* PRODUCTS */
.products {
  background: var(--bg-warm);
  padding: 7rem 3rem;
}
.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.products-header {
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.75rem;
}
.products-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 23, 20, 0.1);
}
.product-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.product-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.product-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 8rem 3rem;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  quotes: none;
}
.closing-rule {
  width: 4rem;
  height: 2px;
  background: var(--accent);
}
.closing-statement {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--fg);
  padding: 3rem 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bg);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.5);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .hero-right { align-items: stretch; }
  .hero-stats { gap: 1.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-label { display: none; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .closing { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .hero-headline { font-size: 2rem; }
}