:root {
  --accent: #0F6E56;
  --accent-dark: #085041;
  --accent-light: #E1F5EE;
  --accent-border: #9FE1CB;
  --text-primary: #1a1a18;
  --text-secondary: #5f5e5a;
  --text-muted: #888780;
  --surface-1: #ffffff;
  --surface-2: #f7f6f2;
  --border: #e6e4dc;
  --radius: 8px;
  --purple-bg: #EEEDFE;
  --purple: #7F77DD;
  --purple-text: #26215C;
  --purple-text-2: #534AB7;
  --coral-bg: #FAECE7;
  --coral: #D85A30;
  --coral-text: #4A1B0C;
  --coral-text-2: #993C1D;
  --pink-bg: #FBEAF0;
  --pink: #D4537E;
  --pink-text: #4B1528;
  --pink-text-2: #993556;
  --stat-1: #26215C;
  --stat-1-text: #AFA9EC;
  --stat-2: #4A1B0C;
  --stat-2-text: #F0997B;
  --stat-3: #04342C;
  --stat-3-text: #5DCAA5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--surface-2);
  line-height: 1.6;
}

.page {
  max-width: 900px;
  margin: 32px auto;
  background: var(--surface-1);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.nav-brand-text .name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
}

.nav-brand-text .sub {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 22px;
  font-size: 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-border);
}

.btn-secondary:hover {
  background: var(--accent-light);
}

/* Hero */
.hero {
  padding: 72px 32px 64px;
  text-align: center;
  background: var(--accent-light);
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  color: var(--accent-dark);
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--accent-border);
}

.hero h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 560px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
  color: #04342C;
}

.hero p {
  font-size: 18px;
  color: var(--accent);
  max-width: 440px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  padding: 24px;
  text-align: center;
}

.stat:nth-child(1) { background: var(--stat-1); }
.stat:nth-child(2) { background: var(--stat-2); }
.stat:nth-child(3) { background: var(--stat-3); }

.stat .num {
  font-size: 29px;
  font-weight: 600;
  color: #ffffff;
}

.stat:nth-child(1) .label { color: var(--stat-1-text); }
.stat:nth-child(2) .label { color: var(--stat-2-text); }
.stat:nth-child(3) .label { color: var(--stat-3-text); }

.stat .label {
  font-size: 13px;
  margin-top: 2px;
}

/* Services grid (homepage) */
.section {
  padding: 56px 32px;
}

.section h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}

.section .lede {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border-radius: 12px;
  padding: 20px;
}

.service-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.service-card .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card .desc {
  font-size: 13px;
  line-height: 1.5;
}

.service-card.purple { background: var(--purple-bg); }
.service-card.purple .icon { background: var(--purple); }
.service-card.purple .title { color: var(--purple-text); }
.service-card.purple .desc { color: var(--purple-text-2); }

.service-card.coral { background: var(--coral-bg); }
.service-card.coral .icon { background: var(--coral); }
.service-card.coral .title { color: var(--coral-text); }
.service-card.coral .desc { color: var(--coral-text-2); }

.service-card.pink { background: var(--pink-bg); }
.service-card.pink .icon { background: var(--pink); }
.service-card.pink .title { color: var(--pink-text); }
.service-card.pink .desc { color: var(--pink-text-2); }

/* Trusted by */
.trusted {
  padding: 40px 32px 56px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.trusted p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 24px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.logo-card {
  background: var(--surface-1);
  border-radius: var(--radius);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D02B20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #F5C518;
  font-style: italic;
}

.logo-word {
  font-size: 18px;
  font-weight: 700;
  color: #0B4EA2;
  letter-spacing: -0.5px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0B4EA2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
}

.logo-nestle-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #0B4EA2;
  flex-shrink: 0;
}

.logo-serif {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  color: #0B4EA2;
}

/* CTA */
.cta {
  padding: 48px 32px;
  background: var(--accent-dark);
  text-align: center;
}

.cta h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.cta p {
  font-size: 15px;
  color: var(--accent-border);
  margin: 0 0 20px;
}

