/* =========================================================================
   Moskeetour.nl - global styles
   Gebaseerd op .claude/skills/brand-guidelines/SKILL.md
   Deep teal (#1A3C5E) + warm gold (#C8883A) + cream (#F7F3EE) + terracotta (#8B2E2E)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* === Brand palette (per brand-guidelines.md) === */
    --mt-primary:        #1A3C5E;  /* deep teal - koepel, vertrouwen */
    --mt-primary-light:  #2E6B8A;
    --mt-primary-50:     #E8EEF4;
    --mt-primary-10:     #F3F6FA;

    --mt-gold:           #C8883A;  /* warm amber - uitnodiging, islamitische kunst */
    --mt-gold-light:     #E8B06A;
    --mt-gold-50:        #FBF3E4;

    --mt-accent:         #8B2E2E;  /* terracotta - urgentie, schaarse plekken */
    --mt-accent-light:   #B04A4A;

    --mt-ink:            #1C1C1C;  /* bodytekst donker */
    --mt-body:           #3B3A37;  /* iets zachter voor lopende tekst */
    --mt-muted:          #5A5A5A;

    --mt-cream:          #F7F3EE;  /* warm crème achtergrond */
    --mt-sand:           #EFE8DD;  /* iets dieper, voor kaart-achtergronden */
    --mt-line:           #DDD4C4;
    --mt-white:          #FFFFFF;

    --mt-dark:           #131F2B;  /* footer - diepe blauw-zwart, past bij teal */
    --mt-whatsapp:       #25D366;
    --mt-whatsapp-dark:  #128C7E;

    --mt-success:        #27AE60;
    --mt-error:          #C0392B;

    /* === Radii (brand-guidelines: knoppen 8px, kaarten 12px, inputs 6px) === */
    --r-xs:  4px;
    --r-sm:  6px;
    --r-md:  8px;
    --r-lg:  12px;
    --r-xl:  20px;
    --r-pill: 999px;    /* alleen voor chip/badge, niet voor primaire knoppen */

    --shadow-sm: 0 1px 2px rgba(26, 60, 94, 0.06), 0 2px 6px rgba(26, 60, 94, 0.04);
    --shadow-md: 0 6px 18px rgba(26, 60, 94, 0.08), 0 2px 6px rgba(26, 60, 94, 0.04);
    --shadow-lg: 0 20px 48px rgba(26, 60, 94, 0.14), 0 6px 16px rgba(26, 60, 94, 0.06);

    /* === Layout === */
    --container: 1240px;
    --section-py: clamp(56px, 8vw, 104px);

    /* === Type === */
    --font-serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
    --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--mt-body);
    background: var(--mt-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--mt-primary-light); text-decoration: none; }
a:hover { color: var(--mt-primary); text-decoration: underline; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Focus is essential per CLAUDE.md */
:focus-visible {
    outline: 3px solid var(--mt-gold);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}
a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--mt-gold);
    outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--mt-primary);
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 0.5em;
    letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; color: var(--mt-ink); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mt-gold);
    margin-bottom: 0.75rem;
}
p { margin: 0 0 1rem; }
.lead {
    font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
    color: var(--mt-body);
    max-width: 62ch;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}
