/* ─────────────────────────────────────────
   BV DRIEHOEK — Stylesheet
   Aesthetic: Editorial luxe · Dark paper · Gold accents
   ───────────────────────────────────────── */

:root {
  --cream: #f5f0e6;
  --cream-soft: #ede6d6;
  --paper: #faf6ed;
  --ink: #1a1814;
  --ink-soft: #2a2824;
  --ink-muted: #5a5449;
  --taupe: #a09688;
  --gold: #b8862b;
  --gold-light: #d4a94a;
  --gold-bright: #f5d87a;
  --gold-deep: #8a6418;
  --line: #d6cdb8;
  --line-dark: #3a3834;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ───── Paper texture background ───── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(26, 24, 20, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ─────────────────────────────
   NAVIGATION
   ───────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(250, 246, 237, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 205, 184, 0.4);
}

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

/* Amsterdam Lawyers button - linksboven */
.al-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem 0.45rem 0.5rem;
  background: #0d1b3d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  border: 1px solid #0d1b3d;
  flex-shrink: 0;
}

.al-button:hover {
  background: #142554;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(13, 27, 61, 0.4);
}

.al-logo-img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.al-button-text {
  white-space: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  font-size: 1.5rem;
  color: var(--gold);
  transform: translateY(1px);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.logo-text em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--gold-deep);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream) !important;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ─────────────────────────────
   HERO
   ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: 
    radial-gradient(ellipse at top right, rgba(212, 169, 74, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(184, 134, 43, 0.05), transparent 50%);
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  font-weight: 500;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 18ch;
  color: var(--ink);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}

.hero-title .accent {
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.08em;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: accentIn 1.2s var(--ease) 0.8s forwards;
}

@keyframes accentIn {
  to { transform: scaleX(1); }
}

.hero-lead {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  max-width: 55ch;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}

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

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(138, 100, 24, 0.5);
}

.btn-primary-light {
  background: var(--gold-light);
  color: var(--ink);
}

.btn-primary-light:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ─────────────────────────────
   SECTION HEADERS
   ───────────────────────────── */
.section-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}

.section-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  font-style: italic;
  font-family: var(--font-display);
}

/* ─────────────────────────────
   TRIANGLE
   ───────────────────────────── */
.triangle-section {
  padding: 7rem 0 6rem;
  background: linear-gradient(180deg, var(--paper) 0%, #f1ebde 100%);
  position: relative;
}

.triangle-stage {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.triangle-svg {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.tri-node {
  cursor: pointer;
  transition: opacity 0.8s var(--ease);
}

.tri-node text { pointer-events: none; }

.tri-node circle {
  transition: transform 0.5s var(--ease);
  transform-origin: center;
  transform-box: fill-box;
}

.tri-node:hover circle {
  transform: scale(1.04);
}

/* Fade-in on load (no transform, so SVG positions stay intact) */
.tri-node {
  animation: nodeIn 1s var(--ease) forwards;
  opacity: 0;
}

.tri-parents { animation-delay: 0.2s; }
.tri-kids { animation-delay: 0.4s; }
.tri-golden { animation-delay: 0.6s; }

@keyframes nodeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.line {
  animation: lineIn 1.5s var(--ease) 0.9s forwards;
}

@keyframes lineIn {
  to { opacity: 0.6; }
}

.arrow {
  animation: arrowIn 0.6s var(--ease) 1.8s forwards;
}

@keyframes arrowIn {
  to { opacity: 0.85; }
}

.triangle-caption {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ─────────────────────────────
   EXPLANATION / STEPS
   ───────────────────────────── */
.explanation {
  padding: 7rem 0 6rem;
  background: var(--paper);
}

.steps {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.step {
  padding: 2.5rem 2rem;
  background: var(--cream-soft);
  border-top: 2px solid var(--gold);
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold-deep);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.step h3 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.step p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.step-highlight {
  padding: 1rem 1.25rem;
  background: rgba(212, 169, 74, 0.12);
  border-left: 2px solid var(--gold);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  margin-top: 1.25rem;
}

/* ─────────────────────────────
   RESULT BLOCK
   ───────────────────────────── */
.result-block {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: var(--ink);
  color: var(--cream);
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  overflow: hidden;
}

.result-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 169, 74, 0.15), transparent 70%);
  pointer-events: none;
}

.result-header {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 500;
}

.result-header .eyebrow-line {
  background: var(--gold-light);
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--cream);
  max-width: 22ch;
}

.result-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.result-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d4ccbb;
  margin-bottom: 2rem;
  max-width: 68ch;
}

.result-intro strong { color: var(--cream); font-weight: 500; }

.result-list {
  list-style: none;
  max-width: 75ch;
}

