/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Base */
:root {
  --navy:   #0d1b2a;
  --blue:   #1b4f8a;
  --accent: #c8a96e;
  --light:  #f7f8fa;
  --muted:  #6b7280;
  --border: #e5e7eb;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--muted); }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* Nav */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.875rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  background: linear-gradient(160deg, #f7f8fa 0%, #fff 60%);
}

.hero-inner { max-width: 700px; }

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.75rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.01em;
}

.btn-cta {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, opacity 0.2s;
  text-decoration: none;
}

.btn-cta:hover { background: var(--blue); text-decoration: none; }

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 2.5rem 0;
}

/* About strip */
.about-strip {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0;
}

.about-strip h2 { color: #fff; margin-bottom: 1rem; }
.about-strip p { color: #94a3b8; max-width: 640px; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p { font-size: 0.8rem; color: var(--muted); }

.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--muted); }
.footer-links a:hover { color: var(--navy); }

/* Page content (privacy / contact) */
.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
.page-hero p { margin-top: 0.5rem; font-size: 0.9rem; }

.page-body { flex: 1; padding-bottom: 4rem; }

.prose { max-width: 720px; }
.prose h2 { margin: 2.25rem 0 0.75rem; color: var(--navy); }
.prose h3 { margin: 1.5rem 0 0.5rem; color: var(--navy); }
.prose p  { margin-bottom: 1rem; line-height: 1.75; }
.prose ul { margin: 0.75rem 0 1rem 1.5rem; }
.prose li { color: var(--muted); margin-bottom: 0.4rem; line-height: 1.7; }
.prose a  { color: var(--blue); }

/* Contact card */
.contact-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 480px;
}

.contact-card h2 { margin-bottom: 0.5rem; }
.contact-card p  { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-item svg { width: 20px; height: 20px; stroke: var(--blue); flex-shrink: 0; }

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #cbd5e1;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 200;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner a { color: var(--accent); }

.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-ghost { background: transparent; color: #94a3b8; border: 1px solid #334155; }

/* Responsive */
@media (max-width: 600px) {
  .nav-links { gap: 1.25rem; }
  .hero { padding: 4rem 0 3.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
