/* ══════════════════════════════════════════
   Brussels Notary — Shared Design System
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --gold:       #b89b5e;
  --gold-light: #d4bc8a;
  --gold-dark:  #8a7040;
  --ink:        #1a1713;
  --ink-soft:   #2e2a24;
  --paper:      #f8f5ef;
  --paper-dark: #ede9e0;
  --cream:      #faf8f3;
  --grey:       #7a7265;
  --grey-light: #bab5ac;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
p { line-height: 1.8; }
a { color: inherit; }

.label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--grey);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border: 1px solid var(--paper-dark);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: rgba(26,23,19,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,155,94,0.15);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: #f8f5ef; letter-spacing: 0.05em; line-height: 1.1; }
.nav-logo-name span { color: #b89b5e; }
.nav-logo-sub { font-family: 'Jost', sans-serif; font-size: 0.55rem; font-weight: 500; letter-spacing: 0.22em; color: #7a7265; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #bab5ac; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #b89b5e; }

/* Language switcher */
.lang-switcher { display: flex; gap: 6px; margin-left: 16px; }
.lang-switcher a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #7a7265;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.2s;
}
.lang-switcher a:hover { color: #b89b5e; border-color: rgba(184,155,94,0.3); }
.lang-switcher a.active { color: #b89b5e; border-color: #b89b5e; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.burger span { display: block; width: 24px; height: 2px; background: #f8f5ef; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(26,23,19,0.98); backdrop-filter: blur(16px);
  z-index: 99; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; padding: 40px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: #f8f5ef; text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: #b89b5e; }
.mobile-menu .mob-cta { font-family: 'Jost', sans-serif !important; font-size: 0.85rem !important; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold); color: var(--ink) !important; padding: 14px 36px; border-radius: 2px; }
.mobile-lang { display: flex; gap: 10px; margin-top: 8px; }
.mobile-lang a { font-family: 'Jost', sans-serif !important; font-size: 0.85rem !important; color: #7a7265 !important; border: 1px solid rgba(184,155,94,0.3); padding: 6px 14px !important; border-radius: 2px; }
.mobile-lang a.active { color: #b89b5e !important; border-color: #b89b5e; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 100px 80px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--grey);
}
.breadcrumbs a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--grey-light); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--ink);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(184,155,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .label { margin-bottom: 16px; display: block; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--paper); font-weight: 300; max-width: 700px; margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: var(--grey-light); font-size: 1.05rem; max-width: 560px; line-height: 1.8; }

/* ── SECTION BASE ── */
.section { padding: 100px 80px; }
.section-header { margin-bottom: 60px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--ink); }
.section-header p { margin-top: 16px; font-size: 1rem; color: var(--grey); max-width: 540px; line-height: 1.8; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 80px 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.9rem; color: #bab5ac; line-height: 1.8; max-width: 280px; margin-top: 16px; }
.footer-col h4 { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list li { font-size: 0.88rem; color: #bab5ac; display: flex; align-items: flex-start; gap: 8px; }
.footer-list a { color: #bab5ac; text-decoration: none; transition: color 0.2s; }
.footer-list a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .copy { font-size: 0.78rem; color: #7a7265; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: #7a7265; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .breadcrumbs { padding: 96px 40px 0; }
  .page-hero { padding: 130px 40px 70px; }
  .section { padding: 80px 40px; }
  footer { padding: 70px 40px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 70px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { top: 70px; }
  .breadcrumbs { padding: 82px 20px 0; font-size: 0.75rem; }
  .page-hero { padding: 110px 20px 56px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .section { padding: 60px 20px; }
  footer { padding: 56px 20px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