.result-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(214, 205, 184, 0.15);
  font-size: 1rem;
  line-height: 1.6;
  color: #d4ccbb;
}

.result-list li:last-child { border-bottom: none; }

.result-list strong { color: var(--cream); font-weight: 500; }

.result-list em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.bullet {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

/* Video link inside the result list */
.video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  background: rgba(212, 169, 74, 0.1);
  border: 1px solid rgba(212, 169, 74, 0.35);
  border-radius: 100px;
  color: var(--gold-light) !important;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.005em;
  transition: all 0.3s var(--ease);
}

.video-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(212, 169, 74, 0.4);
}

.video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold-light);
  color: var(--ink);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  padding-left: 1px;
}

.video-link:hover .video-icon {
  background: var(--ink);
  color: var(--gold-light);
}

/* ─────────────────────────────
   SITUATION CARDS
   ───────────────────────────── */
.situation {
  padding: 7rem 0 6rem;
  background: linear-gradient(180deg, #f1ebde 0%, var(--paper) 100%);
}

.situation-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sit-card {
  background: var(--cream-soft);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.sit-card:not(.sit-card-parent):hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(26, 24, 20, 0.3);
}

.sit-card:not(.sit-card-parent):hover .sit-card-number,
.sit-card:not(.sit-card-parent):hover .sit-card-cta {
  color: var(--gold-light);
}

.sit-card:not(.sit-card-parent):hover .sit-card-sub {
  color: #b8b0a1;
}

.sit-card-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.4s var(--ease);
}

.sit-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.sit-card-sub {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}

.sit-card-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease);
}

.sit-card:not(.sit-card-parent):hover .sit-card-visual {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.sit-card-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.sit-card-cta {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease);
}

/* Parent card with two sub-options */
.sit-card-parent {
  cursor: default;
}

.sit-subcards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sit-sub {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  position: relative;
}

.sit-sub:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateX(4px);
}

.sit-sub:hover .arrow-small { color: var(--gold-light); }
.sit-sub:hover .sit-sub-label { color: var(--gold-light); }

.sit-sub-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  font-weight: 500;
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
}

.sit-sub h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  flex: 1;
}

.arrow-small {
  color: var(--gold-deep);
  font-size: 1.1rem;
  transition: all 0.3s var(--ease);
}

/* ─────────────────────────────
   CONTACT CTA
   ───────────────────────────── */
.contact-cta {
  padding: 7rem 2rem 7rem;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '△';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40rem;
  color: var(--gold-deep);
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.eyebrow-light { color: var(--gold-light); }
.eyebrow-light .eyebrow-line { background: var(--gold-light); }

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.contact-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d4ccbb;
  margin-bottom: 2.5rem;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

/* Three CTA cards */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.75rem 2rem;
  background: rgba(250, 246, 237, 0.03);
  border: 1px solid rgba(212, 169, 74, 0.2);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.cta-card:hover {
  background: rgba(212, 169, 74, 0.08);
  border-color: rgba(212, 169, 74, 0.5);
  transform: translateY(-4px);
}

.cta-card:hover::before {
  transform: scaleX(1);
}

.cta-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 169, 74, 0.12);
  color: var(--gold-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease);
}

.cta-card:hover .cta-icon {
  background: var(--gold-light);
  color: var(--ink);
  transform: scale(1.05);
}

.cta-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 0.9rem;
}

.cta-card h3 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.cta-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b8b0a1;
  margin-bottom: 1.5rem;
  max-width: none;
  text-align: left;
}

.cta-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 169, 74, 0.15);
  transition: color 0.3s var(--ease);
}

.arrow-tiny {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.cta-card:hover .arrow-tiny {
  transform: translateX(3px);
}

/* ─────────────────────────────
   FOOTER
   ───────────────────────────── */
.footer {
  padding: 5rem 2rem 2rem;
  background: var(--ink);
  color: var(--taupe);
  border-top: 1px solid rgba(214, 205, 184, 0.1);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(214, 205, 184, 0.12);
}

.footer-col h4.footer-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand .logo-mark {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: #b8b0a1;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 30ch;
}

.footer-site {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.footer-al-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  transition: opacity 0.3s var(--ease);
}

.footer-al-logo:hover { opacity: 0.85; }

.footer-al-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #0d1b3d;
}

.footer-al-logo span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #b8b0a1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  padding: 0.25rem 0;
}

.footer-contact a {
  color: #b8b0a1;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.footer-contact a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #70685a;
  max-width: 60ch;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.78rem;
  color: #70685a;
  white-space: nowrap;
}

/* ─────────────────────────────
   SUBPAGE STYLES
   ───────────────────────────── */
