/* ══════════════════════════════════════════
   GOV.FACTORY — Stylesheet
   Palette: Deep forest greens, mint accents, warm off-white
   Fonts: Playfair Display (headings) + DM Sans (body)
══════════════════════════════════════════ */

:root {
  --green-deepest:  #1a3320;
  --green-dark:     #2d5a3d;
  --green-mid:      #3d7a52;
  --green-light:    #6aab7e;
  --green-pale:     #b8dfc4;
  --green-mint:     #d4f0dc;
  --green-bg:       #eaf7ee;
  --cream:          #fafdf8;
  --white:          #ffffff;
  --text-dark:      #1a2e1e;
  --text-mid:       #3a5040;
  --text-light:     #6b8572;
  --accent:         #4caf72;
  --gold:           #c9a84c;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 12px rgba(29,83,48,0.08);
  --shadow-md:      0 8px 32px rgba(29,83,48,0.14);
  --shadow-lg:      0 20px 60px rgba(29,83,48,0.18);
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

section {
  padding-top: 7rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }


/* ── TYPOGRAPHY ── */


h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 700;
## ROME@20260818: fix distance from topmenu to the anchor to scroll in viewport
  scroll-margin-top: 80px;
}

em { font-style: italic; color: var(--green-light); }

ul {
    color: white;
    margin-top: 0em;
    margin-left: 2em;
    margin-bottom: 0em;
    text-align: left; 
    line-height: 1.15;
}

ol { color: white;
     margin-left: 2rem;
     margin-bottom: 2rem;
     text-align: left; 
     list-style-type: lower-alpha;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}


img.figuur {
  float: right;
  margin-left: 2em;
  width: 30%;
}


/* ── CARDS ── */


.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(106,171,126,0.15);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.card.featured {
  background: var(--green-dark);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.card.featured .card-icon { color: var(--green-mint); }
.card.featured h3 { color: var(--white); }
.card.featured p { color: rgba(255,255,255,0.78); }
.card.featured .card-list li { color: rgba(255,255,255,0.7); }
.card.featured .card-list li::before { color: var(--accent); }
.card.featured .card-link { color: var(--green-mint); }

.card-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.card-icon { color: var(--green-mid); }

.card h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.card p { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.card-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 0.75rem;
}

.card-link {
  display: inline-block;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.card-link:hover { color: var(--accent); }


/* ── BUTTONS ── */


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,90,61,0.35);
}
.btn-primary:hover {
  background: var(--green-deepest);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,90,61,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--green-mint);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 51, 32, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

.dropdown {
  position: absolute;
## ROME@20260613: fix distance for mouse-over transition to dropdown menu
##  top: calc(100% + 8px);
  top: calc(100% - 8px);
  left: 0;
  min-width: 220px;
  background: var(--green-deepest);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  list-style: none;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: all var(--transition);
}

.dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.hamburger { display: none; }



/* ── HERO ── */


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/header.png');
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,51,32,0.82) 0%,
    rgba(29,71,42,0.65) 50%,
    rgba(45,90,61,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: 8%;
  padding: 8rem 2rem 4rem;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--green-pale); font-style: italic; }

.hero-intro {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--green-dark);
  padding: 2.5rem 0;
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}


/* ── INTRO SECTION ── */


.intro-section {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 5rem;
  align-items: start;
}

.intro-label {
  position: sticky;
  top: 8rem;
}

.intro-label span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.intro-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}


/* ── DIENSTEN ── */


.diensten-section {
  background: var(--green-light);
}

.diensten-section em { color: var(--text-light); }

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 540px;
  margin: 1rem auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}


/* ── METHODE ── */


.methode-section {
  background: var(--cream);
  color: var(--text-mid);
}

.methode-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.methode-section h3 {
  font-size: 1.35rem;
  color: var(--green-mid);
  margin-top: 1em;
}

.methode-section h4 {
  font-size: 1.1rem;
  color: var(--green-mid);
  margin-top: 0.5em;
}

.methode-section ul {
  color: var(--text-mid);
}

.methode-text .eyebrow { color: var(--green-pale); }
.methode-text .section-title { color:var(--green-mid); margin-bottom: 1.5rem; }
.methode-text > p { color: var(--green-mid); line-height: 1.7; margin-bottom: 1rem; }
.methode-steps { margin-top: 1em; display: flex; flex-direction: column; gap: 0.8em; }

.step { display: flex; gap: 1em; align-items: flex-start; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}


