/**
 * components.css — Buttons, cards, sections, process steps, CTA band
 *
 * All .am-* component classes used across homepage and inner pages.
 */

/* ════════════════════════════════════════════
   GLOBAL LAYOUT HELPERS
   ════════════════════════════════════════════ */

.am-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 640px) {
    .am-container {
        padding: 0 32px;
    }
}

.am-section {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.am-section--bg1 {
    background: var(--bg-1);
}

.am-section__header {
    margin-bottom: 40px;
}

.am-section__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}

/* ── Eyebrow label ── */
.am-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */

.am-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease,
                transform 220ms ease, box-shadow 220ms ease;
    white-space: nowrap;
}

.am-btn:active {
    transform: translateY(0) !important;
}

/* Gold / primary */
.am-btn--gold {
    background: var(--gold);
    color: var(--bg);
    padding: 14px 28px;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.am-btn--gold::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -80%;
    width: 45%;
    height: 120%;
    background: rgba(255, 255, 255, 0.22);
    transform: skewX(-18deg);
    transition: left 420ms ease;
    pointer-events: none;
}

.am-btn--gold:hover::before {
    left: 130%;
}

.am-btn--gold:hover {
    background: var(--gold-light);
    color: var(--bg);
    transform: translateY(-2px);
}

/* Ghost / outlined — glassmorphism tint zodat altijd leesbaar op video */
.am-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 13px 28px;
    border: 1px solid rgba(185, 161, 87, 0.5);
}

.am-btn--ghost:hover {
    background: rgba(185, 161, 87, 0.18);
    color: #f0d98a;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(185, 161, 87, 0.22);
}

.am-btn--ghost svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Dark / on gold background */
.am-btn--dark {
    background: var(--bg);
    color: var(--gold);
    padding: 14px 28px;
    position: relative;
    overflow: hidden;
}

.am-btn--dark::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -80%;
    width: 45%;
    height: 120%;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-18deg);
    transition: left 420ms ease;
    pointer-events: none;
}

.am-btn--dark:hover::before {
    left: 130%;
}

.am-btn--dark:hover {
    background: var(--bg-1);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   WAAROM CARDS — 3-column grid
   ════════════════════════════════════════════ */

.am-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .am-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .am-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.am-card {
    background: var(--bg-2);
    padding: 28px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.am-card__icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.8;
}

.am-card__icon svg {
    width: 100%;
    height: 100%;
}

.am-card__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    line-height: 1.2;
    margin: 0 0 10px;
}

.am-card__body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════════
   PROCESS STEPS — 4-column grid
   ════════════════════════════════════════════ */

.am-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 56px;
}

@media (min-width: 640px) {
    .am-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .am-process__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.am-process__step {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 40px 32px;
}

.am-process__num {
    display: block;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    color: var(--border);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.am-process__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.3;
}

.am-process__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════
   CTA BAND — gold full-width section
   ════════════════════════════════════════════ */

.am-cta-band {
    background: var(--gold);
    padding: 72px 0;
}

.am-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.am-cta-band__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 36px);
    color: var(--bg);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 560px;
    margin: 0;
}

.am-cta-band__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.am-cta-band__sub {
    font-size: 13px;
    color: rgba(10,10,10,0.6);
    margin: 24px 0 0;
}

/* ── Diensten lijst (Wat ik maak) ── */
.am-dienst-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.am-dienst-list li {
    font-size: 14px;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
}

.am-dienst-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.am-dienst-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

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

.am-card__title em {
    font-style: normal;
    font-weight: 400;
    color: var(--muted);
    font-size: 0.85em;
}

/* ════════════════════════════════════════════
   SHOWREEL — compact twee-kolom sectie
   ════════════════════════════════════════════ */

.am-showreel {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.am-showreel__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.am-showreel__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    display: block;
}

.am-showreel__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 400ms ease, transform 400ms ease;
    display: block;
}

.am-showreel__thumb:hover img {
    filter: brightness(0.65);
    transform: scale(1.04);
}

.am-showreel__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 56px;
    height: 56px;
    pointer-events: none;
    transition: transform 300ms ease;
}

.am-showreel__thumb:hover .am-showreel__play-btn {
    transform: translate(-50%, -50%) scale(1.12);
}

