:root {
  /* Brand */
  --color-primary: #2f9e93;
  --color-primary-dark: #247a72;
  --color-primary-light: #e8f6f4;
  --color-primary-mid: #49a89c;
  --color-accent: #f3b32e;
  --color-accent-hover: #e0a020;
  --color-accent-dark: #d4941a;

  /* Neutrals */
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-text-light: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9f9;
  --color-bg-mint: #eef8f6;
  --color-border: #e2e8e7;
  --color-footer-bg: #e8f6f4;
  --color-footer-bar: #1e5c56;
  --color-overlay: rgba(47, 158, 147, 0.88);

  /* Typography */
  --font-sans: "Noto Sans TC", "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.25rem;
  --lh-tight: 1.25;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-section: 5rem;

  /* Layout */
  --container-max: 1140px;
  --container-pad: 1.25rem;
  --header-h: 104px;
  --topbar-h: 40px;

  /* Radius & shadow */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;

  /* Z-index */
  --z-sticky: 100;
  --z-backtop: 200;
  --z-whatsapp: 210;
  --z-mobile-nav: 1000;
  --z-mobile-toggle: 1010;
}

@media (max-width: 768px) {
  :root {
    --space-section: 3.5rem;
    --fs-4xl: 2.1rem;
    --fs-5xl: 2.35rem;
    --header-h: 96px;
  }
}
