:root {
  --bg: #faf7f2;
  --ink: #1a1612;
  --accent: #e85d04;
  --accent-light: #fef3ec;
  --muted: #6b5e52;
  --border: #e8e0d6;
  --card: #ffffff;
  --dark: #1a1612;
  --dark-card: #f0ebe3;
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 4px;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero — full-bleed lifestyle image */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,12,10,0.72) 0%, rgba(15,12,10,0.35) 55%, rgba(15,12,10,0.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-body {
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-body p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

/* Stats */
.stats {
  display: flex;
  align-items: center;
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--border);
  gap: 0;
  overflow-x: auto;
  background: var(--card);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 2.5rem;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Manifesto */
.manifesto {
  padding: 6rem 3rem;
  max-width: 800px;
  border-bottom: 1px solid var(--border);
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 1rem;
}

/* Catalog */
.catalog {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.catalog-content {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.catalog-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.catalog-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.catalog-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.product-card--tall {
  grid-row: span 1;
}

.product-visual {
  padding: 1.5rem;
  background: #f0ebe3;
}

.product-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.product-label {
  padding: 0.85rem 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

/* Features */
.features {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.features-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.features-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 3rem;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  padding: 2.5rem;
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-card:nth-child(2n) { border-right: none; }
.feature-card:nth-child(3) { border-bottom: none; }
.feature-card:nth-child(4) { border-bottom: none; }

.feature-icon {
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Process */
.process {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.process-header {
  margin-bottom: 4rem;
}

.process-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.process-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 550px;
  line-height: 1.2;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.step-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  border: 1px dashed var(--border);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 7rem 3rem 6rem;
  text-align: center;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.closing-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* Footer */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--ink);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  border-radius: 4px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 400px;
}

.footer-sub {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { height: 60vh; min-height: 400px; }
  .hero-overlay { padding: 0 2rem; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.2) 60%, rgba(15,12,10,0.05) 100%); }
  .stats { padding: 2rem 1.5rem; gap: 0; }
  .stat { padding: 0 1.25rem; }
  .stat-num { font-size: 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .catalog { padding: 4rem 1.5rem; }
  .catalog-grid { grid-template-columns: 1fr; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .process { padding: 4rem 1.5rem; }
  .process-steps { flex-direction: column; }
  .step-connector { width: 100%; height: 20px; }
  .step-connector::after { width: 1px; height: 100%; margin: 0 auto; }
  .closing { padding: 5rem 1.5rem 4rem; }
  .footer { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .hero-headline { font-size: 2.8rem; }
}