/* Design tokens — palette lifted from the Laba Fresh tri-fold brochure. */
:root {
  --teal:   #1A7A6E;
  --teal-d: #14655B;
  --dark:   #0D4F47;
  --deeper: #07302A;
  --ink:    #1C2B29;
  --light:  #E8F5F3;
  --mint:   #9AE8DD;
  --pale:   #C4EDE8;
  --grey:   #5A6B69;
  --line:   #E8F0EF;
  --white:  #FFFFFF;

  --font-sans:  "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;

  --container: 1140px;
  --radius:    14px;
  --radius-sm: 9px;
  --nav-h:     70px;

  --shadow-sm: 0 1px 3px rgba(7, 48, 42, .07), 0 4px 12px rgba(7, 48, 42, .05);
  --shadow-md: 0 4px 12px rgba(7, 48, 42, .09), 0 14px 32px rgba(7, 48, 42, .08);
  --shadow-lg: 0 10px 30px rgba(7, 48, 42, .13), 0 30px 60px rgba(7, 48, 42, .10);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0; }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
