:root {
  --cream: #F5F2EC;
  --cream-dark: #EFECE5;
  --ink: #1A1A1A;
  --ink-light: #444444;
  --ink-faint: #888;
  --green: #2E7D5E;
  --green-pale: #E8F5EF;
  --border: rgba(0,0,0,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--font-body); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 48px; display: flex; justify-content: space-between;
  align-items: center; transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(245,242,236,0.96); backdrop-filter: blur(12px);
  padding: 16px 48px; border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink); opacity: 0.6;
  transition: opacity 0.2s; background: none; border: none; cursor: pointer;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--ink); color: var(--cream); font-family: var(--font-body);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px; border: none; cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: var(--green); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }
.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu-link {
  font-family: var(--font-display); font-size: 36px; font-weight: 300;
  color: white; letter-spacing: 2px; cursor: pointer; background: none; border: none;
}
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: white; font-size: 32px; cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 40px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  background: var(--cream);
}
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-body); font-size: 12px; color: var(--ink-faint); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-family: var(--font-body); font-size: 12px; color: #aaa; }

/* LEGAL PAGE */
.legal-page { padding: 160px 48px 120px; max-width: 900px; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.1; margin-bottom: 8px; }
.legal-page h1 em { font-style: italic; color: var(--green); }
.legal-meta { font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); margin-bottom: 60px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-page h2 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin: 48px 0 16px; }
.legal-page h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; margin: 32px 0 12px; }
.legal-page p { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: var(--ink-light); margin-bottom: 16px; }
.legal-page ul { padding-left: 0; margin-bottom: 20px; list-style: none; }
.legal-page ul li { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: var(--ink-light); padding: 6px 0; padding-left: 20px; position: relative; }
.legal-page ul li::before { content: "→"; color: var(--green); position: absolute; left: 0; }
.legal-highlight { background: var(--green-pale); border-left: 3px solid var(--green); padding: 20px 24px; margin: 24px 0; }
.legal-highlight p { margin-bottom: 0; color: var(--ink); }
.gdpr-commitments { display: flex; flex-direction: column; gap: 1px; background: var(--border); margin: 40px 0; }
.gdpr-commitment { background: var(--cream-dark); padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start; }
.gdpr-commitment-icon { font-size: 24px; flex-shrink: 0; }
.gdpr-commitment-title { font-family: var(--font-display); font-size: 18px; font-weight: 400; margin-bottom: 6px; }
.gdpr-commitment-desc { font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); line-height: 1.6; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); opacity: 0.5; transition: opacity 0.2s; cursor: pointer; margin-bottom: 48px; background: none; border: none; }
.back-link:hover { opacity: 1; }
.legal-contact-box { background: var(--cream-dark); padding: 32px 36px; margin: 40px 0; }
.legal-contact-box p { margin-bottom: 8px; }
.legal-contact-box a { color: var(--green); }
.data-response-note { margin-top: 16px; font-size: 13px; color: var(--ink-faint); }
.legal-inline-link { color: var(--green); font-family: var(--font-body); font-size: 15px; text-decoration: underline; }

@media (max-width: 768px) { .legal-page { padding: 120px 24px 80px; } }