.am-showreel__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.am-showreel__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: var(--text);
    margin: 0;
    line-height: 1.1;
}

.am-showreel__desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    max-width: 460px;
}

@media (max-width: 767px) {
    .am-showreel__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ════════════════════════════════════════════
   VIDEO MODAL — gedeeld popup voor showreel
   ════════════════════════════════════════════ */

.am-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.am-video-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.am-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.am-video-modal__inner {
    position: relative;
    z-index: 1;
    width: min(92vw, 1100px);
    aspect-ratio: 16 / 9;
}

.am-video-modal__iframe-wrap {
    width: 100%;
    height: 100%;
}

.am-video-modal__iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.am-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 200ms;
}

.am-video-modal__close:hover {
    color: #fff;
}

/* ════════════════════════════════════════════
   PAGE CONTENT — Gutenberg content gebied
   Styles voor .am-page-content en native WP blocks daarbinnen
   ════════════════════════════════════════════ */

.am-page-content {
    color: var(--text);
}

/* Gutenberg HTML blocks (wp:html) — geen extra marge */
.am-page-content > .wp-block-html {
    margin-top: 0;
    margin-bottom: 0;
}

/* Native blokken binnen page-content: basis donker thema kleuren */
.am-page-content p,
.am-page-content li {
    color: var(--muted);
    line-height: 1.75;
}

.am-page-content h1,
.am-page-content h2,
.am-page-content h3,
.am-page-content h4 {
    color: var(--text);
    font-family: var(--font-heading);
    font-style: normal;
}

.am-page-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.am-page-content a:hover {
    color: var(--gold-light);
}

/* Buttons inside page-content should keep their own colours, not inherit link gold */
.am-page-content a.am-btn { text-decoration: none; }
.am-page-content a.am-btn--gold { color: var(--bg); }
.am-page-content a.am-btn--gold:hover { color: var(--bg); }
.am-page-content a.am-btn--dark { color: var(--gold); }
.am-page-content a.am-btn--dark:hover { color: var(--gold); }
.am-page-content a.am-btn--ghost { color: var(--text); }

/* Shortcode blokken (bijv. Contact Form 7) binnen content */
.am-page-content .wpcf7 {
    padding: 60px 0;
    max-width: var(--container-w);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

/* ════════════════════════════════════════════
   PAGE HEADER — inner pages (non-homepage)
   ════════════════════════════════════════════ */

.am-page-header {
    background: linear-gradient(135deg, #0A0A0A 0%, #0F0D08 50%, #0A0A0A 100%);
    border-bottom: 1px solid var(--border);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}

.am-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.am-page-header .am-container {
    position: relative;
    z-index: 1;
}

.am-page-header h1 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0 0 16px;
}

.am-page-header p {
    font-size: 16px;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
    margin: 0;
}

/* ── Hero met slideshow als achtergrond (fotografie pagina) ── */
.am-page-header--slideshow {
    padding: 0;
    min-height: 0;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    /* Geen flex: absolute-positioned slideshow valt buiten flow,
       text positionering via padding-top op inner div */
}

.am-page-header--slideshow .am-slideshow--hero {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset !important;
    overflow: hidden;
}

/* Parallax slides: background-image ipv <img>, fixed aan viewport */
.am-slideshow__slide--parallax {
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: brightness(0.55) saturate(0.75);
}

/* iOS negeert background-attachment:fixed op gescrold element — fallback */
@supports (-webkit-overflow-scrolling: touch) {
    .am-slideshow__slide--parallax {
        background-attachment: scroll;
    }
}

.am-page-header__inner--over-slide {
    position: relative;
    z-index: 2;
    padding-top: 96px;
    padding-bottom: 64px;
}

/* ── Hero met uitgelichte afbeelding (via WP Featured Image) ── */
.am-page-header--hero {
    background-size: cover;
    background-position: center;
    min-height: 480px;
}
.am-page-header--hero::before { display: none; }
.am-page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}
.am-page-header--hero p { color: rgba(240,235,229,0.85); }

