/* ====================================================================
   CARAAD — Concept design system v2
   Richting: rustig, redactioneel, typografie-gedreven.
   Geen schaduwen, geen gradiënten — alleen haarlijnen,
   papierwit en één ingehouden accent.
   ==================================================================== */

:root {
    --serif: 'Newsreader', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;

    --ink: #10242F;            /* diep inktblauw, bijna zwart */
    --ink-soft: #43555F;       /* zachte tekstkleur */
    --ink-mute: #8A969D;       /* bijschriften, labels */
    --paper: #FBFAF7;          /* warm papierwit */
    --paper-tint: #F5F4EF;     /* net iets donkerder papier */
    --hairline: rgba(16, 36, 47, 0.14);
    --accent: #007FAA;         /* merkkleur — spaarzaam gebruikt */
    --accent-soft: #9CC5DC;    /* lichtblauw uit het beeldmerk */
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 56px);
}

a { color: inherit; }

/* === Gedeelde bouwstenen ============================================ */
.overline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.overline::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--serif);
    font-optical-sizing: auto;
    font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-top: 18px;
    text-wrap: balance;
}

.link-quiet {
    font-size: 0.84rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--hairline);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.link-quiet::after {
    content: '\2192';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.link-quiet:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.link-quiet:hover::after { transform: translateX(4px); }

.link-back {
    font-size: 0.84rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--hairline);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.link-back::before {
    content: '\2190';
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.link-back:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.link-back:hover::before { transform: translateX(-4px); }

.btn-primary {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 38px;
    transition: background 0.25s ease;
}

.btn-primary:hover { background: var(--accent); }

.skip-link {
    position: fixed;
    top: -100%;
    left: 24px;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 22px;
    font-size: 0.8rem;
    text-decoration: none;
    z-index: 100;
    transition: top 0.25s ease;
}

.skip-link:focus { top: 0; }

/* === Microbar: vestigingen + telefoon =============================== */
.microbar {
    border-bottom: 1px solid var(--hairline);
}

.microbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.microbar-offices span + span::before {
    content: '·';
    margin: 0 10px;
    color: var(--hairline);
}

.microbar a {
    text-decoration: none;
    color: var(--ink-mute);
    transition: color 0.25s ease;
}

.microbar a:hover { color: var(--accent); }

/* === Hoofdnavigatie ================================================== */
.site-header {
    border-bottom: 1px solid var(--hairline);
    background: var(--paper);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
}

.site-nav .logo img {
    height: 42px;
    display: block;
}

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

.nav-links a {
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: var(--ink);
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.is-active {
    border-bottom-color: var(--ink);
}

.nav-contact {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    border: 1px solid var(--ink) !important;
    padding: 11px 26px !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.nav-contact:hover {
    background: var(--ink);
    color: var(--paper) !important;
}

/* === Hero (homepage) ================================================= */
.hero {
    display: flex;
    flex-direction: column;
    min-height: min(calc(100vh - 156px), 820px);
}

/* flex-kinderen met `margin: 0 auto` krimpen anders tot inhoudsbreedte */
.hero > .container { width: 100%; }

.hero-main {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
    padding: clamp(40px, 6vh, 72px) 0 clamp(36px, 5vh, 56px);
}

.hero-copy .overline {
    margin-bottom: clamp(24px, 3.5vh, 40px);
}

.hero-copy h1 {
    font-family: var(--serif);
    font-optical-sizing: auto;
    font-size: clamp(2.4rem, 1.5rem + 3.2vw, 4.1rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 24ch;
    text-wrap: balance;
    margin-bottom: clamp(22px, 3vh, 32px);
}

.hero-copy h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-copy .lede {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: clamp(28px, 4vh, 40px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

/* Beeldmerk-gravure — abstracte wijzerplaat i.p.v. foto */
.hero-art {
    max-width: 460px;
    width: 100%;
    justify-self: end;
}

.hero-art svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-art .ticks {
    transform-box: fill-box;
    transform-origin: center;
    animation: dialspin 240s linear infinite;
}

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

/* Beeldmerk-ring tekent zichzelf: één doorlopende slag met de klok mee.
   Licht (12u → opening) versnelt, donker (opening → 12u) remt af. */
.hero-art .arc-light {
    animation: drawArcLight 0.9s cubic-bezier(0.55, 0, 0.85, 0.55) 0.5s both;
}

.hero-art .arc-dark {
    animation: drawArcDark 0.85s cubic-bezier(0.15, 0.45, 0.25, 1) 1.4s both;
}

@keyframes drawArcLight {
    from { stroke-dasharray: 0 360; }
    to   { stroke-dasharray: 166.5 193.5; }
}

@keyframes drawArcDark {
    from { stroke-dasharray: 0 360; }
    to   { stroke-dasharray: 163.5 196.5; }
}

/* Kerncijfers — haarlijnregel, geen animatie */
.hero-facts {
    border-top: 1px solid var(--hairline);
    padding: clamp(22px, 3vh, 32px) 0;
    display: flex;
    gap: clamp(40px, 6vw, 96px);
    flex-wrap: wrap;
}

.fact .fact-number {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
}

.fact .fact-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* === Paginakop (subpagina's) ========================================= */
.page-head {
    padding: clamp(56px, 9vh, 96px) 0 clamp(44px, 6vh, 72px);
}

.page-head h1 {
    font-family: var(--serif);
    font-optical-sizing: auto;
    font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.7rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    max-width: 22ch;
    text-wrap: balance;
    margin-top: clamp(20px, 3vh, 32px);
}

.page-head h1 em {
    font-style: italic;
    font-weight: 400;
}

.page-head .lede {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 56ch;
    margin-top: clamp(18px, 2.5vh, 26px);
}

.page-head .overline,
.page-head h1,
.page-head .lede {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-head h1 { animation-delay: 0.12s; }
.page-head .lede { animation-delay: 0.22s; }

/* === Paginakop met sector-embleem ==================================== */
.page-head--split .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.page-art {
    width: clamp(220px, 23vw, 310px);
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.page-art svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Embleem-onderdelen: tekenen (draw) of verschijnen (pop) na elkaar.
   Tempo per onderdeel via animation-delay/-duration in de SVG zelf.
   Eindstand staat in de attributen, zodat het embleem ook zonder
   animatie (reduced motion, geen CSS) compleet is. */
.page-art .emblem-anim.draw {
    animation-name: emblemDraw;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
    animation-fill-mode: both;
}

.page-art .emblem-anim.pop {
    animation-name: emblemPop;
    animation-duration: 0.45s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

@keyframes emblemDraw {
    from { stroke-dashoffset: 100; }
    to   { stroke-dashoffset: 0; }
}

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

/* Beginletters in de paginatitel lichten op terwijl het embleem
   'hun' fase tekent (G bij de stad, P bij de grens, W bij het water)
   en zakken daarna terug naar inkt. */
.ltr {
    animation: ltrPhase 1.35s ease both;
}

@keyframes ltrPhase {
    0%, 100% { color: var(--ink); }
    30%, 70% { color: var(--accent); }
}

/* === Secties — gedeeld =============================================== */
.section {
    padding: clamp(72px, 10vh, 120px) 0;
    border-top: 1px solid var(--hairline);
}

.section--tint { background: var(--paper-tint); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: clamp(40px, 6vh, 64px);
    flex-wrap: wrap;
}

/* === Expertise — genummerde index (homepage) ========================= */
.expertise-list {
    list-style: none;
    border-top: 1px solid var(--hairline);
}

.expertise-list li {
    border-bottom: 1px solid var(--hairline);
}

.expertise-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: baseline;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(22px, 3vh, 30px) 8px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.expertise-row:hover { background: rgba(16, 36, 47, 0.03); }

.exp-index {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--ink-mute);
    font-variant-numeric: tabular-nums;
}

.exp-title {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.7rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    transition: color 0.25s ease;
}

.exp-desc {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 5px;
}

.exp-arrow {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink-mute);
    transition: transform 0.25s ease, color 0.25s ease;
}

.expertise-row:hover .exp-title { color: var(--accent); }

.expertise-row:hover .exp-arrow {
    transform: translateX(6px);
    color: var(--accent);
}

.exp-kicker {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* === Het huis van Caraad — dochters en diensten ====================== */
.house-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: clamp(32px, 5vh, 48px);
}

.plaque {
    display: block;
    border: 1px solid var(--hairline);
    padding: clamp(28px, 3.5vw, 44px);
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.plaque:hover {
    border-color: var(--accent);
    background: rgba(16, 36, 47, 0.015);
}

.plaque-mark {
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 20px;
}

.plaque-tag {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 10px;
}

.plaque h3 {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.65rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    transition: color 0.25s ease;
}

.plaque:hover h3 { color: var(--accent); }

.plaque p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-top: 10px;
    max-width: 44ch;
}

.plaque-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--hairline);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.plaque-link::after {
    content: '\2192';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.plaque:hover .plaque-link {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.plaque:hover .plaque-link::after { transform: translateX(4px); }

.expertise-more {
    padding-top: 24px;
    font-size: 0.8rem;
    color: var(--ink-mute);
}

.expertise-more a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.expertise-more a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* === Redactioneel tweeluik (Waarom Caraad e.a.) ====================== */
.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
}

.why-intro p {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 40ch;
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vh, 48px) clamp(32px, 4vw, 48px);
}

.point {
    border-top: 1px solid var(--hairline);
    padding-top: 22px;
}

.point h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.point p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* === Nieuws — redactionele rijen (homepage) ========================== */
.news-list {
    list-style: none;
    border-top: 1px solid var(--hairline);
}

.news-list li { border-bottom: 1px solid var(--hairline); }

.news-row {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: baseline;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(24px, 3.5vh, 34px) 8px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.news-row:hover { background: rgba(16, 36, 47, 0.03); }

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.news-meta .tag { color: var(--accent); }

.news-row h3 {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    transition: color 0.25s ease;
}

.news-excerpt {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-top: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-arrow {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink-mute);
    transition: transform 0.25s ease, color 0.25s ease;
}

.news-row:hover h3 { color: var(--accent); }

.news-row:hover .news-arrow {
    transform: translateX(6px);
    color: var(--accent);
}

/* === Nieuwsarchief — jaargroepen (nieuwswaardig) ===================== */
.archive-group {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(32px, 5vh, 52px) 0;
}

.archive-group + .archive-group {
    border-top: 1px solid var(--hairline);
}

.archive-year {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--ink-mute);
}

.archive-list { list-style: none; }

.archive-list li + li { border-top: 1px solid var(--hairline); }

.archive-row {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: baseline;
    gap: clamp(16px, 3vw, 40px);
    padding: 18px 4px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.archive-row:hover { background: rgba(16, 36, 47, 0.03); }

.archive-date {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    white-space: nowrap;
}

.archive-row h3 {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    transition: color 0.25s ease;
}

.archive-arrow {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink-mute);
    transition: transform 0.25s ease, color 0.25s ease;
}

.archive-row:hover h3 { color: var(--accent); }

.archive-row:hover .archive-arrow {
    transform: translateX(6px);
    color: var(--accent);
}

/* === Expertise-detail: dienstverlening ============================== */
.prose-lede {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.65rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    max-width: 60ch;
    text-wrap: pretty;
}

.prose-lede + .prose { margin-top: 18px; }

.prose {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 68ch;
}

.service-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 clamp(40px, 5vw, 72px);
    border-top: 1px solid var(--hairline);
    margin-top: clamp(32px, 5vh, 48px);
}

.service-grid li {
    border-bottom: 1px solid var(--hairline);
    padding: 15px 0 15px 30px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-soft);
    position: relative;
}

.service-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 26px;
    width: 14px;
    height: 1px;
    background: var(--accent);
}

.note-aside {
    margin-top: clamp(36px, 5vh, 56px);
    padding: 6px 0 6px 28px;
    border-left: 2px solid var(--accent);
    max-width: 70ch;
}

.note-aside p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.pagenav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px 40px;
    flex-wrap: wrap;
    margin-top: clamp(48px, 7vh, 72px);
    padding-top: clamp(24px, 3vh, 32px);
    border-top: 1px solid var(--hairline);
}

/* === Mensen ========================================================== */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: clamp(32px, 5vh, 48px) 24px;
}

.people-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.person { text-decoration: none; display: block; }

.person-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.person .contacts a { overflow-wrap: break-word; }

.person .photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--paper-tint);
}

.person .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: grayscale(1) contrast(1.02);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.person:hover .photo img,
.person:focus-within .photo img {
    filter: grayscale(0);
    transform: scale(1.02);
}

/* Profielpagina (portret in .page-art): niets te selecteren, dus geen
   grijs-naar-kleur hover zoals op de teamgrids — portret staat in kleur. */
.page-art .person .photo img,
.page-art .person:hover .photo img,
.page-art .person:focus-within .photo img {
    filter: none;
    transform: none;
}

.person h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 12px;
    transition: color 0.25s ease;
}

