:root {
  --background: hsl(260 20% 98%);
  --foreground: hsl(260 35% 15%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(260 35% 15%);
  --primary: hsl(310 70% 55%);
  --primary-foreground: hsl(0 0% 100%);
  --muted: hsl(260 15% 96%);
  --muted-foreground: hsl(260 15% 45%);
  --accent: hsl(310 30% 95%);
  --accent-foreground: hsl(310 70% 55%);
  --border: hsl(260 20% 90%);
  --ring: hsl(310 70% 55%);
  --success: hsl(145 65% 40%);
  --success-foreground: hsl(145 80% 98%);
  --warning: hsl(35 90% 50%);
  --warning-foreground: hsl(35 90% 98%);
  --error: hsl(0 70% 50%);
  --error-foreground: hsl(0 70% 98%);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: hsl(260 20% 98%);
  color: hsl(260 35% 15%);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 4rem;
  border-bottom: 1px solid var(--border);
  background: hsla(260 20% 98% / 0.95);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .header-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0 2rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.logo-text { font-size: 1.125rem; font-weight: 700; }

.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted-foreground);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--accent); color: var(--accent-foreground); }
.nav-link.active { background: var(--accent); color: var(--accent-foreground); }

.mobile-menu-btn { display: flex; padding: 0.5rem; background: none; border: none; color: var(--foreground); }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 16rem; height: 100vh;
  background: var(--card); z-index: 60;
  transition: right 0.3s ease;
  padding: 1.5rem;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 55; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.mobile-nav-link {
  padding: 0.625rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted-foreground);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--accent); color: var(--accent-foreground);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
}
.footer-inner {
  max-width: 72rem; margin: 0 auto; padding: 2rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
@media (min-width: 640px) { .footer-inner { padding: 2rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 2rem 2rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.footer-brand span { font-size: 0.875rem; font-weight: 600; }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; }
.footer-nav a:hover { color: var(--primary); }
.footer-copy {
  width: 100%; border-top: 1px solid var(--border); padding-top: 1rem;
  text-align: center; font-size: 0.75rem; color: var(--muted-foreground);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  border: none; transition: opacity 0.2s;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  background: transparent; color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--accent); }
.btn-ghost { background: transparent; color: var(--foreground); padding: 0.5rem 1rem; }
.btn-ghost:hover { background: var(--accent); }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Cards */
.card {
  background: var(--card); border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-0.25rem); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

/* Badge */
.badge {
  display: inline-block; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
  background: var(--accent); color: var(--accent-foreground);
}

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-label .required { color: var(--primary); }
.form-input, .form-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 1px solid var(--border); border-radius: 0.5rem;
  font-size: 0.875rem; font-family: inherit;
  background: var(--card); color: var(--foreground);
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--ring);
  box-shadow: 0 0 0 2px hsla(310 70% 55% / 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Star Rating */
.star-rating { display: flex; gap: 0.125rem; }
.star-rating svg { width: 1rem; height: 1rem; }
.star-filled { color: #facc15; }
.star-empty { color: var(--border); }

/* Main content padding */
.main-content { padding-top: 4rem; }

/* Utility */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