/* ── Hero met vaste achtergrond foto (video pagina) ── */
.am-page-header--bg-fixed {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.am-page-header--bg-fixed::before {
    background: rgba(8, 8, 8, 0.72) !important;
    background-image: none !important;
    opacity: 1 !important;
}

/* ── Onderste (arrow-nav) slideshow: geen darkening ── */
.am-slideshow--no-overlay .am-slideshow__slide img {
    filter: none;
}

.am-eyebrow-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.am-eyebrow-line::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.am-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--muted);
}

.am-breadcrumbs a {
    color: var(--platinum);
    text-decoration: none;
    transition: color var(--transition);
}

.am-breadcrumbs a:hover {
    color: var(--gold);
}

/* ════════════════════════════════════════════
   SERVICE CARDS — prijzen, includes
   ════════════════════════════════════════════ */

.am-price {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin: 20px 0 0;
    letter-spacing: 0.04em;
}

.am-includes {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.am-includes li {
    font-size: 12px;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.am-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 11px;
}

/* 2-column card variant */
.am-cards--2col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
    .am-cards--2col {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */

.am-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.am-faq__item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.am-faq__q {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 10px;
}

.am-faq__a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════
   OVER — biography / two-column layout
   ════════════════════════════════════════════ */

.am-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .am-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.am-about__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.8);
    display: block;
}

.am-about__content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin: 0 0 20px;
}

.am-about__content p:last-child {
    margin-bottom: 0;
}

.am-about__content strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ════════════════════════════════════════════
   CONTACT LAYOUT
   ════════════════════════════════════════════ */

.am-contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .am-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.am-contact-info {
    padding: 40px;
    background: var(--bg-2);
    border: 1px solid var(--border);
}

.am-contact-info__title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
}

.am-contact-info__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.am-contact-info__label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.am-contact-info__value {
    font-size: 15px;
    color: var(--text);
}

.am-contact-info__value a {
    color: var(--text);
    transition: color var(--transition);
}

.am-contact-info__value a:hover {
    color: var(--gold);
}

.am-contact-info__divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

/* WordPress form override — dark theme */
.am-form-wrap .wpcf7-form p {
    margin-bottom: 16px;
}

.am-form-wrap input[type="text"],
.am-form-wrap input[type="email"],
.am-form-wrap input[type="tel"],
.am-form-wrap textarea {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
    box-sizing: border-box;
}

.am-form-wrap input[type="text"]:focus,
.am-form-wrap input[type="email"]:focus,
.am-form-wrap input[type="tel"]:focus,
.am-form-wrap textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.am-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

.am-form-wrap input[type="submit"],
.am-form-wrap .wpcf7-submit {
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
}

.am-form-wrap input[type="submit"]:hover,
.am-form-wrap .wpcf7-submit:hover {
    background: var(--gold-light);
}

.am-form-wrap .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e07070;
}

.am-form-wrap .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

/* WPForms dark theme overrides */
.am-form-wrap .wpforms-field input,
.am-form-wrap .wpforms-field select,
.am-form-wrap .wpforms-field textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    background: var(--bg-2) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
    border-radius: var(--radius-sm) !important;
}

.am-form-wrap .wpforms-field input:focus,
.am-form-wrap .wpforms-field select:focus,
.am-form-wrap .wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    box-shadow: none !important;
}

.am-form-wrap .wpforms-field label {
    color: var(--text) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.am-form-wrap .wpforms-field select option {
    background: var(--bg-2);
    color: var(--text);
}

.am-form-wrap .wpforms-submit-container button[type="submit"],
.am-form-wrap .wpforms-submit {
    background: var(--gold) !important;
    color: var(--bg) !important;
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase !important;
    padding: 12px 28px !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    cursor: pointer !important;
}

.am-form-wrap .wpforms-submit-container button[type="submit"]:hover,
.am-form-wrap .wpforms-submit:hover {
    background: var(--gold-light) !important;
}

/* ════════════════════════════════════════════
   DIENSTEN PAGES — intro, service cards, extras
   ════════════════════════════════════════════ */

/* Grey section variant (contrast vs bg-1 without colour) */
.am-section--grey {
    background: var(--bg-2);
}

/* ── Intro twee kolommen ── */
.am-dienst-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 64px;
    align-items: start;
}