.person:hover h3 { color: var(--accent); }

.person .role {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 3px;
}

.person .contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 9px;
    font-size: 0.78rem;
}

.person .contacts a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.25s ease;
}

.person .contacts a:hover { color: var(--accent); }

/* === Artikel (nieuwsberichten) ======================================= */
.article-head {
    padding: clamp(56px, 9vh, 96px) 0 clamp(32px, 5vh, 48px);
}

.article-head .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: clamp(20px, 3vh, 30px);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.article-head .article-meta .tag { color: var(--accent); }

.article-head h1 {
    font-family: var(--serif);
    font-optical-sizing: auto;
    font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3.1rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    max-width: 26ch;
    text-wrap: balance;
}

.article-head .overline { margin-bottom: clamp(20px, 3vh, 30px); }

.article-body {
    max-width: 72ch;
    padding-bottom: clamp(56px, 9vh, 96px);
}

.article-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.article-body strong { color: var(--ink); font-weight: 600; }

.article-body h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 38px 0 12px;
}

.article-body ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.article-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
    transition: border-color 0.25s ease;
}

.article-body a:hover { border-bottom-color: var(--accent); }

.article-backrow {
    padding: 18px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

/* === Formulier — redactionele invoervelden =========================== */
.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
}

.form-field { margin-bottom: 28px; }

