/* ========================================================
   MEEKOO INDUSTRIES — GLOBAL DESIGN SYSTEM
   Used across all pages. Do not edit colors/fonts here
   without updating the brand guidelines.
   ======================================================== */

/* ---------- 1. CSS RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- 2. DESIGN TOKENS (the Meekoo brand) ---------- */
:root {
  /* Brand Colors */
  --mko-forest: #1a3a2a;          /* Primary forest green */
  --mko-forest-dark: #0f2419;     /* Deeper green for hover */
  --mko-forest-light: #2d5a3f;    /* Lighter green for accents */
  --mko-saffron: #e8882a;         /* Saffron accent */
  --mko-saffron-dark: #c47020;    /* Darker saffron for hover */
  --mko-saffron-light: #f4a256;   /* Light saffron for tints */
  --mko-cream: #faf6ef;           /* Cream background */
  --mko-cream-dark: #f0e9dc;      /* Slightly darker cream */
  --mko-ink: #1a1a1a;             /* Body text */
  --mko-ink-soft: #4a4a4a;        /* Secondary text */
  --mko-ink-muted: #7a7a7a;       /* Muted text */
  --mko-line: #e5dfd2;            /* Dividers / borders */
  --mko-white: #ffffff;

  /* Typography */
  --mko-font-display: 'Playfair Display', Georgia, serif;
  --mko-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font sizes */
  --mko-text-xs: 0.75rem;     /* 12px */
  --mko-text-sm: 0.875rem;    /* 14px */
  --mko-text-base: 1rem;      /* 16px */
  --mko-text-lg: 1.125rem;    /* 18px */
  --mko-text-xl: 1.5rem;      /* 24px */
  --mko-text-2xl: 2rem;       /* 32px */
  --mko-text-3xl: 2.75rem;    /* 44px */
  --mko-text-4xl: 4rem;       /* 64px */
  --mko-text-5xl: 5rem;       /* 80px */

  /* Spacing scale */
  --mko-space-1: 0.5rem;
  --mko-space-2: 1rem;
  --mko-space-3: 1.5rem;
  --mko-space-4: 2rem;
  --mko-space-5: 3rem;
  --mko-space-6: 4rem;
  --mko-space-7: 6rem;
  --mko-space-8: 8rem;

  /* Layout */
  --mko-container: 1240px;
  --mko-container-narrow: 960px;
  --mko-radius-sm: 4px;
  --mko-radius: 8px;
  --mko-radius-lg: 16px;
  --mko-radius-full: 999px;

  /* Effects */
  --mko-shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.06);
  --mko-shadow: 0 8px 24px rgba(26, 58, 42, 0.1);
  --mko-shadow-lg: 0 16px 48px rgba(26, 58, 42, 0.14);
  --mko-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --mko-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 3. GLOBAL BODY ---------- */
body {
  font-family: var(--mko-font-body);
  font-size: var(--mko-text-base);
  line-height: 1.65;
  color: var(--mko-ink);
  background: var(--mko-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mko-font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mko-forest);
}

h1 { font-size: clamp(2.5rem, 5vw, var(--mko-text-5xl)); }
h2 { font-size: clamp(2rem, 4vw, var(--mko-text-4xl)); }
h3 { font-size: clamp(1.5rem, 3vw, var(--mko-text-3xl)); }
h4 { font-size: var(--mko-text-2xl); }
h5 { font-size: var(--mko-text-xl); }
h6 { font-size: var(--mko-text-lg); }

p {
  margin-bottom: var(--mko-space-2);
}

.mko-eyebrow {
  font-family: var(--mko-font-body);
  font-size: var(--mko-text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mko-saffron);
  margin-bottom: var(--mko-space-2);
}

.mko-italic {
  font-style: italic;
  color: var(--mko-saffron);
}

/* ---------- 5. LAYOUT UTILITIES ---------- */
.mko-container {
  width: 100%;
  max-width: var(--mko-container);
  margin: 0 auto;
  padding: 0 var(--mko-space-3);
}

.mko-container-narrow {
  width: 100%;
  max-width: var(--mko-container-narrow);
  margin: 0 auto;
  padding: 0 var(--mko-space-3);
}

.mko-section {
  padding: var(--mko-space-7) 0;
}

@media (max-width: 768px) {
  .mko-section {
    padding: var(--mko-space-5) 0;
  }
}

/* ---------- 6. BUTTONS ---------- */
.mko-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--mko-font-body);
  font-size: var(--mko-text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--mko-radius-full);
  transition: var(--mko-transition);
  white-space: nowrap;
  cursor: pointer;
}

.mko-btn-primary {
  background: var(--mko-forest);
  color: var(--mko-cream);
}

.mko-btn-primary:hover {
  background: var(--mko-forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--mko-shadow);
}

.mko-btn-accent {
  background: var(--mko-saffron);
  color: var(--mko-white);
}

.mko-btn-accent:hover {
  background: var(--mko-saffron-dark);
  transform: translateY(-2px);
  box-shadow: var(--mko-shadow);
}

.mko-btn-outline {
  background: transparent;
  color: var(--mko-forest);
  border: 1.5px solid var(--mko-forest);
}

.mko-btn-outline:hover {
  background: var(--mko-forest);
  color: var(--mko-cream);
}

/* ---------- 7. SCROLL REVEAL ---------- */
.mko-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mko-reveal.mko-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 8. ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--mko-saffron);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}