/*
Theme Name: Nestor Notabilis Iuris
Theme URI: https://nestornotabilis.nl
Author: Kea Kroeks - de Raaij
Author URI: https://nestornotabilis.nl
Description: Boutique advocatenkantoor thema voor Nestor Notabilis Iuris Advocatuur. Gespecialiseerd in IT-recht, privacy en corporate contracten.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: nestor-notabilis
Tags: law firm, boutique, bilingual, IT law, privacy
*/

/* =========================================================
   IMPORTS & FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
    --forest:       #2C4A35;
    --forest-light: #3d6348;
    --gold:         #B8962E;
    --gold-light:   #d4ae52;
    --cream:        #F8F5EF;
    --dark:         #1a2a1f;
    --mid:          #5a6e60;
    --text:         #2a3a2e;
    --serif:        'Playfair Display', Georgia, serif;
    --sans:         'DM Sans', system-ui, sans-serif;
    --radius:       2px;
    --max-width:    1280px;
    --padding-x:    80px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--sans);
    font-weight: 400;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--forest); }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p  { font-size: 15px; line-height: 1.85; color: var(--mid); }

.section-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); color: #fff; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: rgba(245,240,232,0.8);
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(245,240,232,0.3);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-forest {
    display: inline-block;
    background: var(--forest);
    color: #fff;
    padding: 13px 28px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.btn-forest:hover { background: var(--gold); color: #fff; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(44,74,53,0.12);
    backdrop-filter: blur(8px);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img { height: 48px; width: auto; }
.site-logo .logo-text {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--forest);
    display: none;
}

.nav-right { display: flex; align-items: center; gap: 24px; }

.lang-switch { display: flex; gap: 6px; }
.lang-btn {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border: 1px solid rgba(44,74,53,0.2);
    border-radius: var(--radius);
    background: transparent;
    color: var(--mid);
    transition: all 0.2s;
}
.lang-btn.active,
.lang-btn:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.07em;
    color: var(--forest);
    text-transform: uppercase;
}
.main-nav a:hover { color: var(--gold); }
.main-nav .nav-cta {
    background: var(--forest);
    color: #fff;
    padding: 9px 20px;
    border-radius: var(--radius);
}
.main-nav .nav-cta:hover { background: var(--gold); color: #fff; }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: all 0.3s;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.42);
}

.hero-fallback-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2a1f 0%, #2c4a35 55%, #1f3828 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(26,42,31,0.88) 0%,
        rgba(26,42,31,0.50) 55%,
        rgba(26,42,31,0.20) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(184,150,46,0.07) 1px, transparent 0);
    background-size: 32px 32px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    width: 100%;
}

.hero-inner { max-width: 640px; }

.hero-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-label::after { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }

.hero h1 { color: #f5f0e8; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245,240,232,0.75);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: var(--padding-x);
    z-index: 2;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(245,240,232,0.35);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-scroll::before { content: ''; display: block; width: 36px; height: 1px; background: rgba(245,240,232,0.25); }

/* =========================================================
   STAT BAND
   ========================================================= */
.stat-band {
    background: var(--gold);
    padding: 22px var(--padding-x);
    display: flex;
    align-items: center;
}

