:root {
  --bg: #faf6f1;
  --bg-warm: #f3ece3;
  --fg: #2d1f10;
  --fg-muted: #7a6652;
  --accent: #c85d2b;
  --accent-hover: #a84b22;
  --accent-light: #fcebd9;
  --cream: #fff8f0;
  --sage: #8fa97e;
  --sage-light: #e8f0e3;
  --bark: #5c3d21;
  --golden: #d4a843;
  --radius: 16px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: linear-gradient(170deg, var(--cream) 0%, var(--bg-warm) 50%, var(--sage-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--bark);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 3rem;
}

.hero-visual {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.hero-tag {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* ---- WHAT WE DO ---- */
.what-section {
  padding: 6rem 2rem;
  background: white;
}

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--bark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.what-text p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.what-cards {
  display: grid;
  gap: 1.2rem;
}

.what-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.what-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.what-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.what-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- CATEGORIES ---- */
.categories {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.categories h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--bark);
  margin-bottom: 3rem;
  max-width: 600px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.cat-item {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.cat-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.cat-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.cat-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- DIFFERENCE ---- */
.difference {
  padding: 6rem 2rem;
  background: white;
}

.diff-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.difference h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--bark);
  margin-bottom: 3rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.diff-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.diff-card.them {
  background: #f5f0eb;
  border: 1px dashed rgba(0,0,0,0.1);
}

.diff-card.us {
  background: var(--accent-light);
  border: 2px solid var(--accent);
}

.diff-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.diff-card.them h3 { color: var(--fg-muted); }
.diff-card.us h3 { color: var(--accent); }

.diff-card ul {
  list-style: none;
  padding: 0;
}

.diff-card ul li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
}

.diff-card.them ul li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: #bbb;
  font-weight: 700;
}

.diff-card.us ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.diff-card.us ul li { color: var(--fg); }

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(170deg, var(--sage-light) 0%, var(--cream) 50%, var(--bg) 100%);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bark);
  max-width: 650px;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bark);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

footer .footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

footer p {
  color: rgba(255,255,255,0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .what-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}