.am-dienst-intro__divider {
    background: var(--border);
    align-self: stretch;
}

.am-dienst-intro__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.am-dienst-intro__body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
    max-width: 480px;
}

@media (max-width: 767px) {
    .am-dienst-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .am-dienst-intro__divider {
        display: none;
    }
}

/* ── Service card variant ── */
.am-card--dienst {
    padding: 36px;
}

.am-card--dienst .am-card__body {
    margin-bottom: 20px;
}

/* ── Extra diensten — 4-kolom grid ── */
.am-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

@media (min-width: 1024px) {
    .am-extra-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 639px) {
    .am-extra-grid {
        grid-template-columns: 1fr;
    }
}

.am-extra-item {
    background: var(--bg-1);
    border: 1px solid var(--border);
    padding: 32px 28px;
}

.am-extra-item__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 10px;
}

.am-extra-item__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

/* ── Combinatie sectie (fotografie + video) ── */
.am-combi__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 767px) {
    .am-combi__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.am-combi__body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 32px;
    max-width: 480px;
}

.am-combi__features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.am-combi__feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.am-combi__feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.am-combi__feat-icon svg {
    width: 12px;
    height: 12px;
}

/* ── Rechten grid (fotografie pagina) ── */
.am-rechten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

@media (max-width: 767px) {
    .am-rechten-grid {
        grid-template-columns: 1fr;
    }
}

.am-rechten-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 32px;
}

.am-rechten-item__title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
}

.am-rechten-item__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* ── Page header subtext ── */
.am-page-header__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0 0 20px;
}

.am-page-header__sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════
   STATS — over pagina cijfers
   ════════════════════════════════════════════ */

.am-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

@media (min-width: 768px) {
    .am-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.am-stat {
    background: var(--bg-1);
    border: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
}

.am-stat__num {
    display: block;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    position: relative;
}

.am-stat__plus {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--gold);
}

.am-stat__label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ── About page CTA ── */
.am-about__cta {
    margin-top: 32px;
}

/* ── Diensten trio (over pagina) ── */
.am-diensten-trio {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 48px;
    align-items: start;
}

.am-diensten-trio__divider {
    background: var(--border);
    align-self: stretch;
}

.am-diensten-trio__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.am-diensten-trio__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 20px;
}

@media (max-width: 900px) {
    .am-diensten-trio {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .am-diensten-trio__divider {
        display: none;
    }
}

/* ════════════════════════════════════════════
   CONTACT — response block
   ════════════════════════════════════════════ */

.am-contact-response {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px;
    padding: 24px;
    background: var(--bg-1);
    border: 1px solid var(--border);
}

.am-contact-response__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0;
    overflow: visible;
}

.am-contact-response__icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.am-contact-response__text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════════
   PRIJZEN — pricing cards
   ════════════════════════════════════════════ */

.am-prijzen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .am-prijzen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .am-prijzen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.am-prijs-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 40px 36px;
}

.am-prijs-card__head {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.am-prijs-card__title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
}