/* Page header (inner pages) */
.page-header {
  padding: 48px 32px 32px;
}

.page-header .eyebrow {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 8px;
}

.page-header h1 {
  font-size: 31px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  max-width: 480px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0;
}

/* Services page list */
.service-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 28px 32px;
  border-top: 1px solid var(--border);
}

.service-row .icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 18px;
}

.service-row .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-row .desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 12px;
  max-width: 520px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.tag.purple { background: var(--purple-bg); color: var(--purple-text-2); }
.tag.coral { background: var(--coral-bg); color: var(--coral-text-2); }
.tag.pink { background: var(--pink-bg); color: var(--pink-text-2); }

/* About page */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 32px 40px;
}

.value-item .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item .desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.core-values {
  padding: 40px 32px 48px;
  border-top: 1px solid var(--border);
}

.core-values > .heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.core-value-card {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 18px;
}

.core-value-card .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent);
}

.core-value-card .desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  padding: 0 32px 48px;
}

.contact-card {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}

.contact-card .label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.contact-card .label.accent { color: var(--accent); }
.contact-card .label.muted { color: var(--text-secondary); }

.contact-card .address {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-card .phone {
  font-size: 13px;
  color: var(--text-primary);
  margin-top: 8px;
}

.contact-card .email-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary);
}

form label {
  font-size: 13px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  margin-bottom: 12px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  background: #ffffff;
  color: var(--text-primary);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

/* Impact Projects page */
.project-hero {
  padding: 48px 32px 40px;
  background: #04342C;
  color: #ffffff;
}

.project-hero .badge {
  display: inline-block;
  font-size: 12px;
  color: var(--stat-3-text);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.project-hero h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  max-width: 520px;
}

.project-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--stat-3-text);
  max-width: 540px;
  margin: 0;
}

.project-block {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}

.project-block.tight {
  padding-top: 8px;
}

.project-block > .heading {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.project-block > .lede {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  border-radius: 12px;
  padding: 16px;
}

.highlight-card .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.highlight-card .desc {
  font-size: 13px;
  line-height: 1.6;
}

.highlight-card.purple { background: var(--purple-bg); }
.highlight-card.purple .title { color: var(--purple-text); }
.highlight-card.purple .desc { color: var(--purple-text-2); }

.highlight-card.coral { background: var(--coral-bg); }
.highlight-card.coral .title { color: var(--coral-text); }
.highlight-card.coral .desc { color: var(--coral-text-2); }

.highlight-card.pink { background: var(--pink-bg); }
.highlight-card.pink .title { color: var(--pink-text); }
.highlight-card.pink .desc { color: var(--pink-text-2); }

.specs-section {
  padding: 32px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.specs-section > .heading {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.spec-card {
  background: var(--surface-1);
  border-radius: 10px;
  padding: 14px;
}

.spec-card .label {
  font-size: 12px;
  color: var(--text-muted);
}

.spec-card .value {
  font-size: 15px;
  font-weight: 600;
  margin-top: 2px;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.market-stat {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
}

.market-stat:nth-child(1) { background: var(--stat-1); }
.market-stat:nth-child(2) { background: var(--stat-2); }
.market-stat:nth-child(3) { background: var(--stat-3); }

.market-stat .num {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.market-stat:nth-child(1) .label { color: var(--stat-1-text); }
.market-stat:nth-child(2) .label { color: var(--stat-2-text); }
.market-stat:nth-child(3) .label { color: var(--stat-3-text); }

.market-stat .label {
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}

.team-section {
  padding: 32px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.team-section > .heading {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  background: var(--surface-1);
  border-radius: 12px;
  padding: 16px;
}

.team-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card .name {
  font-size: 13px;
  font-weight: 600;
}

.team-card .role {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 31px; }
  .stats, .service-grid, .logo-grid, .values-row, .core-values-grid, .contact-grid,
  .problem-grid, .highlight-grid, .spec-grid, .market-stats, .team-grid-3 {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 1fr; }
}