.section { padding: var(--section-py) 0; }
.section--sand { background: var(--mt-sand); }
.section--cream { background: var(--mt-cream); }
.section--gold { background: var(--mt-gold-50); }
.section--primary { background: var(--mt-primary); color: #E9EEF3; }
.section--primary h1, .section--primary h2, .section--primary h3 { color: var(--mt-white); }
.section--primary .eyebrow { color: var(--mt-gold-light); }
.section--dark { background: var(--mt-dark); color: #D8DDE3; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--mt-white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { font-size: 1.0625rem; }

/* ---------- Islamic motif divider ---------- */
.motif-divider {
    text-align: center;
    margin: 32px auto;
    color: var(--mt-gold);
    font-size: 1.25rem;
    letter-spacing: 1.5em;
    opacity: 0.7;
    user-select: none;
}
.motif-divider::before { content: "✦ ❋ ✦"; }

/* ---------- Buttons (8px radius per brand-guidelines) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 24px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-align: center;
    transition: transform .15s, background .2s, color .2s, box-shadow .2s, border-color .2s;
    white-space: nowrap;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

/* Primary (aanmelden/boeken) - warm gold per brand-guidelines */
.btn--primary {
    background: var(--mt-gold);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(200, 136, 58, 0.28);
}
.btn--primary:hover { background: #B0771F; color: #fff; box-shadow: 0 6px 18px rgba(200, 136, 58, 0.36); }

/* Urgency (schaarse plekken, alleen spaarzaam gebruiken) - terracotta */
.btn--urgent {
    background: var(--mt-accent);
    color: #fff;
}
.btn--urgent:hover { background: #A23838; color: #fff; }

/* Secondary - teal outline */
.btn--outline {
    background: transparent;
    color: var(--mt-primary);
    border-color: var(--mt-primary);
}
.btn--outline:hover { background: var(--mt-primary); color: #fff; }

.btn--outline-gold {
    background: transparent;
    color: var(--mt-gold);
    border-color: var(--mt-gold);
}
.btn--outline-gold:hover { background: var(--mt-gold); color: #fff; }

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: #fff; color: var(--mt-primary); }

.btn--ghost {
    background: var(--mt-white);
    color: var(--mt-primary);
    border-color: var(--mt-line);
}
.btn--ghost:hover { border-color: var(--mt-primary); }

.btn--whatsapp {
    background: var(--mt-whatsapp);
    color: #fff;
}
.btn--whatsapp:hover { background: var(--mt-whatsapp-dark); color: #fff; }

.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn--lg { padding: 18px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 12px 0;
    background: rgba(247, 243, 238, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .2s, box-shadow .2s;
}
.site-header.is-scrolled {
    background: rgba(247, 243, 238, 0.96);
    box-shadow: 0 1px 0 var(--mt-line), 0 4px 12px rgba(26, 60, 94, 0.04);
}
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--mt-white);
    border-radius: var(--r-xl);
    padding: 10px 12px 10px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mt-line);
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--mt-primary);
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    text-decoration: none;
}
.nav__brand:hover { text-decoration: none; color: var(--mt-primary); }
.nav__brand img {
    height: 40px;
    width: auto;
    display: block;
    /* The supplied logo SVG renders as solid white (designed for dark BG).
       Tint to brand teal for the light header pill. Replace with a properly
       coloured logo file when available. */
    filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(1400%) hue-rotate(180deg);
}
.nav__divider {
    width: 1px;
    height: 24px;
    background: var(--mt-line);
}
.nav__social {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--mt-muted);
}
.nav__social a {
    display: grid; place-items: center;
    width: 34px; height: 34px;
    border-radius: var(--r-pill);
    color: var(--mt-muted);
    transition: background .2s, color .2s;
}
.nav__social a:hover { background: var(--mt-sand); color: var(--mt-primary); }
.nav__spacer { flex: 1; }
.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__link {
    padding: 10px 14px;
    border-radius: var(--r-md);
    color: var(--mt-ink);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background .15s, color .15s;
    text-decoration: none;
}
.nav__link:hover { background: var(--mt-sand); color: var(--mt-primary); text-decoration: none; }
.nav__link.is-active { background: var(--mt-sand); color: var(--mt-primary); font-weight: 600; }
.nav__link--pill {
    border: 1.5px solid var(--mt-gold);
    color: var(--mt-primary);
    padding: 9px 16px;
}
.nav__link--pill:hover,
.nav__link--pill.is-active {
    background: var(--mt-gold);
    color: #fff;
    border-color: var(--mt-gold);
}
.nav__toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: var(--r-pill);
    color: var(--mt-primary);
    background: transparent;
}
.nav__toggle:hover { background: var(--mt-sand); }

@media (max-width: 960px) {
    .nav { padding: 8px 8px 8px 16px; }
    .nav__social, .nav__divider { display: none; }
    .nav__links { display: none; }
    .nav__toggle { display: grid; place-items: center; }
}
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--mt-cream);
    z-index: 60;
    display: none;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: var(--r-pill); display: grid; place-items: center; color: var(--mt-primary); }