.stat-item { text-align: center; flex: 1; }
.stat-num { font-family: var(--serif); font-size: 32px; color: #fff; display: block; line-height: 1; }
.stat-lbl { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-top: 4px; display: block; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section { background: var(--cream); padding: 100px var(--padding-x); }

.about-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p  { margin-bottom: 16px; }

.cred-list { margin-top: 48px; display: flex; flex-direction: column; gap: 10px; }
.cred-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--mid); line-height: 1.5; }
.cred-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.photo-wrap { position: relative; margin-top: 54px; }
.photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center 1%; }
.photo-placeholder .placeholder-text {
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.photo-frame {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 78%;
    height: 78%;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
    pointer-events: none;
}

/* =========================================================
   EXPERTISE SECTION
   ========================================================= */
.expertise-section { background: #fff; padding: 100px var(--padding-x); }
.expertise-section .section-inner { max-width: var(--max-width); margin: 0 auto; }
.expertise-section h2 { margin-bottom: 56px; max-width: 480px; }

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(44,74,53,0.07);
}

.exp-card {
    background: #fff;
    padding: 40px 36px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, background 0.2s;
}
.exp-card:hover { border-bottom-color: var(--gold); background: var(--cream); }
.exp-num { font-family: var(--serif); font-size: 11px; letter-spacing: 0.22em; color: var(--gold); display: block; margin-bottom: 20px; }
.exp-icon { margin-bottom: 18px; }
.exp-icon svg { width: 32px; height: 32px; stroke: var(--forest); fill: none; stroke-width: 1.5; }
.exp-card h3 { color: var(--forest); margin-bottom: 14px; font-size: 20px; }
.exp-card p  { font-size: 13px; line-height: 1.78; }

/* =========================================================
   SECTORS SECTION
   ========================================================= */
.sectors-section { background: var(--forest); padding: 100px var(--padding-x); }
.sectors-section .section-inner { max-width: var(--max-width); margin: 0 auto; }
.sectors-section .section-label { color: var(--gold-light); }
.sectors-section .section-label::before { background: var(--gold-light); }
.sectors-section h2 { color: #f5f0e8; margin-bottom: 56px; }

.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.sec-card {
    border: 1px solid rgba(245,240,232,0.15);
    padding: 36px 28px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.sec-card:hover { border-color: var(--gold); }
.sec-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.sec-card:hover::after { transform: scaleX(1); }
.sec-icon { margin-bottom: 16px; }
.sec-icon svg { width: 28px; height: 28px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.sec-card h3 { color: #f5f0e8; margin-bottom: 10px; font-size: 19px; }
.sec-card p  { font-size: 13px; color: rgba(245,240,232,0.6); line-height: 1.72; }

/* =========================================================
   CLIENTS SECTION
   ========================================================= */
.clients-section { background: var(--cream); padding: 64px var(--padding-x) 40px; }
.clients-section .section-inner { max-width: var(--max-width); margin: 0 auto; }
.clients-section h2 { margin-bottom: 48px; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(44,74,53,0.07);
}
.client-item {
    background: #fff;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 16px;
    color: var(--forest);
    text-align: center;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
}
.client-item:hover { background: var(--cream); color: var(--gold); }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section { background: #fff; padding: 0; }
.contact-section .section-inner { max-width: var(--max-width); margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.contact-info h2 { margin-bottom: 20px; }
.contact-info p  { margin-bottom: 28px; }

.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--mid); }
.contact-detail strong { color: var(--forest); min-width: 80px; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(44,74,53,0.2);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--mid); line-height: 1.6; }
.form-note a { color: var(--forest); }
.form-success {
    display: none;
    font-size: 13px;
    color: var(--forest);
    padding: 12px 16px;
    border: 1px solid rgba(184,150,46,0.35);
    border-radius: var(--radius);
    background: rgba(184,150,46,0.06);
    line-height: 1.6;
}

/* =========================================================
   BADGE BAR
   ========================================================= */
.badge-bar {
    background: var(--cream);
    padding: 22px var(--padding-x);
    border-top: 1px solid rgba(44,74,53,0.08);
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}
.badge-item { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.05em; color: var(--mid); }
.badge-dot  { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* =========================================================
   LEGAL BAR
   ========================================================= */
.legal-bar {
    background: var(--dark);
    padding: 24px var(--padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.legal-bar p { font-size: 12px; color: rgba(245,240,232,0.38); }
.legal-links { display: flex; gap: 24px; }
.legal-links a { font-size: 12px; color: rgba(245,240,232,0.5); transition: color 0.2s; }
.legal-links a:hover { color: var(--gold-light); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--dark); border-top: 1px solid rgba(245,240,232,0.07); padding: 60px var(--padding-x) 40px; }

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand img { height: 40px; filter: brightness(0) invert(1); opacity: 0.75; margin-bottom: 16px; }
.footer-brand-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.footer-brand-name span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 400;
    margin-top: 3px;
}
.footer-brand p  { font-size: 13px; color: rgba(245,240,232,0.38); line-height: 1.7; max-width: 240px; margin-top: 12px; }

.footer-col h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.footer-col a  { display: block; font-size: 13px; color: rgba(245,240,232,0.48); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(245,240,232,0.9); }

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(245,240,232,0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p    { font-size: 12px; color: rgba(245,240,232,0.28); }
.footer-bottom span { font-size: 12px; color: rgba(245,240,232,0.22); }

/* =========================================================
   PAGE TEMPLATES (LEGAL PAGES)
   ========================================================= */
.page-hero {
    background: var(--dark);
    padding: 64px 0 56px;
}
.page-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

/* Breadcrumb — generiek (tekst zonder link) */
.page-hero .breadcrumb { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(245,240,232,0.35); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* Breadcrumb — BEM-klassen voor aanklikbare links */
.page-hero .breadcrumb__link { color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.2s; }
.page-hero .breadcrumb__link:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.page-hero .breadcrumb__sep { color: rgba(245,240,232,0.25); margin: 0 6px; }
.page-hero .breadcrumb__current { color: rgba(245,240,232,0.35); }

.page-hero h1 { color: #f5f0e8; margin-bottom: 12px; }
.page-hero .page-meta { font-size: 12px; color: rgba(245,240,232,0.4); letter-spacing: 0.04em; }

/* Wrapper voor de content-sectie van legal pages (witte achtergrond) */
.legal-page-body { background: #fff; }

.legal-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    padding: 0 var(--padding-x);
    align-items: start;
}

.legal-toc { padding: 48px 32px 48px 0; position: sticky; top: 80px; }
.legal-toc .toc-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.legal-toc a { display: block; font-size: 13px; color: var(--mid); padding: 6px 0 6px 12px; border-left: 2px solid rgba(44,74,53,0.12); margin-bottom: 4px; transition: all 0.2s; line-height: 1.4; }
.legal-toc a:hover, .legal-toc a.active { color: var(--forest); border-left-color: var(--gold); }

.legal-content { padding: 48px 0 80px 48px; border-left: 1px solid rgba(44,74,53,0.08); }
.legal-section { margin-bottom: 52px; }
.legal-section h2 { font-size: 24px; color: var(--forest); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(44,74,53,0.1); }
.legal-section h3 { font-size: 18px; color: var(--forest); margin: 24px 0 10px; }
.legal-section p  { font-size: 14px; line-height: 1.9; color: var(--mid); margin-bottom: 14px; }
.legal-section ul { margin-bottom: 14px; }
.legal-section ul li { font-size: 14px; line-height: 1.85; color: var(--mid); padding: 5px 0 5px 18px; position: relative; }
.legal-section ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.info-box { background: var(--cream); border-left: 3px solid var(--gold); padding: 20px 24px; margin: 24px 0; }
.info-box p { font-size: 13px; line-height: 1.8; color: var(--mid); margin: 0; }

.cta-block { background: var(--forest); padding: 32px 36px; border-radius: var(--radius); margin-top: 40px; }
.cta-block h3 { color: #f5f0e8; margin-bottom: 10px; font-size: 20px; }
.cta-block p  { font-size: 13px; color: rgba(245,240,232,0.65); line-height: 1.7; margin-bottom: 16px; }

.version-bar {
    background: var(--cream);
    border-top: 1px solid rgba(44,74,53,0.08);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.version-bar p { font-size: 11px; color: var(--mid); }

.legal-footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: 24px; }
.legal-footer-links__label { width: 100%; font-size: 11px; color: var(--mid); margin: 0; }
.legal-footer-links a { font-size: 13px; color: var(--forest); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.legal-footer-links a:hover { color: var(--gold); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-page-info { padding: 64px var(--padding-x) 64px 80px; }
.contact-page-form { padding: 64px 80px 64px var(--padding-x); background: var(--cream); }

.info-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(44,74,53,0.08); align-items: flex-start; }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 36px; height: 36px; background: var(--cream); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 16px; height: 16px; stroke: var(--forest); fill: none; stroke-width: 1.5; }
.info-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.info-value { font-size: 14px; color: var(--text); line-height: 1.5; }
.info-value a { color: var(--forest); }
.info-value a:hover { color: var(--gold); }

.map-section { padding: 0 var(--padding-x) 64px; }
.map-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-top: 40px; }
.map-header h3 { font-family: var(--serif); font-size: 22px; color: var(--forest); }
.map-header a { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.map-embed { border: 1px solid rgba(44,74,53,0.12); border-radius: var(--radius); overflow: hidden; height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.address-strip {
    background: var(--forest);
    padding: 20px var(--padding-x);
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.addr-item { display: flex; align-items: center; gap: 10px; }
.addr-icon svg { width: 14px; height: 14px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.addr-text { font-size: 13px; color: rgba(245,240,232,0.8); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    :root { --padding-x: 48px; }
    .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .exp-grid, .sec-grid { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { display: none; }
    .legal-content { padding: 48px 0 64px; border-left: none; }
    .contact-page-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .photo-wrap { margin-top: 0; }
}

@media (max-width: 768px) {
    :root { --padding-x: 24px; }
    .site-logo img { height: 34px; }
    .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 20px 24px; border-bottom: 1px solid rgba(44,74,53,0.12); gap: 16px; }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .exp-grid, .sec-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr 1fr; }
    .stat-band { flex-wrap: wrap; gap: 16px; }
    .stat-div { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .legal-bar { flex-direction: column; align-items: flex-start; }
    .badge-bar { gap: 16px; }
    .photo-wrap { margin-top: 0; }
    .photo-placeholder { 
        aspect-ratio: 4/3 !important; 
        padding-bottom: 0 !important; 
        height: auto !important;
        min-height: 300px;
    }
    .photo-placeholder img {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        object-position: center 15% !important;
    }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
}

/* About more link */
.about-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}

.about-more-link:hover {
    color: var(--gold);
    border-color: var(--gold-light);
}

/* ============================================================
   CONTACT SECTIE — nieuw ontwerp zonder formulier
   ============================================================ */

.contact-new-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px var(--padding-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-new-left .section-label { margin-bottom: 16px; }

.contact-new-left h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.contact-new-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 40px;
    max-width: 440px;
}

.contact-new-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}

.contact-cta-btn svg {
    display: block;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    flex-shrink: 0;
}

.contact-cta-btn--primary {
    background: var(--forest);
    color: #fff;
}

.contact-cta-btn--primary:hover {
    background: var(--forest-light);
}

.contact-cta-btn--secondary {
    background: transparent;
    color: var(--forest);
    border: 1px solid rgba(44,74,53,0.2);
}

.contact-cta-btn--secondary:hover {
    border-color: var(--forest);
    background: rgba(44,74,53,0.04);
}

.contact-cta-btn--linkedin {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(184,150,46,0.3);
}

.contact-cta-btn--linkedin:hover {
    background: rgba(184,150,46,0.06);
    border-color: var(--gold);
}

.contact-new-right {
    padding-top: 16px;
}

.contact-new-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-new-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44,74,53,0.08);
}

.contact-new-detail:first-child {
    border-top: 1px solid rgba(44,74,53,0.08);
}

.contact-new-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 2px;
}

.contact-new-value {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-new-inner {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 48px;
    }
    .contact-new-right { padding-top: 0; }
    .contact-cta-btn { width: 100%; justify-content: flex-start; }
}

/* ============================================================
   COOKIE BANNER — Nestor Notabilis Iuris
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--forest);
    border-top: 2px solid var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.cookie-banner--visible { transform: translateY(0); }
.cookie-banner--hidden { transform: translateY(100%); }

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px var(--padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.cookie-banner__text strong { color: #fff; font-weight: 600; }

.cookie-banner__text a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover { color: #fff; }

.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn--accept { background: var(--gold); color: #fff; border-color: var(--gold); }
.cookie-btn--accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cookie-btn--info { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.3); }
.cookie-btn--info:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 16px;
    }
    .cookie-banner__actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

.contact-tel-link {
    color: var(--text);
    text-decoration: none;
}
.contact-tel-link:hover {
    color: var(--forest);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}