.form-field label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--hairline);
    border-radius: 0;
    background: transparent;
    padding: 8px 2px 12px;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--accent);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

form .btn-primary {
    border: 0;
    cursor: pointer;
    font-family: var(--sans);
    margin-top: 4px;
}

.form-success {
    display: none;
    padding: 24px 0;
}

.form-success.is-visible { display: block; }

.form-success h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--ink-soft);
}

/* === Kantoren ========================================================= */
.office-list { list-style: none; }

.office-item {
    border-top: 1px solid var(--hairline);
    padding: 22px 4px;
}

.office-item h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.office-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.office-item a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.office-item a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.office-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.office-fact { margin-bottom: 22px; }

.office-fact .office-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
}

.office-fact p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.office-fact a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.office-fact a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Kaart in gedempte tinten; kleur bij aanwijzen */
.office-map {
    border: 1px solid var(--hairline);
}

.office-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
    filter: grayscale(1) contrast(1.04);
    transition: filter 0.4s ease;
}

.office-map:hover iframe { filter: none; }

/* === Gedempte fotofiguur ============================================== */
.photo-figure {
    margin-top: clamp(40px, 6vh, 64px);
}

.photo-figure img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
    filter: saturate(0.72) contrast(1.02);
}

.photo-figure figcaption {
    margin-top: 14px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* === Contact — donker inktvlak ======================================= */
.cta {
    background: var(--ink);
    color: rgba(251, 250, 247, 0.72);
    padding: clamp(80px, 12vh, 130px) 0;
}

.cta .overline { color: rgba(251, 250, 247, 0.55); }

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.cta h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--paper);
    margin-top: 18px;
    text-wrap: balance;
}