.mobile-nav__close:hover { background: var(--mt-sand); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0; }
.mobile-nav__list a {
    padding: 18px 8px;
    color: var(--mt-primary);
    font-size: 1.25rem;
    font-weight: 500;
    font-family: var(--font-serif);
    border-bottom: 1px solid var(--mt-line);
    text-decoration: none;
}
.mobile-nav__list a.is-active { color: var(--mt-gold); }
.mobile-nav__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 104px);
    overflow: hidden;
    background:
      radial-gradient(circle at 85% 15%, rgba(200, 136, 58, 0.08), transparent 55%),
      radial-gradient(circle at 10% 90%, rgba(26, 60, 94, 0.05), transparent 55%);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
    color: var(--mt-primary);
}
.hero h1 em {
    font-style: italic;
    color: var(--mt-gold);
    font-weight: 500;
}
.hero__sub {
    font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
    max-width: 52ch;
    margin-bottom: 2rem;
    color: var(--mt-body);
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}
.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--mt-body);
}
.hero__trust strong { color: var(--mt-primary); }
.hero__stars { color: var(--mt-gold); letter-spacing: 2px; font-size: 0.875rem; }

.hero__media {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
    transition: transform .6s ease;
}
.hero__media:hover img { transform: scale(1.03); }
.hero__arch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 86%;
    height: 94%;
    border-radius: 50% 50% 8px 8px / 62% 62% 8px 8px;
    border: 2px solid rgba(232, 176, 106, 0.55);
    border-bottom: none;
    pointer-events: none;
}
.hero__ornament {
    position: absolute;
    font-family: var(--font-serif);
    color: var(--mt-gold);
    opacity: 0.35;
    font-size: 7rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.hero__ornament--tr { top: -20px; right: -8px; }
.hero__ornament--bl { bottom: -36px; left: -12px; transform: rotate(180deg); }

@media (max-width: 860px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__media { aspect-ratio: 4/3; order: -1; max-height: 420px; }
}

/* Hero variant: full-bleed image (for guide/reizen pages) */
.hero--feature {
    position: relative;
    min-height: 360px;
    padding: 100px 0 80px;
    overflow: hidden;
    color: #fff;
    background: var(--mt-primary);
}
.hero--feature::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(19, 31, 43, 0.82), rgba(19, 31, 43, 0.4)),
        var(--mt-hero-image, none) center/cover no-repeat;
    z-index: 0;
}
.hero--feature > .container { position: relative; z-index: 1; }
.hero--feature h1,
.hero--feature .eyebrow { color: #fff; }
.hero--feature .eyebrow { color: var(--mt-gold-light); }
.hero--feature p { color: rgba(255, 255, 255, 0.88); }

/* ---------- Product cards (homepage 3-col) ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--mt-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mt-line);
    transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-card__media {
    aspect-ratio: 16/11;
    background: linear-gradient(135deg, var(--mt-sand), var(--mt-gold-50));
    position: relative;
    overflow: hidden;
}
.product-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
    transition: transform .5s;
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--mt-white);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mt-primary);
    box-shadow: var(--shadow-sm);
}
.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__eyebrow {
    font-size: 0.75rem;
    color: var(--mt-gold);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--mt-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}
.product-card__meta {
    font-size: 0.9375rem;
    color: var(--mt-body);
    margin-bottom: 16px;
}
.product-card__footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mt-body);
}
.product-card__status--warn { color: var(--mt-accent); }
.product-card__status--ok { color: var(--mt-success); }

/* ---------- Tour card (overview pages) ---------- */
.tour-card {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 24px;
    padding: 20px;
    background: var(--mt-white);
    border-radius: var(--r-lg);
    border: 1px solid var(--mt-line);
    box-shadow: var(--shadow-sm);
    align-items: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tour-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--mt-gold-light); }
.tour-card__media {
    aspect-ratio: 4/3;
    border-radius: var(--r-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--mt-sand), var(--mt-gold-50));
    position: relative;
}
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tour-card__audience {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 11px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--r-pill);
    background: var(--mt-white);
    color: var(--mt-primary);
    box-shadow: var(--shadow-sm);
}
.tour-card__audience--ladies { background: var(--mt-accent); color: #fff; }
.tour-card__body h3 { margin-bottom: 8px; font-size: 1.25rem; }
.tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    font-size: 0.9375rem;
    color: var(--mt-body);
    margin-bottom: 12px;
}
.tour-card__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.tour-card__meta-item svg { color: var(--mt-gold); flex-shrink: 0; }
.tour-card__mosques {
    font-size: 0.875rem;
    color: var(--mt-muted);
    margin-bottom: 0;
}
.tour-card__price {
    text-align: right;
    min-width: 150px;
}
.tour-card__price-value {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--mt-primary);
    line-height: 1;
}
.tour-card__price-note { font-size: 0.8125rem; color: var(--mt-muted); margin: 4px 0 14px; }
.tour-card__spots {
    font-size: 0.8125rem;
    margin-top: 10px;
    color: var(--mt-body);
}
.tour-card__spots--low { color: var(--mt-accent); font-weight: 600; }

