:root {
    --gold: #B8860B;
    --gold-mid: #D4A017;
    --gold-light: #F5E6B0;
    --cream: #F8F4EC;
    --white: #FFFFFF;
    --ink: #141414;
    --ink-2: #2E2E2E;
    --muted: #7A7570;
    --border: #E8E0D0;
}

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

body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* ---- Accessibility ---- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 999;
    padding: 12px 20px;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus { top: 16px; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Sticky-header offset for in-page anchors. */
html { scroll-padding-top: 76px; }
section[id] { scroll-margin-top: 76px; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: var(--gold-mid);
}

.header-logo-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-2);
}

.header-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
}

.header-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    text-decoration: none;
    transition: color .2s;
}

.header-nav a:hover { color: var(--gold); }

.header-cta {
    padding: 12px 24px;
    font-size: 12px;
}

.section-label,
.section-label-gold {
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

.section-h2 {
    margin-bottom: 40px;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    color: var(--ink);
}

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

.divider-gold {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-mid) 20%, var(--gold-mid) 80%, transparent);
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    overflow: hidden;
    background: var(--white);
}

.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px 72px 72px;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 80px;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--gold-mid);
}

.logo-nm {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-2);
}

.logo-nm span { color: var(--gold); }

.hero-eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-h1 {
    margin-bottom: 28px;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    color: var(--ink);
}

.hero-h1 em { color: var(--gold); font-style: italic; }

.hero-desc {
    max-width: 380px;
    margin-bottom: 48px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn-dark {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 1px;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}

.btn-dark:hover { background: var(--ink-2); }

.btn-ghost {
    padding-bottom: 2px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-langs {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.lang-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.flag { font-size: 16px; }

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cream);
}

.big-s {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(240px, 28vw, 400px);
    font-style: italic;
    line-height: 1;
    color: var(--gold-light);
    user-select: none;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
}

.stat-card {
    min-width: 220px;
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    line-height: 1;
    color: var(--ink);
}

.stat-num span { font-size: 20px; color: var(--gold); }

.stat-lbl {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ===== FEATURES ===== */
.features {
    padding: 56px 72px;
    background: var(--ink);
}

.features-row {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
}

.feat-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.feat-block:first-child { padding-left: 0; }
.feat-block:last-child { border-right: none; }

.feat-num {
    margin-bottom: 12px;
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    line-height: 1;
    color: var(--gold);
    opacity: .35;
}

.feat-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--white);
}

/* ===== PACKAGES ===== */
.packages {
    padding: 100px 72px;
    background: var(--white);
}

.pkg-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: end;
    max-width: 1100px;
    margin: 0 auto 64px;
}

.pkg-title-col h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: var(--ink);
}

.pkg-title-col h2 em { color: var(--gold); font-style: italic; }

.pkg-desc {
    max-width: 460px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
}

.proefles-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 22px;
    border: 1.5px solid var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.pkg-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.pkg-col {
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.pkg-col:last-child { border-right: none; }
.pkg-col:hover { background: var(--cream); }
.pkg-col.highlight { background: var(--ink); }
.pkg-col.highlight:hover { background: var(--ink-2); }

.pkg-top {
    position: relative;
    padding: 36px 28px 24px;
    border-bottom: 1px solid var(--border);
}

.pkg-col.highlight .pkg-top { border-bottom-color: rgba(255, 255, 255, .12); }

.pkg-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}

.pkg-uur {
    font-family: 'DM Serif Display', serif;
    font-size: 56px;
    line-height: 1;
    color: var(--ink);
}

.pkg-col.highlight .pkg-uur { color: var(--gold); }

.pkg-uur-label {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.pkg-col.highlight .pkg-uur-label { color: rgba(255, 255, 255, .40); }

.pkg-bottom { padding: 24px 28px; }

.pkg-list { margin-bottom: 28px; list-style: none; }

.pkg-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--ink-2);
}

.pkg-col.highlight .pkg-list li {
    border-bottom-color: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .70);
}

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

.dot-gold {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.pkg-refund {
    margin-bottom: 20px;
    font-size: 11px;
    font-style: italic;
    line-height: 1.55;
    color: var(--muted);
}

.pkg-col.highlight .pkg-refund { color: rgba(255, 255, 255, .35); }

.pkg-price {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--ink);
}