.step-body li {
  color: var(--green-mid);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ── ARCHITECTUREN ── */


.architectuur-section {
  background: var(--green-light);
  color: var(--text-mid);
}

.architectuur-section .eyebrow { color: var(--text-mid); }

.architectuur-section img {
  display: block;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.architectuur-section h3 {
  font-size: 1.35rem;
  color: var(--green-mid);
  margin-top: 1em;
}

.architectuur-section h4 {
  font-size: 1.1rem;
  color: var(--green-mid);
  margin-top: 0.5em;
}


/* ── VISUAL RING ── */


.methode-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.visual-ring.outer {
  width: 380px;
  height: 380px;
  border: 1px dashed rgba(106,171,126,0.25);
}
.visual-ring.middle {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(106,171,126,0.35);
  animation-direction: reverse;
  animation-duration: 14s;
}
.visual-ring.inner {
  width: 190px;
  height: 190px;
  border: 2px solid rgba(106,171,126,0.5);
  background: rgba(45,90,61,0.3);
  animation-duration: 10s;
}

@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.visual-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  animation: rotate 10s linear infinite reverse;
}
.visual-core .dot { color: var(--accent); font-size: 1.5rem; line-height: 0.5; }



/* ── PRIORITEITEN ── */


.prioriteit-section {
  background: var(--green-mid);
  color: var(--white);
}


/* ── COMMON GROUND ── */


.commonground-section {
  background: var(--green-dark);
  color: var(--cream);
}


.commonground-section h3 {
  font-size: 1.35rem;
  color: var(--green-mid);
  margin-top: 1em;
}


.commonground-section img {
  float: right;
  margin-top: 1em;
  margin-left: 2em;
  width: 50%;
}


/* ── VISIE & MISSIE ── */


.visie-section {
  background: var(--cream);
  color: var(--white);
}

.eyebrow.light { 
  color: var(--green-pale);
}

.visie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-sm);
  gap: 1.5rem;
}

.visie-block {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(106,171,126,0.15);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.visie-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
}

.visie-block p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.missie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.missie-tags span {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.03em;
}


/* ── BEDRIJFSVOERING ── */


.bedrijfsvoering-section {
  background: var(--green-light);
  color: var(--white);
}

.bedrijfsvoering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bedrijfsvoering-block {
  background: var(--green-dark);
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(106,171,126,0.15);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  }    

.bedrijfsvoering-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
}

.bedrijfsvoering-block p {
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}


/* ── ONS TEAM ── */


.team-section {
  background: var(--cream);
  color: var(--white);
}



/* ── MVO ── */


.mvo-section {
  background: var(--green-mid);
  color: var(--white);
}


/* ── PARTNERS ── */


.partners-section {
  background: var(--green-light);
  color: var(--white);
}


.partners-section em {
  color: var(--green-dark);
}


/* ── JURIDISCH SECTION ── */


.juridisch-section {
  background: var(--green-dark);
}


.juridisch-section h3 {
  font-size: 1.35rem;
  color: var(--green-mid);
  margin-top: 1em;
}

.juridisch-section h4 {
  font-size: 1.1rem;
  color: var(--green-mid);
  margin-top: 0.5em;
}


.juridisch-section p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
 
.juridisch-section ul {
  margin-top: 0;
  margin-bottom: 0;
}

.juridisch-section ol {
  margin-top: 0;
  margin-bottom: 0;
}
 
.juridisch-section li  {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}
 

.juridisch-section a, 
.juridisch-section span {
  color: var(--green-light);
  text-decoration: none;
}

.juridisch-section a:hover { color: var(--text-light); }


.juridisch-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 5rem;
  align-items: start;
}

.juridisch-label {
  position: sticky;
  top: 8rem;
}

.juridisch-label span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.juridisch-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── CTA SECTION ── */


.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--green-mid) 100%);
  padding: 6rem 0;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}


/* ── CONTACT ── */


.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-bg);
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  font-size: 0.875rem;
}

.contact-item a, .contact-item span {
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
}
.contact-item a:hover { color: var(--green-dark); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(106,171,126,0.25);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61,122,82,0.1);
}

.form-success {
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  padding: 1rem;
  background: var(--green-mint);
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}


/* ── FOOTER ── */


.footer {
  background: var(--green-deepest);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .methode-inner { grid-template-columns: 1fr; }
  .visual-ring.outer { width: 280px; height: 280px; }
  .visual-ring.middle { width: 200px; height: 200px; }
  .visual-ring.inner { width: 130px; height: 130px; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--green-deepest);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links > li > a { font-size: 1.2rem; }
  .dropdown { position: static; opacity: 1; transform: none; pointer-events: all; display: none; }

  .hero-content { margin-left: 0; padding: 7rem 1.5rem 4rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-label { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .visie-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .strip-inner { gap: 0; }
  .strip-stat { padding: 0.5rem 1.5rem; }
  .strip-divider { height: 30px; }
}