@media (max-width: 860px) {
    .tour-card { grid-template-columns: 1fr; gap: 16px; }
    .tour-card__price { text-align: left; min-width: 0; padding-top: 12px; border-top: 1px solid var(--mt-line); }
}

/* ---------- Month filter tabs ---------- */
.month-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    margin: 0 -20px;
    padding: 4px 20px 12px;
}
.month-filter::-webkit-scrollbar { height: 6px; }
.month-filter::-webkit-scrollbar-thumb { background: var(--mt-line); border-radius: 3px; }
.month-filter__btn {
    padding: 11px 18px;
    border-radius: var(--r-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--mt-primary);
    background: var(--mt-white);
    border: 1.5px solid var(--mt-line);
    white-space: nowrap;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.month-filter__btn:hover { border-color: var(--mt-primary); }
.month-filter__btn.is-active {
    background: var(--mt-primary);
    color: var(--mt-white);
    border-color: var(--mt-primary);
}
.month-filter__count {
    padding: 2px 8px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
}
.month-filter__btn:not(.is-active) .month-filter__count {
    background: var(--mt-sand);
    color: var(--mt-muted);
}

/* ---------- Journey / timeline (homepage + guide) ---------- */
.journey {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.4fr;
    gap: 64px;
    align-items: flex-start;
}
.journey__sticky {
    position: sticky;
    top: 100px;
}
.journey__sticky h2 { margin-bottom: 20px; }
.journey__list { position: relative; padding: 0 0 0 36px; list-style: none; margin: 0; }
.journey__list::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--mt-gold), var(--mt-line));
}
.journey__step { position: relative; margin-bottom: 32px; }
.journey__step:last-child { margin-bottom: 0; }
.journey__marker {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--mt-white);
    border: 2px solid var(--mt-gold);
    display: grid; place-items: center;
    color: var(--mt-primary);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.9375rem;
}
.journey__card {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
}
.journey__card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--r-md);
    margin-bottom: 16px;
    background: var(--mt-sand);
}
.journey__card h3 { margin: 0 0 8px; font-size: 1.1875rem; }
.journey__card p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
    .journey { grid-template-columns: 1fr; gap: 32px; }
    .journey__sticky { position: static; }
}

/* ---------- Testimonial banner ---------- */
.testimonial {
    background: var(--mt-gold-50);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 56px);
    text-align: center;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--mt-gold);
}
.testimonial__avatar {
    width: 72px; height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mt-primary), var(--mt-gold));
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
}
.testimonial__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    color: var(--mt-primary);
    font-weight: 500;
    line-height: 1.4;
    margin: 0 auto 16px;
    max-width: 640px;
    font-style: italic;
}
.testimonial__quote::before,
.testimonial__quote::after {
    color: var(--mt-gold);
    font-size: 1.5em;
    line-height: 0;
    vertical-align: -0.3em;
}
.testimonial__quote::before { content: "“"; margin-right: 4px; }
.testimonial__quote::after  { content: "”"; margin-left: 4px; }
.testimonial__author {
    font-size: 0.9375rem;
    color: var(--mt-body);
}
.testimonial__author strong { color: var(--mt-primary); }
.testimonial__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--mt-body);
}
.testimonial__stars { color: var(--mt-gold); letter-spacing: 2px; }

.testimonial-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.testimonial-cta span { color: var(--mt-body); font-weight: 500; }

