:root {
  --primary: 141 72% 22%;
  --primary-foreground: 0 0% 100%;
  --secondary: 43 96% 44%;
  --secondary-foreground: 222 47% 11%;
  --accent: 141 30% 93%;
  --accent-foreground: 141 72% 22%;
  --destructive: 0 74% 42%;
  --destructive-foreground: 0 0% 100%;
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --muted: 210 20% 96%;
  --muted-foreground: 215 16% 47%;
  --border: 213 27% 87%;
  --input: 213 27% 87%;
  --ring: 141 72% 22%;
  --radius: 0.375rem;
  --app-font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --app-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--app-font-sans);
  font-feature-settings: "liga" 1, "calt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  color: hsl(222 47% 11%);
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.font-serif { font-family: var(--app-font-serif); }
.font-sans { font-family: var(--app-font-sans); font-optical-sizing: auto; }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
  display: none;
}
.mobile-overlay.active { display: block; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 80%; max-width: 24rem; z-index: 50;
  background: #fff; border-left: 1px solid hsl(213 27% 87%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.active { transform: translateX(0); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-answer.active {
  max-height: 500px; opacity: 1;
}
.faq-chevron {
  transition: transform 0.3s ease;
}
.faq-chevron.active {
  transform: rotate(180deg);
}

.rating-bar {
  transition: width 0.6s ease;
}

@media (min-width: 768px) {
  .mobile-overlay, .mobile-drawer, .mobile-toggle { display: none !important; }
}