.am-prijs-card__price {
    display: block;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.am-prijs-card__unit {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.am-prijzen-note {
    margin-top: 40px;
    font-size: 14px;
    color: var(--muted);
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
}

/* ════════════════════════════════════════════
   WERK / PORTFOLIO STRIP (inner page)
   ════════════════════════════════════════════ */

.am-werk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .am-werk-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .am-werk-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.am-werk-item {
    position: relative;
    background: var(--bg-1);
    border: 1px solid var(--border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 220ms ease, background 220ms ease;
    text-decoration: none;
    color: inherit;
}

.am-werk-item:hover {
    border-color: var(--gold-border);
    background: var(--bg-2);
    color: inherit;
}

.am-werk-item__cats {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.am-werk-item__title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.am-werk-item__arrow {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    transition: color 220ms ease, transform 220ms ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.am-werk-item:hover .am-werk-item__arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* ════════════════════════════════════════════
   GLOBAL RESETS — body, links
   ════════════════════════════════════════════ */

body {
    background: var(--bg) !important;
    color: var(--text) !important;
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Remove OceanWP body padding/margin overrides */
#outer-wrap,
#wrap,
#main,
#content-wrap {
    padding: 0 !important;
    margin: 0 !important;
}

/* am-main wrapper */
#am-main {
    min-height: 60vh;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}


/* ════════════════════════════════════════════
   CARD EXAMPLE LINKS (portfolio voorbeelden)
   ════════════════════════════════════════════ */

.am-card__example {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: color 220ms ease;
}

.am-card__example:hover {
    color: var(--gold-light);
}


/* ════════════════════════════════════════════
   WORDPRESS BLOCK BUTTON OVERRIDES
   Kill ALL blue buttons from WP Gutenberg/plugins
   ════════════════════════════════════════════ */

.wp-block-button__link,
.wp-block-button__link:visited,
.wp-element-button,
.wp-element-button:visited {
    background: var(--gold) !important;
    color: var(--bg) !important;
    border: 1px solid var(--gold) !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 14px 32px !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    transition: background 220ms ease, color 220ms ease !important;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link:visited {
    background: transparent !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.am-page-content .wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}


/* ════════════════════════════════════════════
   WPFORMS OVERRIDES — dark theme, NO blue
   ════════════════════════════════════════════ */

.wpforms-container {
    background: transparent !important;
}

.wpforms-field-label,
.wpforms-field-sublabel {
    color: var(--text) !important;
    font-family: var(--font-body) !important;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="url"],
.wpforms-field input[type="number"],
.wpforms-field textarea,
.wpforms-field select {
    background: var(--bg-1) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
    transition: border-color 220ms ease !important;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
    border-color: var(--gold) !important;
    outline: none !important;
    box-shadow: none !important;
}

.wpforms-submit-container .wpforms-submit,
.wpforms-container .wpforms-submit,
div.wpforms-container-full .wpforms-form button[type="submit"],
div.wpforms-container-full .wpforms-form .wpforms-submit {
    background: var(--gold) !important;
    color: var(--bg) !important;
    border: 1px solid var(--gold) !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 14px 40px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: background 220ms ease, color 220ms ease !important;
}

.wpforms-submit-container .wpforms-submit:hover,
div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: var(--muted) !important;
}

.wpforms-required-label {
    color: var(--gold) !important;
}


/* ════════════════════════════════════════════
   GUTENBERG CONTENT INSIDE DARK THEME
   ════════════════════════════════════════════ */

.am-page-content h2,
.am-page-content h3,
.am-page-content h4 {
    color: var(--text);
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.am-page-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1em;
}

.am-page-content ul,
.am-page-content ol {
    color: var(--muted);
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.am-page-content li {
    margin-bottom: 0.4em;
    line-height: 1.6;
}

.am-page-content strong {
    color: var(--text);
    font-weight: 600;
}

.am-page-content a {
    color: var(--gold);
}

.am-page-content a:hover {
    color: var(--gold-light);
}

/* Buttons inside page-content keep their own colours */
.am-page-content a.am-btn { text-decoration: none; }
.am-page-content a.am-btn--gold,
.am-page-content a.am-btn--gold:hover { color: var(--bg); }
.am-page-content a.am-btn--dark,
.am-page-content a.am-btn--dark:hover { color: var(--gold); }
.am-page-content a.am-btn--ghost,
.am-page-content a.am-btn--ghost:hover { color: var(--text); }

.am-page-content hr,
.am-page-content .wp-block-separator {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2em 0;
}

.am-page-content .wp-block-columns {
    gap: 32px;
}

.am-page-content {
    max-width: 720px;
}


/* ════════════════════════════════════════════
   FOTO GALLERY — grid with lightbox
   ════════════════════════════════════════════ */
.am-foto-gallery-section {
    background: var(--bg);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.am-foto-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.am-foto-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    display: block;
    cursor: pointer;
}

.am-foto-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
    transition: filter 400ms ease, transform 400ms ease;
}

.am-foto-gallery__item:hover img {
    filter: brightness(1) saturate(1);
    transform: scale(1.04);
}

.am-foto-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    opacity: 0;
    transition: opacity 300ms ease;
    color: var(--text);
}

.am-foto-gallery__item:hover .am-foto-gallery__overlay {
    opacity: 1;
}

/* Mobile: 2-col */
@media (max-width: 767px) {
    .am-foto-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ════════════════════════════════════════════
   TIMELINE — Over page career timeline
   ════════════════════════════════════════════ */
.am-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 80px;
}

.am-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.am-timeline__item {
    position: relative;
    padding-bottom: 40px;
}

.am-timeline__item:last-child {
    padding-bottom: 0;
}

.am-timeline__item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px var(--bg-1);
}

.am-timeline__year {
    position: absolute;
    left: -80px;
    top: 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    width: 28px;
    text-align: right;
}

.am-timeline__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
    line-height: 1.3;
}

.am-timeline__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Mobile: compact timeline */
@media (max-width: 767px) {
    .am-timeline {
        padding-left: 56px;
    }

    .am-timeline::before {
        left: 24px;
    }

    .am-timeline__item::before {
        left: -36px;
    }

    .am-timeline__year {
        left: -56px;
        font-size: 11px;
        width: 20px;
    }
}


/* ════════════════════════════════════════════
   PARTNERS GRID — Over page network section
   ════════════════════════════════════════════ */
.am-partners-intro {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

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

.am-partner-item {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--bg-1);
}

.am-partner-item__title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}