/* Testimonial carousel arrows (wireframe 2.4) */
.testimonial-nav { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.testimonial-nav button {
    width: 40px; height: 40px;
    border-radius: var(--r-pill);
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    display: grid; place-items: center;
    color: var(--mt-primary);
    cursor: pointer;
    transition: all .15s;
}
.testimonial-nav button:hover { border-color: var(--mt-gold); color: var(--mt-gold); }

/* ---------- Instafeed grid ---------- */
.instafeed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.instafeed__tile {
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--mt-sand), var(--mt-gold-50));
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: var(--mt-white);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    text-decoration: none;
    transition: transform .2s;
}
.instafeed__tile:hover { transform: scale(1.02); text-decoration: none; color: #fff; }
.instafeed__tile::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(19, 31, 43, 0.7), transparent 55%);
    transition: opacity .2s;
}
.instafeed__tile > * { position: relative; z-index: 1; }
.instafeed__tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 720px) {
    .instafeed { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Why choose us (shared) ---------- */
.why {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.why__card {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.why__card h3 { margin-bottom: 16px; color: var(--mt-primary); }
.why__card .eyebrow { color: var(--mt-gold); }
.why__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.why__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--mt-body);
}
.why__list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--mt-gold);
}
.why__list strong { color: var(--mt-primary); display: block; margin-bottom: 2px; font-size: 1rem; }

.why__card--review blockquote {
    font-family: var(--font-serif);
    color: var(--mt-primary);
    font-size: 1.0625rem;
    line-height: 1.45;
    margin: 0 0 16px;
    font-style: italic;
}
.why__card--review cite {
    font-style: normal;
    font-size: 0.8125rem;
    color: var(--mt-muted);
}

@media (max-width: 900px) {
    .why { grid-template-columns: 1fr; }
}

/* Trust badges strip (below why-us) */
.trust-strip {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.trust-strip__card {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9375rem;
    color: var(--mt-body);
}
.trust-strip__card strong { display: block; color: var(--mt-primary); font-size: 1rem; }
.trust-strip__card .row { gap: 8px; margin-top: 6px; }
.trust-strip__card .badge {
    padding: 4px 10px;
    border-radius: var(--r-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: var(--mt-primary-50);
    color: var(--mt-primary);
}
@media (max-width: 720px) {
    .trust-strip { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--mt-dark);
    color: #C9CED5;
    padding: 64px 0 24px;
}
.site-footer a { color: #E5E9EE; text-decoration: none; }
.site-footer a:hover { color: var(--mt-gold-light); text-decoration: none; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { color: #fff; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: #9DA4AE; font-size: 0.9375rem; max-width: 260px; }
.footer-col h4 {
    color: var(--mt-white);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a { display: inline-flex; align-items: center; gap: 10px; font-size: 0.9375rem; }
.footer-col svg { color: var(--mt-gold-light); flex-shrink: 0; }
.footer-payments {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.footer-payments span {
    padding: 4px 10px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.08);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    font-size: 0.8125rem;
    color: #8A919B;
}
.footer-bottom a { color: #B0B7C1; }
@media (max-width: 860px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--mt-whatsapp);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.15);
    z-index: 50;
    transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; text-decoration: none; }
.whatsapp-fab::after {
    content: "";
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--mt-whatsapp);
    opacity: 0.4;
    animation: pulse 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Forms (6px radius per brand-guidelines) ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--mt-ink);
    margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 13px 14px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--mt-line);
    background: var(--mt-white);
    color: var(--mt-ink);
    font: inherit;
    font-size: 1rem;
    transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--mt-gold);
    box-shadow: 0 0 0 3px var(--mt-gold-50);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field__hint { font-size: 0.8125rem; color: var(--mt-muted); margin-top: 6px; }
.form-field__required { color: var(--mt-accent); }
.form-field__error {
    display: none;
    margin-top: 6px;
    font-size: 0.8125rem;
    color: var(--mt-error);
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--mt-error); }
.form-field.has-error .form-field__error { display: block; }

.form-topics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.form-topic {
    padding: 10px 16px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--mt-line);
    background: var(--mt-white);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mt-primary);
    cursor: pointer;
    transition: all .15s;
}
.form-topic.is-active,
.form-topic:hover {
    border-color: var(--mt-gold);
    background: var(--mt-gold-50);
    color: var(--mt-primary);
}

.form-success {
    padding: 16px 20px;
    background: #E6F6EC;
    border: 1px solid var(--mt-success);
    border-radius: var(--r-md);
    color: #1E7A41;
    margin-bottom: 20px;
    display: none;
}
.form-success.is-visible { display: block; }