.pkg-col.highlight .pkg-price { color: var(--gold-mid); }

/* ===== TARIEVEN ===== */
.tarieven {
    padding: 100px 72px;
    background: var(--cream);
}

.tarieven-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.t-table { width: 100%; border-collapse: collapse; }
.t-table tr { border-bottom: 1px solid var(--border); }
.t-table tr:last-child { border-bottom: none; }
.t-table td { padding: 14px 0; font-size: 14px; }
.t-table td:first-child { color: var(--ink-2); }
.t-table td:last-child { font-weight: 700; text-align: right; color: var(--gold); }

.ann-section h3 {
    margin-bottom: 32px;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--ink);
}

.ann-card {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.ann-card:last-child { border-bottom: none; }

.ann-indicator {
    flex-shrink: 0;
    width: 4px;
    border-radius: 2px;
}

.ann-indicator.green { background: #16A34A; }
.ann-indicator.red { background: #DC2626; }

.ann-title {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ann-title.green { color: #16A34A; }
.ann-title.red { color: #DC2626; }

.ann-text { font-size: 13px; line-height: 1.7; color: var(--muted); }
.ann-text strong { font-weight: 600; color: var(--ink); }

/* ===== WAAROM + APP ===== */
.why-app {
    padding: 100px 72px;
    background: var(--white);
}

.why-app-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.why-title-spacing { margin-bottom: 32px; }
.why-app .section-h2 em { font-family: 'DM Serif Display', serif; color: var(--gold); font-style: italic; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid var(--border);
    background: var(--border);
}

.why-cell {
    padding: 32px 28px;
    background: var(--white);
    transition: background .2s;
}

.why-cell:hover { background: var(--cream); }
.why-cell.--wide { grid-column: span 2; }

.why-icon-line {
    width: 32px;
    height: 2px;
    margin-bottom: 16px;
    background: var(--gold);
}

.why-title {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.why-sub { font-size: 12px; line-height: 1.6; color: var(--muted); }

.app-aside .section-label-gold { margin-bottom: 12px; }

.app-aside h3 {
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    line-height: 1.1;
    color: var(--ink);
}

.app-aside p {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
}

.app-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ===== FOOTER ===== */
footer { background: var(--ink); }

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 72px 0;
}

.ft-col-logo .ft-s {
    font-family: 'DM Serif Display', serif;
    font-size: 72px;
    font-style: italic;
    line-height: 1;
    color: var(--gold);
}

.ft-col-logo .ft-name {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.ft-col-logo .ft-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .30);
}

.ft-col h3 {
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.ft-info { font-style: normal; }

.ft-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ft-info-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .70);
}

.ft-dot {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 16px;
    color: var(--gold);
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .50);
    text-decoration: none;
    transition: color .2s;
}

.ft-link:hover { color: var(--gold); }
.ft-arrow { font-size: 10px; color: var(--gold); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 40px 72px 48px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-l {
    font-size: 11px;
    font-style: italic;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .25);
}

.footer-bottom-r {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .20);
}

/* ===== HERO IMAGE ===== */
.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== OVER ONS ===== */
.about {
    padding: 100px 72px;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2px;
    background: var(--cream);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.about-usps {
    display: grid;
    gap: 12px;
    list-style: none;
}

.about-usps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}

/* ===== HOE WERKT HET ===== */
.steps {
    padding: 100px 72px;
    background: var(--cream);
}

.steps-head {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    padding: 32px 28px;
    border-top: 3px solid var(--gold);
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
}

.step-num {
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    line-height: 1;
    color: var(--gold);
}

.step-title {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}

.step-text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
}

/* ===== INSTRUCTEURS ===== */
.team {
    padding: 100px 72px;
    background: var(--white);
}

.team-head {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.team-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-photo {
    aspect-ratio: 1 / 1;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--cream);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--ink);
}

.team-langs {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 72px;
    background: var(--cream);
}

.reviews-head {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    padding: 32px 28px;
    border-left: 3px solid var(--gold);
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
}

.review-stars {
    margin-bottom: 16px;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--gold-mid);
}

