/* =========================================================
   Pariz Management BV — huisstijl
   Navy #121A34 · Grey #969798 · White #FFFFFF
   ========================================================= */

:root {
  --navy:        #121a34;
  --navy-90:     #1b2647;
  --navy-80:     #28365e;
  --grey:        #969798;
  --grey-light:  #c9cacb;
  --bg:          #ffffff;
  --bg-alt:      #f5f6f8;
  --ink:         #1d2436;
  --ink-soft:    #5a6172;
  --line:        #e4e6eb;

  --maxw: 1140px;
  --radius: 6px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-weight: 600;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.brand-logo { height: 46px; width: auto; }

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width 0.25s var(--ease);
}

.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}

.lang-switch button {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  background: transparent;
  color: var(--grey);
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch button:hover { color: var(--navy); }

.lang-switch button.is-active {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--navy);
  transition: 0.25s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 480px at 78% -10%, rgba(40,54,94,0.18), transparent 60%),
    linear-gradient(160deg, #0e1528 0%, var(--navy) 55%, #1a2444 100%);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  background-image: url("../assets/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  filter: grayscale(1) brightness(3);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 118px 28px 124px;
  max-width: 820px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--grey-light);
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  font-weight: 600;
  margin-bottom: 0.55em;
}

.hero-lead {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2.2em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-primary {
  background: #fff;
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--bg-alt); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 16px;
}

.section-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 52px; }

h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.grid-2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.prose p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px 34px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(18, 26, 52, 0.4);
  border-color: var(--grey-light);
}

.card-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 18px;
}

.card h3 { font-size: 1.22rem; margin-bottom: 0.5em; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Approach / values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 40px;
}

.value h3 {
  font-size: 1.1rem;
  padding-left: 16px;
  position: relative;
}
.value h3::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 4px; height: 1em;
  background: var(--navy);
  border-radius: 2px;
}
.value p { color: var(--ink-soft); margin: 0; padding-left: 16px; font-size: 0.98rem; }

/* ---------- Contact ---------- */
.section-contact {
  background:
    linear-gradient(160deg, #0e1528 0%, var(--navy) 60%, #1a2444 100%);
  color: #fff;
  text-align: center;
}
.section-contact h2 { color: #fff; }
.section-contact .section-eyebrow { color: var(--grey-light); }

.contact-inner { max-width: 640px; margin: 0 auto; }

.contact-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 36px 72px;
  margin-top: 14px;
  text-align: left;
}
.contact-block { display: flex; flex-direction: column; }
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--grey-light);
  margin-bottom: 8px;
}
.contact-label--spaced { margin-top: 22px; }
.contact-value {
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
a.contact-link {
  align-self: flex-start;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s var(--ease);
}
a.contact-link:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0c1222;
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tagline {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 0.9rem; }
.footer-col-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-light);
  margin-bottom: 5px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* Logo, talenwisselaar en hamburger bovenop het uitschuivende paneel houden.
     .main-nav is een kind van de header, dus dit speelt binnen dezelfde stacking-context. */
  .brand, .lang-switch, .nav-toggle { position: relative; z-index: 2; }

  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1; /* onder de header-bediening, zodat die zichtbaar blijft */
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 84px 0 8px; /* ruimte vrijhouden voor de 76px hoge header */
    margin: 0;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0s linear 0.3s;
    box-shadow: 0 20px 40px -24px rgba(18, 26, 52, 0.4);
  }
  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s var(--ease), visibility 0s;
  }
  .main-nav a { padding: 14px 28px; }
  .main-nav a::after { display: none; }

  .nav-toggle { display: flex; margin-left: auto; }
  .lang-switch { order: 2; }

  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 26px; }

  .section { padding: 70px 0; }
  .hero-inner { padding: 84px 28px 90px; }
  .hero::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}
