:root {
  /* Colors */
  --color-soft-purple: #E3DEFF;
  --color-soft-purple-dark: #D4CDFF;
  --color-hot-pink: #FCB2FF;
  --color-mint-green: #DBF8F5;
  --color-near-black: #111111;
  --color-body-text: rgba(17, 17, 17, 0.7);
  --color-muted-text: rgba(17, 17, 17, 0.5);
  --color-light-gray: #F5F5F5;
  --color-white: #FFFFFF;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Typography */
  --font-heading: 'ZT Talk', 'Inter', 'SF Pro Display', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Container */
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* Fonts */
@font-face {
  font-family: 'ZT Talk';
  src: url('../fonts/ZTTalk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZT Talk';
  src: url('../fonts/ZTTalk-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-near-black);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-3xl);
  /* Desktop padding */
}

.section {
  padding: var(--space-4xl) 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.grid {
  display: grid;
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-2xl {
  gap: var(--space-2xl);
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

/* Components */

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary {
  background: var(--color-soft-purple);
  color: var(--color-near-black);
}

.btn-primary:hover {
  background: var(--color-soft-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 222, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-near-black);
  border: 2px solid var(--color-near-black);
}

.btn-secondary:hover {
  background: var(--color-near-black);
  color: var(--color-white);
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-purple {
  background: rgba(227, 222, 255, 0.3);
}

.card-pink {
  background: rgba(252, 178, 255, 0.2);
}

.card-mint {
  background: rgba(219, 248, 245, 0.4);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-near-black);
}

.nav-link:hover,
.nav-link.active {
  color: #9D8CFF;
  /* Darker soft purple */
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-near-black);
  transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--color-white);
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  font-size: 24px;
  font-family: var(--font-heading);
}

/* Footer */
.site-footer {
  background: var(--color-light-gray);
  padding: var(--space-4xl) 0 var(--space-xl);
  margin-top: var(--space-5xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.copyright {
  text-align: center;
  color: var(--color-muted-text);
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: var(--space-lg);
}


/* Refactored Utilities & Components */
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.text-muted {
  color: var(--color-muted-text);
}

.text-hot-pink {
  color: var(--color-hot-pink);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 1px;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.bg-light-gray {
  background-color: var(--color-light-gray);
}

.grid-responsive {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-subtitle {
  font-size: 32px;
  color: var(--color-muted-text);
  margin-bottom: var(--space-lg);
}

.hero-description {
  font-size: 20px;
  margin-bottom: var(--space-xl);
}

.hero-image img {
  aspect-ratio: 4/5;
}

.stat-number {
  font-size: 32px;
  color: var(--color-hot-pink);
  font-weight: 700;
}

.card-image-wrapper {
  height: 200px;
  background: #eee;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.post-meta {
  font-size: 12px;
  color: var(--color-muted-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-title {
  margin: 8px 0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  margin-top: 16px;
}


.pb-0 {
  padding-bottom: 0;
}

.bg-mint {
  background-color: var(--color-mint-green);
}

.bg-light-pink {
  background-color: rgba(252, 178, 255, 0.2);
}

.bg-soft-purple {
  background-color: var(--color-soft-purple);
}

.bg-white-80 {
  background: rgba(255, 255, 255, 0.8);
}

.text-3xl {
  font-size: 32px;
}

.list-disc {
  list-style: disc;
  padding-left: 20px;
}

.max-w-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-xl {
  font-size: 20px;
}

.text-base {
  font-size: 16px;
}

.text-body {
  color: var(--color-body-text);
}

.full-cover-center {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #E3DEFF;
  box-shadow: 0 0 0 4px rgba(227, 222, 255, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --space-3xl: 24px;
    /* Mobile container padding */
    --space-4xl: 64px;
    /* Mobile section padding */
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}