:root {
  --accent: #1E6BFF;
  --ink: #0A0E1A;
  --ink-2: #1A2238;
  --muted: #6E7591;
  --line: #E6E4DC;
  --line-2: #D8D4C7;
  --paper: #F7F3E9;
  --paper-2: #EFEAD8;
  --white: #FFFFFF;
  --density: 1;
  --pad-section: calc(8rem * var(--density));
  --pad-x: clamp(1.5rem, 5vw, 5rem);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; font-family: "Big Shoulders Display", "Instrument Serif", serif; font-weight: 800; letter-spacing: -0.01em; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-feature-settings: "ss01";
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad-x);
  background: rgba(247, 243, 233, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 243, 233, 0.92);
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-brand img { height: 30px; width: auto; }
.nav-dog { height: 64px !important; }
.nav-name {
  font-family: "Cinzel", "Big Shoulders Display", serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 640px) { .nav-name { display: none; } }
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2DD37C;
  box-shadow: 0 0 0 3px rgba(45, 211, 124, 0.22);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem var(--pad-x);
  gap: 1.4rem;
}
.mobile-menu a {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.mobile-menu a span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  color: var(--muted);
}
.mobile-menu .mobile-call {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.1rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: var(--pad-x);
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink);
}

/* ============== HERO — EDITORIAL ============== */
.hero { padding-top: 6rem; }

.hero-editorial {
  min-height: 100vh;
  padding: 7rem var(--pad-x) 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-editorial::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: var(--line);
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
  grid-template-rows: auto 1fr auto auto;
  gap: 2.5rem 4rem;
  align-content: space-between;
}

.hero-meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meta-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value {
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
}

.hero-headline {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  font-family: "Big Shoulders Display", "Instrument Serif", serif;
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--ink);
  align-self: center;
  text-transform: uppercase;
}
.hero-headline .line { display: block; }
.hero-headline .line-italic {
  font-style: italic;
  color: var(--accent);
  padding-left: 0.4em;
  font-weight: 900;
}
.hero-headline .rotating {
  position: relative;
  display: inline-block;
  min-height: 0.92em;
  vertical-align: top;
}
.rw-word {
  display: inline-block;
  position: absolute;
  left: 0.4em;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.35em) skewY(3deg);
  filter: blur(6px);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
  pointer-events: none;
}
.rw-word.on {
  opacity: 1;
  transform: translateY(0) skewY(0);
  filter: blur(0);
  position: relative;
}
.hero-headline .rotating::after {
  content: "WERKT.";
  visibility: hidden;
  display: inline-block;
  padding-left: 0.4em;
  font-weight: 900;
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.hero-headline .line-faded {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.32em;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  line-height: 1.3;
  padding-left: 0.4em;
  margin-top: 0.4em;
}
.hero-headline .line-faded:nth-of-type(4) {
  margin-top: 0;
}

.hero-side {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  align-self: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: none;
  justify-self: stretch;
  padding-left: 0;
  border-left: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 420px;
  flex: 1 1 300px;
}
/* mascot — right column, full height beside the headline */
.hero-mascot {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  align-self: stretch;
  justify-self: center;
  position: relative;
  width: 100%;
  max-width: 380px;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-mascot img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(0.05) contrast(1.05);
  display: block;
}
.hero-mascot-tag {
  position: absolute;
  top: 8%;
  right: -1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  pointer-events: auto;
  flex-direction: row-reverse;
  text-align: right;
}
.hmt-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ink-2);
  margin-top: 0.55rem;
}
.hmt-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.5;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  grid-row: 4 / 5;
}
.hf-num {
  font-family: "Big Shoulders Display", serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hf-num span {
  font-size: 0.55em;
  color: var(--muted);
  font-weight: 700;
}
.hf-label {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.4;
}
.hf-scroll {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.7rem;
}
.hf-scroll span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hf-scroll-line {
  width: 1px;
  height: 32px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hf-scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 50%;
  background: var(--paper);
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

/* ============== HERO — SPLIT ============== */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  padding-top: 0;
}
.hs-left {
  padding: 9rem var(--pad-x) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.hs-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.hs-title {
  font-family: "Big Shoulders Display", serif;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: uppercase;
}
.hs-title em { color: var(--accent); font-weight: 900; }
.hs-sub {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 480px;
  line-height: 1.65;
}
.hs-right {
  background: var(--ink);
  padding: 9rem 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hs-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(30, 107, 255, 0.18), transparent 60%);
}
.hs-portrait {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
}
.hs-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 2px;
}
.hs-stamp {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono", monospace;
}
.hs-stamp span:first-child {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hs-stamp-sub {
  font-size: 0.7rem;
  opacity: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* split — dog row under copy */
.hs-dog-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hs-dog {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: grayscale(0.05);
}
.hs-dog-text {
  display: flex;
  flex-direction: column;
}
.hs-dog-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hs-dog-name {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.4;
}

/* ============== HERO — PORTRAIT ============== */
.hero-portrait {
  min-height: 100vh;
  position: relative;
  padding: 0;
  color: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(30, 107, 255, 0.22), transparent 60%);
  pointer-events: none;
}
.hp-bg { display: none; }
.hp-overlay { display: none; }
.hp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 18%;
  filter: contrast(1.05) saturate(1.05);
}
.hp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(10, 14, 26, 0.86) 0%, rgba(10, 14, 26, 0.55) 50%, rgba(10, 14, 26, 0.15) 100%),
    linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.4) 100%);
}
.hp-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 9rem var(--pad-x) 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  gap: 1.4rem;
}
/* portrait — dog stage with rotating ring */
.hp-dog-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 3rem 5rem;
  overflow: hidden;
}
.hp-dog-img {
  position: relative;
  z-index: 2;
  max-width: 78%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.55));
}
.hp-dog-ring {
  position: absolute;
  inset: 6% 6% 6% 6%;
  border: 1px solid rgba(247, 243, 233, 0.18);
  border-radius: 50%;
  z-index: 1;
  animation: hpSpin 38s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-ring-text {
  position: absolute;
  inset: -1px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(247, 243, 233, 0.55);
  text-transform: uppercase;
  /* offset to top of ring */
  padding-top: 0.4rem;
}
@keyframes hpSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hp-dog-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 220px;
}
.hp-cap-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.hp-cap-text {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(247, 243, 233, 0.78);
  line-height: 1.4;
}
.hp-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 233, 0.6);
}
.hp-title {
  font-family: "Big Shoulders Display", serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--paper);
  text-transform: uppercase;
}
.hp-title em { color: var(--accent); display: inline-block; font-weight: 900; }
.hp-sub {
  font-size: 1.05rem;
  color: rgba(247, 243, 233, 0.78);
  max-width: 520px;
  line-height: 1.65;
}

