/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: var(--text-4xl); font-weight: 700; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { max-width: 65ch; }

/* ─── Utilities ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ─── Light Section Override ─── */
.section--light {
  background: var(--color-light-bg);
  color: var(--color-light-text);
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--color-light-text);
}
.section--light p,
.section--light .section-subtitle,
.section--light .card__text,
.section--light .advantage__text,
.section--light .foodservice__item,
.section--light .stat__label {
  color: var(--color-light-text-muted);
}
.section--light .about__text p {
  color: var(--color-light-text-muted);
}
.section--light .card {
  background: var(--color-light-bg-2);
  border-color: var(--color-light-border);
}
.section--light .card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 40px rgba(0, 201, 167, .12);
}
.section--light .badge {
  background: var(--color-light-bg-2);
  border-color: var(--color-light-border);
  color: var(--color-light-text-muted);
}
.section--light .foodservice__check {
  background: rgba(0, 201, 167, .1);
}
.section--light .case__stat {
  background: rgba(0, 201, 167, .08);
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
