/* ─── RESET & VARIABLES ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:      hsl(160, 84%, 39%);
  --green-dark: hsl(160, 84%, 30%);
  --green-light:hsl(160, 60%, 94%);
  --orange:     hsl(25,  95%, 53%);
  --bg:         hsl(30,  20%, 99%);
  --fg:         hsl(24,  10%, 10%);
  --muted:      hsl(30,  12%, 95%);
  --muted-fg:   hsl(24,   6%, 42%);
  --border:     hsl(30,  10%, 89%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius: 14px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: hsl(30 20% 99% / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--green); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted-fg); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login { color: var(--muted-fg); font-size: 0.9rem; font-weight: 500; text-decoration: none; padding: 9px 18px; border-radius: 100px; border: 1.5px solid var(--border); transition: border-color 0.2s, color 0.2s; }
.nav-login:hover { border-color: var(--green); color: var(--green); }
.nav-cta { background: var(--orange); color: white; padding: 10px 22px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: hsl(25, 95%, 46%); }

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────────── */
.breadcrumb { padding: 16px 5%; font-size: 0.82rem; color: var(--muted-fg); }
.breadcrumb a { color: var(--muted-fg); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 6px; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
footer { background: var(--fg); color: hsl(24 6% 55%); padding: 32px 5%; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--green); text-decoration: none; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: hsl(24 6% 55%); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ─── COOKIE BANNER ──────────────────────────────────────────────────────────── */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: hsl(24,10%,10%); border-top: 1px solid hsl(24,6%,20%); padding: 20px 5%; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; box-shadow: 0 -4px 24px hsl(0 0% 0%/.2); transform: translateY(100%); transition: transform 0.4s ease; }
#cookie-banner.visible { transform: translateY(0); }
.cookie-text { flex: 1; min-width: 240px; font-size: 0.88rem; color: hsl(24,6%,70%); line-height: 1.6; }
.cookie-text strong { color: white; display: block; margin-bottom: 4px; }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept { background: var(--green); color: white; border: none; padding: 10px 22px; border-radius: 100px; font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.cookie-btn-reject { background: transparent; color: hsl(24,6%,60%); border: 1px solid hsl(24,6%,28%); padding: 10px 22px; border-radius: 100px; font-size: 0.88rem; font-weight: 500; cursor: pointer; font-family: var(--font-body); }