.cta p {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 46ch;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.btn-light {
    display: inline-block;
    border: 1px solid rgba(251, 250, 247, 0.45);
    color: var(--paper);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-light:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

.link-light {
    font-size: 0.88rem;
    color: rgba(251, 250, 247, 0.72);
    text-decoration: none;
    border-bottom: 1px solid rgba(251, 250, 247, 0.25);
    padding-bottom: 3px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.link-light:hover {
    color: var(--paper);
    border-bottom-color: var(--paper);
}

/* === Footer =========================================================== */
.site-footer {
    padding: clamp(56px, 8vh, 84px) 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    margin-bottom: clamp(40px, 6vh, 64px);
}

.footer-brand img {
    height: 34px;
    display: block;
    margin-bottom: 18px;
}

.footer-brand p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 30ch;
}

.footer-col h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 9px; }

.footer-col a {
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 12px 32px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--ink-mute);
}

/* === Ingetogen animatie =============================================== */
@keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-copy > *,
.hero-art,
.hero-facts {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-art                   { animation-delay: 0.3s; }
.hero-facts                 { animation-delay: 0.5s; }

/* Scroll-reveal — alleen actief mét JavaScript */
.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy > *, .hero-art, .hero-facts,
    .page-head .overline, .page-head h1, .page-head .lede { animation: none; }
    .hero-art .ticks,
    .hero-art .arc-light,
    .hero-art .arc-dark { animation: none; }
    .page-art,
    .page-art .emblem-anim,
    .ltr { animation: none; }
    .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* === Responsief ======================================================= */
@media (max-width: 900px) {
    .microbar-offices { display: none; }
    .microbar-inner { justify-content: flex-end; }

    .nav-links li { display: none; }
    .nav-links li:last-child { display: block; }

    .hero { min-height: 0; }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-art { display: none; }

    .page-head--split .container { grid-template-columns: 1fr; }

    .page-art { display: none; }

    .hero-facts {
        gap: 28px 40px;
        justify-content: space-between;
    }

    .why-grid { grid-template-columns: 1fr; }

    .cta-inner { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .archive-group { grid-template-columns: 1fr; gap: 20px; }

    .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .expertise-row { grid-template-columns: 40px 1fr; }
    .exp-arrow { display: none; }

    .news-row { grid-template-columns: 1fr; gap: 10px; }
    .news-meta { flex-direction: row; gap: 16px; }
    .news-arrow { display: none; }

    .archive-row { grid-template-columns: 1fr; gap: 6px; }
    .archive-arrow { display: none; }

    .why-points { grid-template-columns: 1fr; }

    .house-grid { grid-template-columns: 1fr; }

    .form-grid { grid-template-columns: 1fr; }

    .office-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .people-grid,
    .people-grid--compact {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 32px 16px;
    }
}