/* ============== STATUS PILL ============== */
.status-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.status-pill-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
}
.status-dot.on {
  background: #2DD37C;
  box-shadow: 0 0 0 3px rgba(45, 211, 124, 0.22);
  animation: pulse 2s ease-in-out infinite;
}
.status-sep { color: var(--muted); }
.status-time { color: var(--muted); }
.status-pill-dark .status-sep,
.status-pill-dark .status-time { color: rgba(247, 243, 233, 0.5); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-primary .btn-arrow {
  transition: transform .25s;
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-2);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.btn-ghost-light {
  color: var(--paper);
  border-color: rgba(247, 243, 233, 0.35);
}
.btn-ghost-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-arrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95em;
}

/* ============== MARQUEE ============== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============== SECTION SHARED ============== */
.section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.tag-num {
  color: var(--muted);
  font-size: 0.7rem;
}
.section-title {
  font-family: "Big Shoulders Display", "Instrument Serif", serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
}
.section-title em { color: var(--accent); }
.section-sub {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.6;
}

/* ============== DIENSTEN ============== */
.diensten { background: var(--paper); }
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.dienst {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .3s;
  position: relative;
}
.dienst::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .35s ease;
}
.dienst:hover { background: var(--paper-2); }
.dienst:hover::after { width: 100%; }
.dienst-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.dienst-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding-top: 0.4rem;
}
.dienst-head svg {
  width: 48px;
  height: 48px;
  color: var(--ink);
  opacity: 0.85;
}
.dienst-title {
  font-family: "Big Shoulders Display", serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 1.5rem;
  text-transform: uppercase;
}
.dienst-desc {
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 36ch;
}
.dienst-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin-top: 0.4rem;
}
.dienst-points li {
  display: flex;
  gap: 0.45rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.dienst-bullet {
  color: var(--accent);
}
.dienst-link {
  margin-top: auto;
  padding-top: 1.2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  border-top: 1px dashed var(--line-2);
  align-self: flex-start;
  width: fit-content;
}
.dienst-link span { transition: transform .25s; }
.dienst-link:hover span { transform: translate(2px, -2px); }

/* ============== WERKWIJZE ============== */
.werkwijze {
  background: var(--ink);
  color: var(--paper);
}
.werkwijze .section-title { color: var(--paper); }
.werkwijze .section-tag { color: var(--accent); }
.werkwijze .tag-num { color: rgba(247, 243, 233, 0.5); }
.section-head-light .section-title em { color: var(--accent); }

.stappen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1rem;
}
.stap {
  padding: 2rem 2.2rem 2rem 0;
  border-left: 1px solid rgba(247, 243, 233, 0.14);
  padding-left: 2rem;
  position: relative;
}
.stap:first-child { border-left: 0; padding-left: 0; }
.stap-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.stap-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}
.stap-title {
  font-family: "Big Shoulders Display", serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  color: var(--paper);
  text-transform: uppercase;
}
.stap-desc {
  font-size: 0.98rem;
  color: rgba(247, 243, 233, 0.65);
  line-height: 1.6;
}

