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

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #1B3060;
  --navy-deep:  #0F1E3D;
  --gold:       #C9A44A;
  --gold-light: #E8C97A;
  --ivory:      #F8F6F1;
  --white:      #FFFFFF;
  --text:       #2C2C2C;
  --text-mid:   #666666;
  --text-light: #999999;
  --border:     #E2E0DA;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-py: 96px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 3px;
}

.nav__logo-sub {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--navy); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 3px;
  transition: background 0.2s;
}

.nav__cta:hover { background: var(--navy-deep); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,74,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Gold accent — top right */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,74,0.12);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,164,74,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── Pillars strip ───────────────────────────────────────────── */
.pillars {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.pillars__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.pillar {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar:last-child { border-right: none; }

.pillar__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.pillar__desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Section header ──────────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-header__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  max-width: 560px;
}

.section-header__title.center { text-align: center; max-width: 100%; }

.section-header__sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 16px;
}

/* ─── Services ────────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,48,96,0.1);
}

.service-card__num {
  font-family: var(--serif);
  font-size: 36px;
  color: rgba(201,164,74,0.3);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.service-card:hover .service-card__link { gap: 12px; }

.service-card__link::after {
  content: '→';
  color: var(--gold);
}

/* ─── Intro / About teaser ────────────────────────────────────── */
.intro {
  padding: var(--section-py) 0;
  background: var(--white);
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__visual {
  background: var(--navy);
  border-radius: 2px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.intro__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,74,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.intro__visual-label {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

.intro__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
}

.intro__body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ─── Werkwijze ────────────────────────────────────────────────── */
.werkwijze {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.werkwijze__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.step {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}

.step.step--active::before { background: var(--gold); }

.step__num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.step__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.step__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,74,0.15);
  pointer-events: none;
}

.cta-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  max-width: 520px;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--gold);
}

.cta-banner__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,164,74,0.25);
  padding: 48px 0 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 48px;
}

.footer__logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
}

.footer__logo-sub {
  font-size: 8px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer__nav-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__nav-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__nav-link:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars__inner { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .services__grid { grid-template-columns: 1fr; }
  .intro__inner { grid-template-columns: 1fr; }
  .intro__visual { display: none; }
  .werkwijze__steps { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__top { flex-direction: column; }
}

@media (max-width: 600px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__links { gap: 20px; }
  .hero__inner { padding: 0 20px; padding-top: 32px; padding-bottom: 80px; }
  .werkwijze__steps { grid-template-columns: 1fr; }
  .nav__link { display: none; }
}