.am-partner-item__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .am-partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════
   PRIJZEN — 4-koloms variant
   ════════════════════════════════════════════ */
@media (min-width: 900px) {
    .am-prijzen-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .am-prijzen-grid--4 .am-prijs-card {
        padding: 24px 18px;
    }
}

/* Badges hidden — content speaks for itself */
.am-prijs-badge {
    display: none;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg);
    padding: 3px 8px;
    margin-bottom: 12px;
}

.am-prijs-card--featured {
    border-color: var(--gold-border, rgba(185,161,87,0.35));
}

.am-prijs-card__sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.5;
}

/* Combi pakket — 2 donkere kaarten */
.am-combi-pakketten {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 32px;
}
@media (max-width: 767px) {
    .am-combi-pakketten { grid-template-columns: 1fr; }
}
.am-combi-pakket {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.am-combi-pakket__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    margin: 0;
}
.am-combi-pakket__price {
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.am-combi-pakket__desc {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ════════════════════════════════════════════
   FOTO SLIDESHOW — auto-fade + arrow nav
   ════════════════════════════════════════════ */
.am-slideshow-section {
    position: relative;
    width: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.am-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

@media (max-width: 767px) {
    .am-slideshow { aspect-ratio: 4 / 3; }
}

.am-slideshow__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
    pointer-events: none;
}
.am-slideshow__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.am-slideshow__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(0.8);
    display: block;
}
.am-slideshow__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(8,8,8,0.75) 0%,
        rgba(8,8,8,0.15) 50%,
        transparent 80%);
    pointer-events: none;
}
.am-slideshow__caption {
    position: absolute;
    bottom: 32px;
    left: 40px;
    right: 40px;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240,235,229,0.55);
}
@media (max-width: 767px) {
    .am-slideshow__caption { left: 20px; bottom: 20px; }
}

/* ── Arrow-nav slideshow ── */
.am-slideshow-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
}
.am-slideshow-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--bg-2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    font-size: 18px;
    line-height: 1;
}
.am-slideshow-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.am-slideshow-nav-counter {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.10em;
    min-width: 52px;
    text-align: center;
}

/* ════════════════════════════════════════════
   PORTFOLIO-THUMBNAIL op dienst-kaarten
   ════════════════════════════════════════════ */
.am-card__thumb-link {
    display: block;
    margin-top: auto;
    padding-top: 20px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}
.am-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: brightness(0.70) saturate(0.8);
    transition: transform 400ms ease, filter 400ms ease;
}
.am-card__thumb-link:hover .am-card__thumb {
    transform: scale(1.04);
    filter: brightness(0.5) saturate(0.7);
}
.am-card__thumb-label {
    display: block;
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--bg-2);
    transition: color var(--transition);
}
.am-card__thumb-link:hover .am-card__thumb-label {
    color: var(--text);
}


/* ════════════════════════════════════════════
   CLIENT LOGO MARQUEE — infinite scroll
   ════════════════════════════════════════════ */

