/* ═══════════════════════════════════════════════════════
   🎨 KLEUREN — pas hier alles aan, de rest past zich aan
   ═══════════════════════════════════════════════════════ */
:root {
  /* Pas hier alle kleuren aan, de rest past zich aan */
  --navy:         #0f1f35;            /* Header, footer, contactblok */
  --navy-mid:     rgba(15,31,53,.85); /* Hero-achtergrond (lichter navy) */
  --accent:       #d4930a;            /* Knoppen, accenten, hover (met navy-tekst) */
  --accent-donker: #865a04;           /* Goud als tekst op lichte achtergronden */
  --accent-light: #f0b429;            /* Highlights in donkere secties */
  --cream:        #f7f4ef;            /* Pagina-achtergrond */
  --text:         #2a2a2a;            /* Normale tekst */
  --muted:        #5f6b7a;            /* Subtiele/grijze tekst */
  --border:       #e2ddd6;            /* Randen en scheidingslijnen */
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* ── NO-JS FALLBACK ── */
/* Zichtbaar alleen als JavaScript uitstaat; garandeert nav + contact zonder JS. */
.noscript-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: .8rem 1rem;
  font-size: .85rem;
}

.noscript-bar a { color: var(--accent-light); text-decoration: none; }
.noscript-bar a:hover { text-decoration: underline; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  gap: .75rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.logo-main {
  font-family: 'DM Serif Display', serif;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.logo-sub {
  color: var(--accent-light);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

nav { display: flex; gap: .15rem; flex-wrap: wrap; justify-content: center; }

nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  padding: .45rem .75rem;
  border-radius: 4px;
  transition: background .18s, color .18s;
  letter-spacing: .02em;
}

nav a:hover, nav a.active {
  background: var(--accent);
  color: var(--navy);
}

nav a:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

/* ── FOOTER ── */
footer {
  background: #080f1a;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: .8rem;
}

footer p { margin-bottom: .5rem; }
footer p:last-child { margin-bottom: 0; }

footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--accent-light); }

/* ── HOME: HERO ── */
.hero {
  background: var(--navy-mid);
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before, .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,147,10,.06);
  pointer-events: none;
}

.hero::after, .page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero::after { height: 60px; }
.page-hero::after { height: 50px; }

.hero-inner, .page-hero-inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-inner { max-width: 720px; text-align: center; }
.page-hero-inner { max-width: 1100px; }

.hero-eyebrow, .page-hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
}

.hero-eyebrow { margin-bottom: 1.4rem; }
.page-hero-eyebrow { margin-bottom: 1rem; }

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--accent-light); }

.hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  padding: .85rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: background .2s, transform .2s;
}

.hero-cta:hover { background: var(--accent-light); transform: translateY(-2px); }
.hero-cta:active { transform: scale(.95); }
.hero-cta:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

/* ── HOME: SECTION WRAPPER ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-donker);
  margin-bottom: .6rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ── HOME: ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: .975rem;
}

.about-signature {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.about-signature strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.about-signature span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-donker);
}

.about-badge {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.about-badge::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .18;
}

.about-badge .year {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: .4rem;
}

.about-badge .year-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}

.about-badge ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }

.about-badge ul li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.about-badge ul li::before {
  content: '✓';
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ── HOME: DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0 2rem; }

/* ── HOME: SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width .3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: transparent;
}

.service-card:active { transform: scale(.98); }
.service-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.service-card:hover::after { width: 100%; }

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .5rem;
}

.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── HOME: CONTACT SECTION ── */
.contact-section { background: var(--navy); padding: 6rem 2rem; }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-inner .section-label { color: var(--accent-light); }
.contact-inner .section-title { color: #fff; }
.contact-inner .section-intro { color: rgba(255,255,255,.65); margin-bottom: 0; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item-text { display: flex; flex-direction: column; gap: .15rem; }

.contact-item-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-light);
}

.contact-item-value { color: rgba(255,255,255,.88); font-size: .95rem; }
.contact-item-value a { color: rgba(255,255,255,.88); text-decoration: none; }
.contact-item-value a:hover { color: var(--accent-light); }

/* ── SUBPAGE: HERO ── */
.page-hero {
  background: var(--navy-mid);
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: rgba(255,255,255,.75); }

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
}

/* ── SUBPAGE: CONTENT LAYOUT ── */
.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── SUBPAGE: ARTICLE ── */
article h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .75rem;
  margin-top: 2rem;
}

article h2:first-child { margin-top: 0; }

article p {
  color: #444;
  line-height: 1.85;
  font-size: .975rem;
  margin-bottom: 1.1rem;
}

.challenge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1rem 0 1.5rem;
}

.challenge-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}

.challenge-list li::before {
  content: '→';
  color: var(--accent-donker);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.fun-fact {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.75rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.fun-fact-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: .6rem;
}

.fun-fact p {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.info-block {
  background: rgba(212,147,10,.08);
  border: 1px solid rgba(212,147,10,.25);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
}

.info-block p { font-size: .88rem; margin-bottom: 0; }

/* ── SUBPAGE: SIDEBAR ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: .35rem; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .75rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: .875rem;
  color: var(--muted);
  transition: background .18s, color .18s;
  outline: none;
}

.sidebar-nav a:hover { background: var(--cream); color: var(--navy); }
.sidebar-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.sidebar-nav a.active {
  background: rgba(212,147,10,.1);
  color: var(--accent-donker);
  font-weight: 600;
}

.contact-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.5rem;
  color: #fff;
}

.contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: .75rem;
}

.contact-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.contact-card a.btn {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--navy);
  text-decoration: none;
  padding: .7rem 1rem;
  border-radius: 4px;
  font-size: .875rem;
  font-weight: 600;
  transition: background .2s;
}

.contact-card a.btn:hover { background: var(--accent-light); }
.contact-card a.btn:active { transform: scale(.95); }
.contact-card a.btn:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

.contact-card .phone {
  display: block;
  text-align: center;
  margin-top: .6rem;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  text-decoration: none;
}

.contact-card .phone:hover { color: var(--accent-light); }

/* ── SUBPAGE: END-OF-ARTICLE CTA ── */
.end-cta { margin-top: 2.5rem; text-align: center; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > *, .page-hero-inner > * {
  animation: fadeUp .55s ease both;
}

.hero-inner > *:nth-child(1),
.page-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2),
.page-hero-inner > *:nth-child(2) { animation-delay: .15s; }
.hero-inner > *:nth-child(3),
.page-hero-inner > *:nth-child(3) { animation-delay: .25s; }
.hero-inner > *:nth-child(4)      { animation-delay: .35s; }

/* ── RESPONSIVE ── */
@media (min-width: 820px) {
  .header-inner { flex-direction: row; height: 70px; padding: 0 2rem; gap: 0; justify-content: space-between; align-items: center; }
  nav { justify-content: flex-start; }
  .about-grid, .contact-inner { grid-template-columns: 1fr 1fr; }
  .content-wrapper { grid-template-columns: 1fr 320px; }
  .sidebar { position: sticky; top: 90px; }
  .hero { padding: 5rem 2rem 4rem; }
}