:root {
  --bg: #FAF7F2;
  --card: #fff;
  --text: #2C2418;
  --muted: #6B5E4F;
  --light: #F0EBE3;
  --accent: #C4784A;
  --accent-hover: #B06A3E;
  --accent-light: #F5E6DB;
  --border: #E4DDD3;
  --serif: 'Playfair Display', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; padding: 18px 24px; gap: 24px; }
.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
  flex: 1;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 500; padding: 8px 14px; font-size: 14px; }

.btn-primary, .btn-ghost {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { color: var(--text); border: 1px solid var(--border); background: transparent; }
.btn-ghost:hover { background: var(--light); }
.lg { padding: 14px 28px; font-size: 16px; }

/* Hero */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--light) 100%);
  text-align: center;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Features */
.features { padding: 80px 0; }
.features h2,
.pricing h2 {
  font-family: var(--serif);
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -1px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--card);
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44,36,24,0.08);
}
.feature .ico { font-size: 40px; margin-bottom: 14px; }
.feature h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing {
  padding: 80px 0;
  background: var(--card);
}
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.plan-yearly {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-top: -16px;
  margin-bottom: 20px;
}
.plan {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  background: var(--bg);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--accent);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(196,120,74,0.15);
  transform: translateY(-12px);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 99px;
  text-transform: uppercase;
}
.plan-name { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 14px; }
.plan-price { font-family: var(--serif); font-size: 42px; font-weight: 700; margin-bottom: 24px; }
.plan-price span { font-size: 14px; color: var(--muted); font-weight: 400; }
.plan ul { list-style: none; text-align: left; margin-bottom: 28px; flex: 1; }
.plan ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.plan ul li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.plan ul li:last-child { border: 0; }

/* Footer */
.footer {
  background: #3B3229;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 40px;
  text-align: center;
}
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer p { margin-bottom: 8px; font-size: 13px; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 700px) {
  .hero h1 { font-size: 40px; }
  .nav-links { gap: 6px; }
  .nav-links a { padding: 6px 8px; font-size: 13px; }
  .plan.featured { transform: none; }
}

/* ─── Cookie Banner ──────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(44,36,24,0.15);
  padding: 20px 24px;
  max-width: 720px;
  margin: 0 auto;
  animation: cookieSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes cookieSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-content {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cookie-text { flex: 1; min-width: 0; }
.cookie-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-text a { color: var(--accent); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions button {
  padding: 9px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: all 0.2s;
}
.cookie-actions .btn-primary {
  background: var(--accent);
  color: #fff;
}
.cookie-actions .btn-primary:hover { background: var(--accent-hover); }
.cookie-actions .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.cookie-actions .btn-ghost:hover { background: var(--light); }

@media (max-width: 600px) {
  .cookie-content { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-actions { justify-content: flex-end; }
}