.am-clients {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.am-clients__header {
    text-align: center;
    margin-bottom: 28px;
}

.am-clients__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Outer clip container — hides items outside viewport */
.am-clients__track-wrap {
    overflow: hidden;
    /* Fade edges for a polished look */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* The scrolling track — items rendered twice for seamless loop */
.am-clients__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: am-marquee 32s linear infinite;
    will-change: transform;
}

.am-clients__track:hover {
    animation-play-state: paused;
}

@keyframes am-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual logo slot */
.am-clients__logo {
    flex-shrink: 0;
    padding: 0 40px;
    opacity: 0.35;
    transition: opacity 280ms ease;
    /* Separator dot */
    position: relative;
}

.am-clients__logo::after {
    content: '·';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border);
    font-size: 20px;
    line-height: 1;
}

.am-clients__logo:hover {
    opacity: 0.75;
}

/* Logo image */
.am-clients__logo img {
    height: 32px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
    filter: grayscale(1) brightness(2.2) contrast(0.85);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .am-clients__track {
        animation: none;
    }
}


/* ════════════════════════════════════════════
   FOTO MASONRY GALERIE
   ════════════════════════════════════════════ */

.am-photo-masonry {
    columns: 3;
    column-gap: 4px;
    margin-top: 40px;
}

/* Kleinere variant (bijv. fine art sectie op diensten pagina) */
.am-photo-masonry--sm {
    columns: 4;
}

.am-photo-masonry__item {
    display: block;
    break-inside: avoid;
    margin-bottom: 4px;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.am-photo-masonry__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 380ms ease, filter 380ms ease;
    filter: brightness(0.88) saturate(0.85);
}

.am-photo-masonry__item:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
}

/* Sectie-intro tekst (boven de masonry) */
.am-section__intro {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

/* ── Fine art: gecentreerde header met grote subtitle ── */
.am-fineart__header {
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.am-fineart__subtitle {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Fine art: meta rij (tekst + specs naast elkaar) ── */
.am-fineart__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.am-fineart__text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.am-fineart__text p {
    margin-bottom: 16px;
}

.am-fineart__text strong {
    color: var(--text);
    font-weight: 600;
}

.am-fineart__text .am-btn {
    margin-top: 8px;
}

/* Specs kolom */
.am-fineart__specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.am-fineart__spec {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.am-fineart__spec:last-child {
    border-bottom: none;
}

.am-fineart__spec-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.am-fineart__spec-value {
    display: block;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

/* ── Foto sectie header (galerie pagina) ── */
.am-foto-section .am-section__header {
    text-align: left;
    margin-bottom: 0;
}

/* Responsive fine art meta */
@media (max-width: 768px) {
    .am-fineart__meta {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════ */

.am-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.93);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.am-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.am-lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.am-lightbox__img {
    position: relative;
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.am-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 180ms ease;
    z-index: 1;
    padding: 4px 8px;
}

.am-lightbox__close:hover { opacity: 1; }

.am-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 36px;
    padding: 10px 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 180ms ease, background 180ms ease;
    z-index: 1;
}

.am-lightbox__nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.65);
}

.am-lightbox__prev { left: 16px; }
.am-lightbox__next { right: 16px; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .am-photo-masonry     { columns: 2; }
    .am-photo-masonry--sm { columns: 3; }
}

@media (max-width: 560px) {
    .am-photo-masonry     { columns: 1; }
    .am-photo-masonry--sm { columns: 2; }
    .am-fineart__specs    { flex-direction: column; gap: 16px; }
}

/* ════════════════════════════════════════════
   FOTO PORTFOLIO GRID — /fotografie/ archief-sectie
   ════════════════════════════════════════════ */
.am-foto-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 40px;
}

.am-foto-portfolio-grid__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--surface);
    text-decoration: none;
}

.am-foto-portfolio-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
    display: block;
}

.am-foto-portfolio-grid__item:hover img {
    transform: scale(1.04);
}

.am-foto-portfolio-grid__caption {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    color: var(--text);
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 24px 12px 10px;
    opacity: 0;
    transition: opacity 220ms ease;
}

.am-foto-portfolio-grid__item:hover .am-foto-portfolio-grid__caption {
    opacity: 1;
}

@media (max-width: 900px) {
    .am-foto-portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
    .am-foto-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
