:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', sans-serif;
  
  /* Palette (Warm Rose / Beige / Teal) */
  --primary-100: hsl(345, 60%, 90%);
  --primary-300: hsl(345, 60%, 70%);
  --primary-500: hsl(345, 60%, 55%); /* Warm Rose */
  --primary-600: hsl(345, 60%, 45%);
  --primary-800: hsl(345, 60%, 25%);

  --secondary-500: hsl(185, 62%, 42%); /* Teal */

  --neutral-50: hsl(35, 30%, 98%);
  --neutral-100: hsl(35, 30%, 95%); /* Beige */
  --neutral-200: hsl(35, 20%, 85%);
  --neutral-800: hsl(35, 10%, 20%);
  --neutral-900: hsl(35, 15%, 15%);

  --color-bg: var(--neutral-50);
  --color-bg-secondary: var(--neutral-100);
  --color-surface: #ffffff;
  --color-text: var(--neutral-900);
  --color-text-muted: hsl(35, 10%, 40%);
  --color-border: var(--neutral-200);
  --color-primary: var(--primary-500);
  --color-primary-hover: var(--primary-600);
  --color-secondary: var(--secondary-500);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-6: 1.5rem; --space-8: 2rem;
  --space-12: 3rem; --space-16: 4rem; --space-24: 6rem;

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px;
  --container-xl: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-outline { border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.cz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.cz-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
}

.cz-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text);
  text-decoration: none;
}
.cz-logo span { color: var(--color-primary); }

.cz-nav-checkbox { display: none; }
.cz-hamburger { display: none; cursor: pointer; }
.cz-hamburger span {
  display: block; width: 25px; height: 3px; background: var(--color-text);
  margin: 5px 0; border-radius: 2px;
}

.cz-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}
.cz-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s;
}
.cz-nav a:hover, .cz-nav a.active { color: var(--color-primary); }

@media (max-width: 768px) {
  .cz-hamburger { display: block; }
  .cz-nav {
    position: fixed; top: 70px; left: -100%;
    width: 100%; height: calc(100vh - 70px);
    background: var(--color-bg);
    transition: 0.3s;
    padding: var(--space-6);
  }
  .cz-nav ul { flex-direction: column; align-items: flex-start; }
  .cz-nav-checkbox:checked ~ .cz-header-inner .cz-nav { left: 0; }
}

/* Hero */
.cz-hero {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--color-bg) 100%);
}
.cz-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.cz-hero-content h1 {
  font-size: 3rem; margin-bottom: var(--space-4);
}
.cz-hero-content p {
  font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: var(--space-8);
}
.cz-hero-actions { display: flex; gap: var(--space-4); }
.cz-hero-image img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .cz-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .cz-hero-actions { justify-content: center; }
}

/* Features */
.cz-section { padding: var(--space-16) 0; }
.cz-section-title { text-align: center; font-size: 2.5rem; margin-bottom: var(--space-12); }
.cz-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-8);
}
.cz-feature-card {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.3s;
}
.cz-feature-card:hover { transform: translateY(-5px); }
.cz-feature-card img {
  width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}
.cz-feature-card h3 { margin-bottom: var(--space-2); }
.cz-feature-card p { color: var(--color-text-muted); }

/* About Preview */
.cz-about-preview { background: var(--color-bg-secondary); padding: var(--space-16) 0; }
.cz-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.cz-about-grid img { width: 100%; border-radius: var(--radius-lg); }
.cz-about-grid h2 { font-size: 2.5rem; margin-bottom: var(--space-4); }
.cz-about-grid p { margin-bottom: var(--space-4); font-size: 1.1rem; }
@media (max-width: 768px) { .cz-about-grid { grid-template-columns: 1fr; } }

/* FAQ */
.cz-faq-grid { max-width: 800px; margin: 0 auto; }
.cz-faq-item { margin-bottom: var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); }
.cz-faq-item summary {
  padding: var(--space-4); font-weight: bold; cursor: pointer; list-style: none; display: flex; justify-content: space-between;
}
.cz-faq-item summary::after { content: '+'; color: var(--color-primary); font-size: 1.5rem; }
.cz-faq-item[open] summary::after { content: '-'; }
.cz-faq-item p { padding: 0 var(--space-4) var(--space-4); color: var(--color-text-muted); }

/* Footer */
.cz-footer { background: var(--neutral-900); color: #fff; padding: var(--space-12) 0 var(--space-6); }
.cz-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-8); margin-bottom: var(--space-8); }
.cz-footer h4 { color: #fff; margin-bottom: var(--space-4); }
.cz-footer p, .cz-footer a { color: #ccc; text-decoration: none; }
.cz-footer a:hover { color: var(--color-primary); }
.cz-footer ul { list-style: none; }
.cz-footer li { margin-bottom: var(--space-2); }
.cz-footer-bottom { text-align: center; padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.1); color: #888; }

/* Content Pages */
.cz-content-page { max-width: 800px; margin: 0 auto; padding: var(--space-16) var(--space-4); }
.cz-content-page h1 { font-size: 3rem; margin-bottom: var(--space-8); text-align: center; }
.cz-content-page h2 { margin: var(--space-8) 0 var(--space-4); }
.cz-content-page p { margin-bottom: var(--space-4); }
.cz-content-page ul { margin-bottom: var(--space-4); padding-left: var(--space-6); }
.cz-content-page li { margin-bottom: var(--space-2); }

/* Cookie Banner */
.cz-cookie-checkbox { display: none; }
.cz-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--neutral-900); color: #fff;
  padding: var(--space-4); z-index: 9999;
  display: flex; justify-content: space-between; align-items: center;
  transition: transform 0.4s ease;
}
.cz-cookie-banner p { margin: 0; font-size: 0.9rem; }
.cz-cookie-banner a { color: var(--color-primary); }
.cz-cookie-checkbox:checked ~ .cz-cookie-banner { transform: translateY(100%); pointer-events: none; }
.cz-cookie-btn { background: var(--color-primary); color: #fff; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; white-space: nowrap; margin-left: var(--space-4); }