.subpage-hero {
  padding: 10rem 2rem 4rem;
  background: linear-gradient(180deg, var(--paper) 0%, #f1ebde 100%);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 169, 74, 0.1), transparent 65%);
  pointer-events: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
  transition: color 0.3s var(--ease);
}

.back-link:hover {
  color: var(--gold-deep);
}

.subpage-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 3rem 0;
}

.subpage-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.subpage-text h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}

.subpage-text .lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.subpage-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.subpage-text h2 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.subpage-text p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.subpage-text strong {
  color: var(--ink);
  font-weight: 600;
}

.subpage-triangle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.subpage-triangle svg {
  width: 100%;
  height: auto;
  max-width: 500px;
}

.highlight-box {
  padding: 1.5rem 1.75rem;
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
}

.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.highlight-box p {
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}

.service-list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-list li {
  padding: 0.85rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}

.subpage-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Subpage CTA block - three mini CTAs */
.subpage-cta-block {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mini-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.mini-cta:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateX(4px);
}

.mini-cta-primary {
  background: var(--cream-soft);
  border-color: var(--gold);
}

.mini-cta-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.mini-cta-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 169, 74, 0.15);
  color: var(--gold-deep);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.mini-cta:hover .mini-cta-icon {
  background: var(--gold-light);
  color: var(--ink);
}

.mini-cta-primary .mini-cta-icon {
  background: var(--gold-light);
  color: var(--ink);
}

.mini-cta-primary:hover .mini-cta-icon {
  background: var(--cream);
  color: var(--gold-deep);
}

.mini-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.3;
}

.mini-cta-text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: inherit;
  letter-spacing: -0.005em;
}

.mini-cta-text small {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.mini-cta:hover .mini-cta-text small {
  color: #b8b0a1;
}

.mini-cta-primary .mini-cta-text small {
  color: var(--gold-deep);
  font-weight: 500;
}

.mini-cta-primary:hover .mini-cta-text small {
  color: var(--cream);
}

/* ─────────────────────────────
   RESPONSIVE
   ───────────────────────────── */
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 7rem 1.5rem 5rem; }

  .section-header { padding: 0 1.5rem; margin-bottom: 3rem; }

  .result-block {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 3rem 1.75rem;
  }

  .subpage-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 0;
  }

  .subpage-triangle { padding: 0; }

  /* Hide the center BV Driehoek logo on tablets/mobile - Amsterdam Lawyers + hamburger-style nav */
  .logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 700px) {
  .al-button-text { display: none; }
  .al-button { padding: 0.4rem; }
  .al-logo-img { width: 32px; height: 32px; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 1rem; gap: 0.75rem; }

  .logo-text { font-size: 1.1rem; }

  .hero { padding: 6rem 1.25rem 4rem; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { justify-content: center; width: 100%; }

  .steps { padding: 0 1rem; gap: 1.5rem; }

  .step { padding: 2rem 1.5rem; }

  .result-block { padding: 2.5rem 1.5rem; }

  .situation-grid { padding: 0 1rem; gap: 1.25rem; }

  .sit-card { padding: 2rem 1.5rem; }

  .contact-cta { padding: 5rem 1.5rem; }

  .subpage-hero { padding: 8rem 1.25rem 3rem; }

  .footer { padding: 4rem 1.5rem 2rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-copy { white-space: normal; }
}

/* ───── Deep-dive strook (tussen contact-cta en footer) ───── */
.deepdive {
  background: var(--ink-soft);
  color: var(--cream);
  padding: 2.75rem 2rem;
  border-top: 1px solid rgba(212, 169, 74, 0.15);
  border-bottom: 1px solid rgba(212, 169, 74, 0.15);
}

.deepdive-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 2rem;
  align-items: center;
}

.deepdive-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.deepdive-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.deepdive-link {
  color: #d4ccbb;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212, 169, 74, 0.08);
}

.deepdive-link:last-child { border-bottom: none; }

.deepdive-link:hover {
  color: var(--gold-light);
}

.deepdive-link strong {
  font-weight: 600;
  color: var(--cream);
  transition: color 0.3s var(--ease);
  font-size: 0.98rem;
}

.deepdive-link:hover strong {
  color: var(--gold-light);
}

.deepdive-link .dd-desc {
  color: var(--taupe);
  font-size: 0.92rem;
  flex: 1;
  min-width: 0;
}

.deepdive-link .dd-arrow {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-style: italic;
  font-family: var(--font-display);
  white-space: nowrap;
  transition: transform 0.3s var(--ease);
  margin-left: auto;
}

.deepdive-link:hover .dd-arrow {
  transform: translateX(3px);
}

.deepdive-link .dd-sep {
  color: var(--gold-deep);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .deepdive { padding: 2.25rem 1.5rem; }
  .deepdive-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
