/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(38px, 5.5vw, 70px); letter-spacing: -2px; }
h2 { font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 17px; line-height: 1.3; }
p { color: var(--text-muted); line-height: 1.75; }

/* ===== UTILITY ===== */
.text-inverse { color: var(--text-inverse) !important; }
.text-teal { color: var(--teal) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ===== SECTION SPACING ===== */
section { position: relative; }
.section-pad { padding: var(--section-gap) 0; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ===== COMPLIANCE BADGE ===== */
.compliance-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 5px 14px;
}
.compliance-inline i { color: var(--teal); font-size: 13px; }

/* ===== AGE BADGE ===== */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--coral-red);
  color: var(--soft-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

/* ===== DISCLAIMER BLOCK ===== */
.disclaimer-block {
  background: rgba(63, 125, 122, 0.08);
  border: 1px solid rgba(63, 125, 122, 0.22);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.disclaimer-block i { color: var(--teal); margin-top: 2px; flex-shrink: 0; font-size: 16px; }
.disclaimer-block.dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--border-light);
}
.disclaimer-block.dark i { color: var(--gold); }
