:root {
  --bg: #f8f5f0;
  --bg-alt: #f0ece3;
  --fg: #1a1a18;
  --fg-muted: #6b6860;
  --accent: #1a3a2a;
  --accent-light: #2d5c43;
  --amber: #c97d10;
  --amber-light: #e8a020;
  --white: #ffffff;
  --border: #e0dbd3;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* ── NAV ── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,58,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 2px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* ── DIFFERENCE ── */
.difference { background: var(--white); padding: 100px 40px; }
.difference-inner { max-width: 1200px; margin: 0 auto; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.diff-card {
  padding: 48px 40px;
  background: var(--bg);
  transition: background 0.2s;
}
.diff-card:hover { background: var(--bg-alt); }
.diff-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 24px;
}
.diff-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.diff-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PRODUCTS ── */
.products { padding: 100px 40px; }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.prod-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.prod-cat {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
}
.prod-cat:hover { background: var(--white); }
.prod-cat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.prod-cat h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.prod-cat p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── PROS ── */
.pros {
  background: var(--accent);
  color: var(--white);
  padding: 100px 40px;
}
.pros-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pros .section-label { color: var(--amber-light); }
.pros .section-title { color: var(--white); }
.pros-body {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.7;
}
.pros-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.pros-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
}
.pros-list svg { flex-shrink: 0; color: var(--amber-light); }
.pros-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pros-cities span {
  font-size: 0.75rem;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
}
.pros-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 80px;
}
.pros-badge {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}
.pros-badge svg { flex-shrink: 0; color: var(--amber-light); }
.pros-badge strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.pros-badge p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
  font-style: normal;
  letter-spacing: -0.01em;
}
.manifesto-attr {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── CLOSING ── */
.closing { padding: 100px 40px; background: var(--white); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.7;
}
.closing-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.closing-pillar-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.closing-pillar strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.closing-pillar p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.7);
  padding: 56px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  width: 100%;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
  .prod-cats { grid-template-columns: repeat(2, 1fr); }
  .pros-inner { grid-template-columns: 1fr; gap: 48px; }
  .pros-right { padding-top: 0; }
  .closing-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 24px 56px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0; }
  .diff-grid { gap: 0; }
  .prod-cats { grid-template-columns: 1fr; }
  .pros, .products, .difference, .manifesto, .closing { padding: 72px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav { padding: 16px 24px; }
}