/* ============== OVER ============== */
.over { background: var(--paper-2); }
.over-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: center;
}
.over-portrait {
  position: relative;
}
.over-portrait-frame {
  background: var(--paper);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(10, 14, 26, 0.25);
}
.over-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}
.over-portrait-tag {
  position: absolute;
  bottom: -1.4rem;
  left: 1.4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 1.2rem;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  font-family: "JetBrains Mono", monospace;
}
.opt-name {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.opt-role {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 243, 233, 0.6);
  margin-top: 0.2rem;
}

.over-content { display: flex; flex-direction: column; gap: 1.2rem; }
.over-text {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.over-text strong { color: var(--ink); font-weight: 600; }
.over-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.over-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.ock {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.over-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

/* ============== CONTACT ============== */
.contact {
  background: var(--ink);
  color: var(--paper);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(30, 107, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.contact-tag .tag-num { color: rgba(247, 243, 233, 0.5); }
.contact-title {
  font-family: "Big Shoulders Display", serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.contact-title em { color: var(--accent); font-weight: 900; }
.contact-sub {
  font-size: 1.05rem;
  color: rgba(247, 243, 233, 0.65);
  margin-bottom: 3rem;
  max-width: 480px;
}
.contact-channels {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  background: rgba(247, 243, 233, 0.14);
  border: 1px solid rgba(247, 243, 233, 0.14);
  margin-bottom: 3rem;
}
.ch {
  padding: 2rem 1.8rem;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.4rem;
  align-items: end;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.ch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: 0;
}
.ch:hover::before { transform: translateY(0); }
.ch > * { position: relative; z-index: 1; }
.ch-label {
  grid-column: 1 / 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 233, 0.55);
  transition: color .25s;
}
.ch-value {
  grid-column: 1 / 2;
  font-family: "Big Shoulders Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-transform: uppercase;
}
.ch-arrow {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: end;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.3rem;
  color: var(--paper);
  transition: transform .25s;
}
.ch:hover .ch-label { color: rgba(255, 255, 255, 0.8); }
.ch:hover .ch-arrow { transform: translate(3px, -3px); }
.ch-primary { background: rgba(30, 107, 255, 0.06); }

.contact-coords {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 233, 0.14);
}
.contact-coords > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: var(--paper);
}
.contact-coords span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 233, 0.5);
}

/* ============== FOOTER ============== */
.footer { background: var(--paper); border-top: 1px solid var(--line); }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem var(--pad-x);
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-dog { height: 56px; width: auto; }
.footer-name {
  font-family: "Cinzel", "Big Shoulders Display", serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-meta a { color: var(--accent); }
.footer-sep { opacity: 0.4; }
.footer-bar {
  border-top: 1px solid var(--line);
  padding: 1rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-grid { gap: 2rem; }
  .hero-headline { font-size: clamp(3rem, 9vw, 8rem); }
  .hero-foot { grid-template-columns: repeat(2, 1fr); }
  .hf-scroll { display: none; }
  .stappen { grid-template-columns: 1fr; gap: 0; }
  .stap { border-left: 0; border-top: 1px solid rgba(247, 243, 233, 0.14); padding: 2rem 0; }
  .stap:first-child { border-top: 0; }
  .over-grid { grid-template-columns: 1fr; gap: 4rem; }
  .over-portrait { max-width: 420px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 0.8rem; padding-bottom: 0.8rem; }
  .hero-mascot {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 200px;
    margin: 0 auto;
  }
  .hero-mascot-tag { display: none; }
  .hero-side {
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    max-width: none;
  }
  .hero-editorial::before { display: none; }
  .hero-foot { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-split { grid-template-columns: 1fr; }
  .hs-right { padding: 4rem 2rem; }
  .diensten-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-coords { grid-template-columns: 1fr; gap: 1.2rem; }
  .dienst-points { grid-template-columns: 1fr; }
}

/* Mobile menu toggle — hidden by default, shown via JS */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

/* ============== FAQ ============== */
.faq { background: var(--paper-2); }
.faq-inner { max-width: 820px; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item[open] { background: var(--paper); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: "JetBrains Mono", monospace;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 1.4rem;
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 680px;
}

/* Footer address */
.footer-address {
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-address a { color: var(--accent); }
.footer-bar { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
@media (min-width: 768px) { .footer-bar { flex-direction: row; align-items: center; gap: 1rem; } }