/* ---------- Contact cards ---------- */
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--r-md);
    color: var(--mt-ink);
    font-weight: 500;
    transition: all .15s;
    text-decoration: none;
}
.contact-card:hover { border-color: var(--mt-gold); color: var(--mt-ink); text-decoration: none; transform: translateY(-1px); }
.contact-card__icon {
    width: 40px; height: 40px;
    border-radius: var(--r-md);
    background: var(--mt-primary-50);
    color: var(--mt-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contact-card--wa { background: var(--mt-whatsapp); color: #fff; border-color: var(--mt-whatsapp); }
.contact-card--wa .contact-card__icon { background: rgba(255,255,255,0.2); color: #fff; }
.contact-card--wa:hover { background: var(--mt-whatsapp-dark); color: #fff; }

/* ---------- FAQ ---------- */
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: var(--mt-white);
    border-radius: var(--r-xl);
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--mt-line);
}
.faq-nav { position: sticky; top: 100px; }
.faq-nav h4 { color: var(--mt-primary); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 700; }
.faq-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.faq-nav button {
    text-align: left;
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 0.9375rem;
    color: var(--mt-body);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .15s, color .15s;
    cursor: pointer;
}
.faq-nav button:hover { background: var(--mt-sand); color: var(--mt-primary); }
.faq-nav button.is-active { background: var(--mt-primary); color: var(--mt-white); font-weight: 500; }
.faq-nav__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: currentColor; opacity: 0.4;
}
.faq-nav button.is-active .faq-nav__dot { opacity: 1; }

.faq-category { margin-bottom: 48px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category__intro { color: var(--mt-body); margin-bottom: 24px; }
.faq-item {
    border: 1px solid var(--mt-line);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--mt-white);
    transition: border-color .15s;
}
.faq-item[open] { border-color: var(--mt-gold); }
.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--mt-primary);
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--mt-cream); }
.faq-item summary::after {
    content: "";
    width: 10px; height: 10px;
    border-right: 2px solid var(--mt-gold);
    border-bottom: 2px solid var(--mt-gold);
    transform: rotate(45deg);
    transition: transform .2s;
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body { padding: 0 22px 20px; color: var(--mt-body); }
.faq-item__body p:last-child { margin-bottom: 0; }

@media (max-width: 820px) {
    .faq-layout { grid-template-columns: 1fr; gap: 24px; }
    .faq-nav { position: static; }
    .faq-nav ul { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 4px; }
    .faq-nav button { white-space: nowrap; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--stack-gap, 16px); }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--mt-sand);
    color: var(--mt-primary);
}
.pill--gold { background: var(--mt-gold-50); color: var(--mt-gold); }
.pill--primary { background: var(--mt-primary); color: var(--mt-white); }
.pill--accent { background: var(--mt-accent); color: #fff; }

.divider {
    height: 1px;
    background: var(--mt-line);
    margin: 32px 0;
    border: 0;
}

/* .reveal is retained as a hook but no longer hides content by default.
   Keeping journey + cards visible for SEO, crawlers, and screenshot parity. */
.reveal { opacity: 1; transform: none; transition: opacity .4s ease; }

/* Sticky bottom CTA (detail/reizen pages) */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 140%);
    background: var(--mt-primary);
    color: var(--mt-white);
    padding: 10px 12px 10px 22px;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-lg);
    z-index: 45;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: transform .3s ease;
    font-weight: 500;
}
.sticky-cta.is-visible { transform: translate(-50%, 0); }
.sticky-cta .btn { padding: 10px 18px; }
@media (max-width: 600px) {
    .sticky-cta {
        left: 16px; right: 16px;
        transform: translateY(140%);
        bottom: 88px;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    .sticky-cta.is-visible { transform: translateY(0); }
    .sticky-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Guide page (wat-kan-je-verwachten) ---------- */
.guide-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--mt-line);
}
.guide-step:first-child { border-top: 0; padding-top: 0; }
.guide-step__num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mt-gold);
    line-height: 1;
}
.guide-step__body h3 { margin-bottom: 8px; }

/* Contact-page two-col layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Info tiles (moskeetours practical info) */
.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.info-tile {
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--r-lg);
    padding: 24px;
}
.info-tile__icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: var(--mt-gold-50);
    color: var(--mt-gold);
    display: grid; place-items: center;
    margin-bottom: 16px;
}
.info-tile h3 { font-size: 1.125rem; margin-bottom: 8px; }
.info-tile p:last-child { margin-bottom: 0; }