.review-text {
    margin-bottom: 20px;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
    color: var(--ink-2);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ===== GALERIJ ===== */
.gallery {
    padding: 100px 72px;
    background: var(--white);
}

.gallery-head {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    background: var(--cream);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* ===== FAQ ===== */
.faq {
    padding: 100px 72px;
    background: var(--white);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    margin-left: 16px;
    font-size: 22px;
    font-weight: 400;
    color: var(--gold);
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 96px 72px;
    overflow: hidden;
    background: var(--ink);
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta.--has-image .cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .78);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: var(--white);
}

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

.cta-text {
    margin-bottom: 36px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
}

.btn-gold {
    display: inline-block;
    padding: 18px 44px;
    border-radius: 1px;
    background: var(--gold);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}

.btn-gold:hover { background: var(--gold-mid); }

/* ===== ABOUT SIGNATURE ===== */
.about-sign {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-name {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--ink);
}

.about-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===== STEPS / PACKAGE CTA ===== */
.steps-cta {
    max-width: 1100px;
    margin: 40px auto 0;
}

.pkg-cta {
    display: block;
    margin-top: 20px;
    padding: 12px;
    border: 1px solid var(--border);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: background .2s, color .2s;
}

.pkg-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.pkg-col.highlight .pkg-cta { border-color: rgba(255, 255, 255, .25); color: var(--white); }
.pkg-col.highlight .pkg-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ===== LESAUTO ===== */
.lesauto {
    padding: 100px 72px;
    background: var(--white);
}

.lesauto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.lesauto-text {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.lesauto-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    background: var(--border);
}

.lesauto-specs div {
    padding: 16px 18px;
    background: var(--white);
}

.lesauto-specs dt {
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.lesauto-specs dd {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.lesauto-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
}

.lesauto-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-2);
}

.lesauto-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    background: var(--cream);
}

.lesauto-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INBEGREPEN / NIET INBEGREPEN ===== */
.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.incl-head {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.incl-head.incl-yes { color: #16A34A; }
.incl-head.incl-no { color: var(--muted); }

.incl-list {
    display: grid;
    gap: 8px;
    list-style: none;
}

.incl-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-2);
}

.incl-mark {
    font-weight: 700;
}

.incl-mark.incl-yes { color: #16A34A; }
.incl-mark.incl-no { color: #DC2626; }

/* ===== LESGEBIED ===== */
.area {
    padding: 100px 72px;
    background: var(--cream);
}

.area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.area-text {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.area-towns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.area-towns li {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}

/* ===== REVIEWS EMPTY ===== */
.reviews-empty {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 15px;
    font-style: italic;
    color: var(--muted);
}

/* ===== PROEFLES FORM ===== */
.form-section {
    padding: 100px 72px;
    background: var(--white);
}

.form-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.form-text {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.form-contact {
    display: grid;
    gap: 12px;
}

.form-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
}

.form-contact-line .ft-dot { color: var(--gold); }

.form-embed {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--gold-tint);
}

.form-placeholder {
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer-bottom-r a {
    margin-left: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-r a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { min-height: 320px; }
    .hero-right .big-s { display: none; }
    .hero-left { padding: 60px 32px; }
    .features { padding: 48px 32px; }
    .features-row { flex-wrap: wrap; gap: 24px; }
    .feat-block { padding: 0 0 24px; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .header-nav { display: none; }
    .header-cta { margin-left: auto; }
    .about, .steps, .team, .reviews, .faq, .gallery, .lesauto, .area, .form-section { padding: 72px 32px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-inner, .lesauto-inner, .area-inner, .form-inner { grid-template-columns: 1fr; gap: 40px; }
    .lesauto-media { order: -1; }
    .incl-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-inner, .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    .team-row, .reviews-row { grid-template-columns: 1fr; }
    .cta { padding: 72px 32px; }
    .packages { padding: 72px 32px; }
    .pkg-row { grid-template-columns: 1fr 1fr; }
    .pkg-header { grid-template-columns: 1fr; }
    .tarieven, .why-app { padding: 72px 32px; }
    .tarieven-inner, .why-app-inner, .footer-top { grid-template-columns: 1fr; padding-left: 32px; padding-right: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; padding: 32px; }
}

@media (max-width: 560px) {
    .pkg-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
}
