/*
 * FOCUS_ADVENTURES_ROADTRIP_JOURNAL_CSS_V7
 */
:root {
    color-scheme: dark;
    --bg: #071019;
    --panel: #0f1d2a;
    --panel-2: #142433;
    --text: #f3f6f8;
    --muted: #9aacbb;
    --line: rgba(255,255,255,.11);
    --accent: #7dddb5;
    --accent-2: #64bde8;
    --warm: #e6b66a;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow: 0 24px 70px rgba(0,0,0,.32);
    --content: min(1480px, calc(100% - 36px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0, rgba(100,189,232,.09), transparent 34rem),
        radial-gradient(circle at 90% 20%, rgba(125,221,181,.06), transparent 30rem),
        var(--bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: var(--content);
    margin: 0 auto;
    padding: 18px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(125,221,181,.36);
    border-radius: 15px;
    color: #06121a;
    background: linear-gradient(145deg,var(--accent),var(--accent-2));
    font-weight: 950;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 16px; }
.brand-copy small { color: var(--muted); font-size: 11px; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: var(--muted); font-size: 13px; font-weight: 800; text-decoration: none; }
.site-nav a:hover { color: var(--text); }

.kicker {
    margin: 0 0 9px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}
.button.primary {
    border-color: rgba(125,221,181,.45);
    color: #07131a;
    background: linear-gradient(145deg,var(--accent),var(--accent-2));
}
.button.ghost { color: var(--text); background: rgba(255,255,255,.055); }

/* Home */
.home-hero {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(310px,.6fr);
    gap: 44px;
    align-items: end;
    width: var(--content);
    min-height: 72vh;
    margin: 0 auto;
    padding: 70px 0 90px;
}
.home-hero-copy h1 {
    margin: 0;
    max-width: 1050px;
    font-size: clamp(52px,9vw,126px);
    line-height: .88;
    letter-spacing: -.065em;
}
.home-hero-copy h1 span { display: block; color: var(--accent); }
.home-hero-intro {
    max-width: 760px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(18px,2vw,23px);
    line-height: 1.65;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.home-hero-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    box-shadow: var(--shadow);
}
.home-hero-label { color: var(--warm); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.home-hero-panel ul { display: grid; gap: 15px; margin: 20px 0 0; padding: 0; list-style: none; }
.home-hero-panel li { position: relative; padding-left: 24px; color: #e5ebef; line-height: 1.5; }
.home-hero-panel li::before { position: absolute; left: 0; content: "→"; color: var(--accent); font-weight: 900; }

.trip-overview { width: var(--content); margin: 0 auto; padding: 20px 0 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(36px,6vw,74px); letter-spacing: -.045em; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.6; }
.trip-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,360px),1fr)); gap: 22px; }
.trip-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); box-shadow: var(--shadow); }
.trip-card-cover { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--panel-2); }
.trip-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.trip-card:hover .trip-card-cover img { transform: scale(1.025); }
.trip-card-badge { position: absolute; top: 14px; right: 14px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(6,15,23,.76); backdrop-filter: blur(10px); font-size: 11px; font-weight: 900; }
.trip-card-body { padding: 22px; }
.trip-card-date { margin: 0 0 8px; color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.trip-card h3 { margin: 0; font-size: 27px; line-height: 1.1; }
.trip-card h3 a { text-decoration: none; }
.trip-card-subtitle { min-height: 3em; margin: 13px 0 0; color: var(--muted); line-height: 1.55; }
.trip-card-footer { display: flex; justify-content: space-between; gap: 16px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.trip-card-footer a { color: var(--accent); font-weight: 900; text-decoration: none; }
.empty-state { padding: 30px; border: 1px dashed var(--line); border-radius: var(--radius-md); color: var(--muted); }

/* Hero */
.trip-hero { position: relative; min-height: min(84vh,920px); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg,#10202f,#071019); }
.trip-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trip-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(4,10,16,.94) 0%,rgba(4,10,16,.74) 43%,rgba(4,10,16,.2) 100%),linear-gradient(0deg,rgba(4,10,16,.78),transparent 50%); }
.trip-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: var(--content); min-height: min(84vh,920px); margin: 0 auto; padding: 70px 0; }
.trip-back { align-self: flex-start; margin-bottom: 70px; color: #dbe5ea; font-size: 13px; font-weight: 850; text-decoration: none; }
.trip-hero h1 { max-width: 960px; margin: 0; font-size: clamp(54px,9vw,120px); line-height: .9; letter-spacing: -.06em; }
.trip-hero-subtitle { max-width: 780px; margin: 24px 0 0; color: #d1dce2; font-size: clamp(17px,2vw,23px); line-height: 1.55; }
.trip-hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trip-hero-stats span { min-width: 105px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm); background: rgba(5,13,20,.45); backdrop-filter: blur(10px); color: #d9e2e7; font-size: 11px; text-transform: uppercase; }
.trip-hero-stats strong { display: block; color: var(--text); font-size: 20px; }
.trip-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* Journal */
.journal-shell { display: grid; grid-template-columns: minmax(300px,360px) minmax(0,1fr); gap: clamp(34px,5vw,80px); width: var(--content); margin: 0 auto; padding: 90px 0 120px; }
.journey-card { position: sticky; top: 22px; padding: 21px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(155deg,rgba(20,36,51,.98),rgba(11,22,33,.98)); box-shadow: var(--shadow); }
.journey-card-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.journey-card-head h2 { margin: 0; font-size: 28px; }
.journey-progress-value { color: var(--accent); font-size: 13px; font-weight: 900; }
.journey-progress-track { height: 5px; margin: 18px 0 20px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.journey-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--accent-2),var(--accent)); transition: width .25s ease; }
.journey-days { position: relative; display: grid; gap: 4px; }
.journey-days::before { position: absolute; top: 20px; bottom: 20px; left: 18px; width: 2px; background: rgba(255,255,255,.08); content: ""; }
.journey-days a { position: relative; z-index: 1; display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 12px; align-items: center; padding: 10px; border: 1px solid transparent; border-radius: var(--radius-sm); text-decoration: none; }
.journey-days a:hover { background: rgba(255,255,255,.04); }
.journey-days a.is-active { border-color: rgba(125,221,181,.28); background: rgba(125,221,181,.07); }
.journey-day-dot { display: grid; place-items: center; width: 36px; height: 36px; border: 2px solid rgba(255,255,255,.17); border-radius: 50%; color: var(--muted); background: var(--panel); font-size: 11px; font-weight: 900; }
.journey-days a.is-active .journey-day-dot { border-color: var(--accent); color: #07131a; background: var(--accent); }
.journey-day-copy { display: grid; gap: 3px; min-width: 0; }
.journey-day-copy strong,.journey-day-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.journey-day-copy strong { font-size: 13px; line-height: 1.3; }
.journey-day-copy small { color: var(--muted); font-size: 10px; }
.journey-downloads { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.journey-downloads a { display: grid; place-items: center; min-height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); font-size: 11px; font-weight: 850; text-decoration: none; }

.journal-content { min-width: 0; }
.journal-day { margin-bottom: 120px; scroll-margin-top: 24px; }
.journal-day:last-child { margin-bottom: 0; }
.journal-day-head { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 18px; align-items: start; margin-bottom: 28px; }
.journal-day-number { display: grid; place-items: center; width: 78px; height: 78px; border: 1px solid rgba(125,221,181,.34); border-radius: 22px; color: #07131a; background: linear-gradient(145deg,var(--accent),var(--accent-2)); }
.journal-day-number span { font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.journal-day-number strong { margin-top: -4px; font-size: 29px; }
.journal-day-head h2 { margin: 0; max-width: 900px; font-size: clamp(38px,6vw,72px); line-height: .98; letter-spacing: -.05em; }
.journal-day-location { margin: 11px 0 0; color: var(--muted); line-height: 1.45; }
.journal-story { max-width: 900px; margin-bottom: 32px; padding: clamp(22px,3vw,34px); border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018)); }
.journal-story p { margin: 0; color: #e6edf1; font-size: clamp(17px,1.8vw,20px); line-height: 1.78; }
.journal-story p + p { margin-top: 19px; }

.journal-photo-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-flow: dense; gap: 15px; }
.journal-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--panel); }
.journal-photo-wide { grid-column: 1/-1; }
.journal-photo-tall { grid-row: span 2; }
.journal-photo-button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.journal-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease,filter .35s ease; }
.journal-photo-wide img { aspect-ratio: 16/9; }
.journal-photo-tall img { height: 100%; min-height: 520px; aspect-ratio: auto; }
.journal-photo-button:hover img { transform: scale(1.02); filter: brightness(1.06); }
.journal-photo figcaption { display: grid; gap: 4px; padding: 12px 14px; }
.journal-photo figcaption strong { font-size: 13px; }
.journal-photo figcaption span { color: var(--muted); font-size: 11px; }

/* Lightbox */
.lightbox { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(2,7,11,.93); backdrop-filter: blur(14px); }
.lightbox[hidden] { display: none; }
.lightbox-inner { display: grid; gap: 12px; width: min(1300px,100%); max-height: calc(100vh - 56px); }
.lightbox-inner img { width: 100%; max-height: calc(100vh - 140px); object-fit: contain; border-radius: var(--radius-md); }
.lightbox-caption { display: grid; gap: 4px; text-align: center; }
.lightbox-caption span { color: var(--muted); font-size: 12px; }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: rgba(255,255,255,.07); font-size: 27px; cursor: pointer; }

/* Footer */
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: var(--content); margin: 0 auto; padding: 34px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.site-footer > div { display: grid; gap: 3px; }
.site-footer strong { color: var(--text); }
.site-footer p { max-width: 560px; margin: 0; text-align: center; }
.site-footer a { color: var(--accent); font-weight: 900; text-decoration: none; }

@media (max-width: 1050px) {
    .home-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
    .home-hero-panel { max-width: 760px; }
    .journal-shell { grid-template-columns: 1fr; }
    .journey-card { position: relative; top: auto; }
    .journey-days { grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); }
    .journey-days::before { display: none; }
}
@media (max-width: 720px) {
    :root { --content: min(100% - 24px,1480px); }
    .site-header { align-items: flex-start; }
    .brand-copy small { display: none; }
    .site-nav { gap: 11px; }
    .site-nav a { font-size: 11px; }
    .home-hero { padding-top: 42px; padding-bottom: 70px; }
    .home-hero-copy h1 { font-size: clamp(48px,18vw,82px); }
    .section-heading { display: grid; }
    .trip-hero,.trip-hero-content { min-height: 76vh; }
    .trip-hero-overlay { background: linear-gradient(0deg,rgba(4,10,16,.94) 0%,rgba(4,10,16,.7) 60%,rgba(4,10,16,.38) 100%); }
    .trip-back { margin-bottom: 50px; }
    .journal-shell { padding-top: 45px; }
    .journey-days { display: flex; overflow-x: auto; padding-bottom: 6px; }
    .journey-days a { flex: 0 0 235px; }
    .journal-day { margin-bottom: 80px; }
    .journal-day-head { grid-template-columns: 1fr; }
    .journal-day-number { width: 64px; height: 64px; border-radius: 18px; }
    .journal-day-number strong { font-size: 24px; }
    .journal-photo-grid { grid-template-columns: 1fr; }
    .journal-photo-wide,.journal-photo-tall { grid-column: auto; grid-row: auto; }
    .journal-photo img,.journal-photo-wide img,.journal-photo-tall img { width: 100%; height: auto; min-height: 0; aspect-ratio: 4/3; }
    .site-footer { display: grid; justify-items: start; }
    .site-footer p { text-align: left; }
    .lightbox { padding: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .trip-card-cover img,.journal-photo img { transition: none; }
}


/*
 * FOCUS_ADVENTURES_ITALIAN_POSTER_STYLE_V7_1
 *
 * Kleuren en sfeer gebaseerd op de aangeleverde vintage
 * Italië-roadtripafbeelding, terwijl de rustige V7-opbouw
 * en alle bestaande functies behouden blijven.
 */

:root {
    color-scheme: light;

    --bg: #efe3c8;
    --panel: #fff6df;
    --panel-2: #d6d3a1;
    --text: #173f2d;
    --muted: #70694d;
    --line: rgba(32, 67, 48, .24);

    --accent: #174f36;
    --accent-2: #bf4d20;
    --warm: #dfa93f;

    --shadow:
        0 22px 58px
        rgba(91, 65, 30, .19);
}

body {
    position: relative;
    color: var(--text);
    background:
        radial-gradient(
            circle at 84% 9%,
            rgba(231, 173, 58, .32)
            0 3.2rem,
            transparent 3.3rem
        ),
        linear-gradient(
            180deg,
            #c9dfda 0,
            #e9e2c8 24rem,
            #efe3c8 100%
        );
    font-family:
        "Trebuchet MS",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body::before {
    position: fixed;
    z-index: 99999;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .13;
    background:
        repeating-radial-gradient(
            circle at 30% 20%,
            rgba(66, 47, 20, .28)
            0 1px,
            transparent 1px 4px
        );
    mix-blend-mode: multiply;
}

h1,
h2,
h3,
.journey-card-head h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.site-header {
    width:
        min(
            1480px,
            calc(100% - 36px)
        );
}

.brand-mark {
    border:
        2px solid
        rgba(255, 246, 223, .9);
    color: #fff6df;
    background: var(--accent);
    box-shadow:
        0 5px 0
        rgba(91, 65, 30, .18);
}

.brand-copy strong {
    color: var(--accent);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    font-size: 25px;
    line-height: .9;
}

.brand-copy small,
.site-nav a {
    color: #5f654a;
}

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

.kicker {
    color: var(--accent-2);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.button {
    border-width: 2px;
    border-color:
        rgba(29, 77, 53, .35);
    box-shadow:
        0 4px 0
        rgba(91, 65, 30, .15);
}

.button.primary {
    border-color: var(--accent);
    color: #fff6df;
    background: var(--accent);
}

.button.primary:hover {
    background: #0f3e2a;
}

.button.ghost {
    border-color:
        rgba(29, 77, 53, .38);
    color: var(--accent);
    background:
        rgba(255, 246, 223, .72);
}

/*
 * Homepage: lichte vintage reisposter-sfeer.
 */

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: 72vh;
}

.home-hero::before {
    position: absolute;
    z-index: -1;
    right: 2%;
    bottom: 5%;
    width: min(41vw, 590px);
    height: min(27vw, 390px);
    border-radius:
        58% 42% 55% 45%;
    content: "";
    opacity: .56;
    background:
        linear-gradient(
            145deg,
            #9caa75,
            #d2c98d
        );
    clip-path:
        polygon(
            0 88%,
            13% 54%,
            25% 70%,
            41% 24%,
            57% 62%,
            70% 36%,
            100% 86%,
            100% 100%,
            0 100%
        );
}

.home-hero-copy h1 {
    color: var(--accent);
    text-shadow:
        0 2px 0
        rgba(255, 246, 223, .62);
}

.home-hero-copy h1 span {
    color: var(--accent-2);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    font-weight: 700;
    letter-spacing: -.035em;
    transform: rotate(-2deg);
    transform-origin: left center;
}

.home-hero-intro {
    color: #565e48;
}

.home-hero-panel {
    border:
        2px solid
        rgba(29, 77, 53, .26);
    color: var(--text);
    background:
        linear-gradient(
            145deg,
            rgba(255, 248, 226, .93),
            rgba(229, 214, 173, .92)
        );
    box-shadow: var(--shadow);
}

.home-hero-label {
    color: var(--accent-2);
}

.home-hero-panel li {
    color: #314f3c;
}

.home-hero-panel li::before {
    color: var(--accent-2);
}

.section-heading > p,
.trip-card-subtitle {
    color: var(--muted);
}

/*
 * Reiskaarten: roomkleurig papier, groene kaders,
 * terracotta accenten.
 */

.trip-card {
    border:
        2px solid
        rgba(29, 77, 53, .24);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.trip-card-cover {
    background:
        linear-gradient(
            145deg,
            #9fc7c5,
            #d7d2a1
        );
}

.trip-card-cover img {
    filter:
        saturate(.88)
        sepia(.08)
        contrast(.96);
}

.trip-card-badge {
    border:
        2px solid
        rgba(255, 246, 223, .86);
    color: #fff6df;
    background:
        rgba(23, 79, 54, .9);
}

.trip-card-date {
    color: var(--accent-2);
}

.trip-card h3 a {
    color: var(--accent);
}

.trip-card-footer {
    border-color: var(--line);
    color: var(--muted);
}

.trip-card-footer a {
    color: var(--accent-2);
}

.empty-state {
    border-color:
        rgba(29, 77, 53, .3);
    color: var(--muted);
    background:
        rgba(255, 246, 223, .55);
}

/*
 * Reisintro: warme foto, donkergroen filmisch verloop.
 */

.trip-hero {
    border-color:
        rgba(29, 77, 53, .28);
    background:
        linear-gradient(
            145deg,
            #294c3a,
            #102f24
        );
}

.trip-hero-image {
    filter:
        saturate(.88)
        sepia(.10)
        contrast(.98);
}

.trip-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(13, 47, 33, .96) 0%,
            rgba(24, 69, 48, .79) 43%,
            rgba(66, 65, 39, .18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(31, 44, 27, .70),
            transparent 55%
        );
}

.trip-hero .kicker {
    color: #f1bd60;
}

.trip-hero h1 {
    color: #fff4d8;
    text-shadow:
        0 4px 18px
        rgba(0, 0, 0, .28);
}

.trip-hero-subtitle,
.trip-back {
    color: #efe7cf;
}

.trip-hero-stats span {
    border:
        1px solid
        rgba(255, 244, 216, .28);
    color: #efe7cf;
    background:
        rgba(15, 53, 37, .63);
}

.trip-hero-stats strong {
    color: #fff4d8;
}

.trip-hero .button.ghost {
    border-color:
        rgba(255, 244, 216, .48);
    color: #fff4d8;
    background:
        rgba(255, 244, 216, .10);
}

/*
 * Reisjournal.
 */

.journal-shell {
    position: relative;
}

.journey-card {
    border:
        2px solid
        rgba(29, 77, 53, .30);
    color: var(--text);
    background:
        linear-gradient(
            155deg,
            #fff7df,
            #e5d7ae
        );
    box-shadow: var(--shadow);
}

.journey-card-head h2 {
    color: var(--accent);
}

.journey-progress-value {
    color: var(--accent-2);
}

.journey-progress-track {
    background:
        rgba(29, 77, 53, .13);
}

.journey-progress-track span {
    background:
        linear-gradient(
            90deg,
            var(--accent),
            var(--accent-2)
        );
}

.journey-days::before {
    background:
        rgba(29, 77, 53, .18);
}

.journey-days a {
    color: var(--accent);
}

.journey-days a:hover {
    background:
        rgba(23, 79, 54, .06);
}

.journey-days a.is-active {
    border-color:
        rgba(191, 77, 32, .32);
    background:
        rgba(191, 77, 32, .08);
}

.journey-day-dot {
    border:
        2px solid
        rgba(29, 77, 53, .27);
    color: var(--accent);
    background: #fff6df;
}

.journey-days a.is-active
.journey-day-dot {
    border-color: var(--accent-2);
    color: #fff6df;
    background: var(--accent-2);
}

.journey-day-copy small {
    color: var(--muted);
}

.journey-downloads {
    border-color: var(--line);
}

.journey-downloads a {
    border-color:
        rgba(29, 77, 53, .28);
    color: var(--accent);
    background:
        rgba(255, 246, 223, .64);
}

.journey-downloads a:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
}

.journal-day-number {
    border:
        2px solid
        rgba(255, 246, 223, .88);
    color: #fff6df;
    background: var(--accent-2);
    box-shadow:
        0 5px 0
        rgba(91, 65, 30, .16);
}

.journal-day-head h2 {
    color: var(--accent);
}

.journal-day-location {
    color: var(--muted);
}

.journal-story {
    border:
        2px solid
        rgba(29, 77, 53, .21);
    background:
        linear-gradient(
            145deg,
            rgba(255, 248, 226, .94),
            rgba(234, 221, 184, .88)
        );
    box-shadow:
        0 12px 32px
        rgba(91, 65, 30, .10);
}

.journal-story p {
    color: #304c39;
}

.journal-photo {
    border:
        2px solid
        rgba(29, 77, 53, .23);
    background: var(--panel);
    box-shadow:
        0 14px 34px
        rgba(91, 65, 30, .13);
}

.journal-photo img {
    filter:
        saturate(.92)
        sepia(.045);
}

.journal-photo figcaption {
    color: var(--accent);
    background:
        rgba(255, 246, 223, .98);
}

.journal-photo figcaption span {
    color: var(--muted);
}

/*
 * Lightbox en footer.
 */

.lightbox {
    background:
        rgba(13, 47, 33, .94);
}

.lightbox-close {
    border-color:
        rgba(255, 246, 223, .45);
    color: #fff6df;
    background:
        rgba(255, 246, 223, .10);
}

.lightbox-caption {
    color: #fff6df;
}

.lightbox-caption span {
    color: #dfd7bf;
}

.site-footer {
    width: 100%;
    margin: 0;
    padding:
        34px
        max(
            18px,
            calc(
                (100% - 1480px)
                / 2
            )
        )
        46px;
    border-top:
        5px double
        rgba(255, 246, 223, .58);
    color: #dfd7bf;
    background: var(--accent);
}

.site-footer strong {
    color: #fff6df;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.site-footer a {
    color: #f1bd60;
}

@media (max-width: 720px) {
    body::before {
        opacity: .08;
    }

    .home-hero::before {
        right: -8%;
        bottom: 2%;
        width: 78vw;
        height: 49vw;
        opacity: .34;
    }

    .home-hero-copy h1 span {
        transform: none;
    }

    .trip-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(13, 47, 33, .96) 0%,
                rgba(24, 69, 48, .72) 63%,
                rgba(66, 65, 39, .28) 100%
            );
    }
}


/*
 * FOCUS_ADVENTURES_BADGE_STYLE_V7_2
 *
 * Vormgeving afgestemd op het aangeleverde Focus Adventures-logo:
 * nachtblauw, crème, koper/oranje, goud en donkergroen.
 * De rustige V7-journalopbouw blijft behouden.
 */

:root {
    color-scheme: dark;

    --bg: #07131f;
    --panel: #0d1c28;
    --panel-2: #132736;
    --text: #f1e5d2;
    --muted: #baa992;
    --line: rgba(221, 173, 101, .22);

    --accent: #d45b24;
    --accent-2: #d9aa5b;
    --warm: #e1bd79;

    --shadow:
        0 24px 70px
        rgba(0, 0, 0, .38);
}

body {
    color: var(--text);
    background:
        radial-gradient(
            circle at 78% 7%,
            rgba(212, 91, 36, .13),
            transparent 26rem
        ),
        radial-gradient(
            circle at 15% 20%,
            rgba(41, 80, 58, .22),
            transparent 32rem
        ),
        linear-gradient(
            180deg,
            #07131f,
            #091722 46%,
            #07111a
        );
}

body::before {
    position: fixed;
    z-index: 99999;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .08;
    background:
        repeating-linear-gradient(
            105deg,
            rgba(255, 255, 255, .06)
            0 1px,
            transparent 1px 5px
        );
    mix-blend-mode: soft-light;
}

h1,
h2,
h3,
.journey-card-head h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.brand {
    gap: 13px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border:
        2px solid
        rgba(225, 189, 121, .42);
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 9px 22px
        rgba(0, 0, 0, .34);
}

.brand-mark {
    display: none;
}

.brand-copy strong {
    color: var(--text);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 18px;
    letter-spacing: .02em;
}

.brand-copy small,
.site-nav a {
    color: var(--muted);
}

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

.kicker {
    color: var(--accent);
    font-family:
        "Trebuchet MS",
        system-ui,
        sans-serif;
}

.button {
    border-color:
        rgba(217, 170, 91, .31);
    box-shadow:
        0 5px 0
        rgba(0, 0, 0, .22);
}

.button.primary {
    border-color: #ee7a3a;
    color: #fff4df;
    background:
        linear-gradient(
            145deg,
            #e36c2d,
            #b6461c
        );
}

.button.primary:hover {
    background:
        linear-gradient(
            145deg,
            #f17d39,
            #c44d1d
        );
}

.button.ghost {
    color: var(--text);
    background:
        rgba(241, 229, 210, .055);
}

/*
 * Homepage.
 */

.home-hero {
    position: relative;
    isolation: isolate;
    align-items: center;
}

.home-hero::before {
    position: absolute;
    z-index: -2;
    right: 1%;
    bottom: 7%;
    width: min(46vw, 700px);
    height: min(31vw, 470px);
    content: "";
    opacity: .34;
    background:
        linear-gradient(
            155deg,
            #294f3a,
            #152d26
        );
    clip-path:
        polygon(
            0 100%,
            10% 66%,
            22% 80%,
            37% 35%,
            51% 72%,
            67% 28%,
            78% 67%,
            100% 45%,
            100% 100%
        );
}

.home-hero::after {
    position: absolute;
    z-index: -1;
    right: 4%;
    bottom: 0;
    width: min(51vw, 760px);
    height: 18%;
    border-radius: 50%;
    content: "";
    opacity: .22;
    background:
        radial-gradient(
            ellipse at center,
            #d8aa5b,
            transparent 68%
        );
}

.home-hero-copy h1 {
    color: var(--text);
    text-shadow:
        0 6px 30px
        rgba(0, 0, 0, .31);
}

.home-hero-copy h1 span {
    color: var(--accent);
    font-family:
        "Brush Script MT",
        "Segoe Script",
        "Snell Roundhand",
        cursive;
    font-weight: 700;
    letter-spacing: -.025em;
    transform: rotate(-2deg);
    transform-origin: left center;
}

.home-hero-intro {
    color: #c9baa4;
}

.home-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border:
        1px solid
        rgba(217, 170, 91, .27);
    color: var(--text);
    background:
        linear-gradient(
            155deg,
            rgba(15, 31, 42, .97),
            rgba(9, 22, 31, .97)
        );
    box-shadow: var(--shadow);
}

.home-hero-panel::after {
    position: absolute;
    right: -60px;
    bottom: -84px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(212, 91, 36, .18),
            transparent 67%
        );
}

.home-hero-badge-wrap {
    display: grid;
    place-items: center;
    margin-bottom: 19px;
}

.home-hero-badge-wrap img {
    width: min(100%, 310px);
    aspect-ratio: 1;
    border:
        2px solid
        rgba(217, 170, 91, .38);
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 22px 50px
        rgba(0, 0, 0, .44);
}

.home-hero-label {
    color: var(--accent-2);
}

.home-hero-panel li {
    color: #e6dac8;
}

.home-hero-panel li::before {
    color: var(--accent);
}

/*
 * Reisoverzicht.
 */

.section-heading > p {
    color: var(--muted);
}

.trip-card {
    border:
        1px solid
        rgba(217, 170, 91, .20);
    background:
        linear-gradient(
            155deg,
            #10212e,
            #0b1923
        );
    box-shadow: var(--shadow);
}

.trip-card-cover {
    background:
        linear-gradient(
            145deg,
            #213d35,
            #142936
        );
}

.trip-card-cover img {
    filter:
        saturate(.93)
        contrast(1.03)
        brightness(.92);
}

.trip-card-badge {
    border:
        1px solid
        rgba(241, 229, 210, .34);
    color: #fff3dc;
    background:
        rgba(7, 19, 31, .83);
}

.trip-card-date {
    color: var(--accent);
}

.trip-card h3 a {
    color: var(--text);
}

.trip-card-subtitle,
.trip-card-footer {
    color: var(--muted);
}

.trip-card-footer {
    border-color: var(--line);
}

.trip-card-footer a {
    color: var(--accent-2);
}

/*
 * Reispagina.
 */

.trip-hero {
    border-color:
        rgba(217, 170, 91, .20);
    background:
        linear-gradient(
            145deg,
            #102633,
            #07131f
        );
}

.trip-hero-image {
    filter:
        saturate(.90)
        contrast(1.05)
        brightness(.82);
}

.trip-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 16, 26, .97) 0%,
            rgba(8, 24, 34, .84) 43%,
            rgba(9, 22, 31, .18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 13, 21, .78),
            transparent 56%
        );
}

.trip-hero .kicker {
    color: #ef8a49;
}

.trip-hero h1 {
    color: #fff0da;
    text-shadow:
        0 5px 24px
        rgba(0, 0, 0, .42);
}

.trip-hero-subtitle,
.trip-back {
    color: #ddcfba;
}

.trip-hero-stats span {
    border-color:
        rgba(217, 170, 91, .24);
    color: #d7cab7;
    background:
        rgba(7, 19, 31, .62);
}

.trip-hero-stats strong {
    color: #fff0da;
}

.trip-hero .button.ghost {
    border-color:
        rgba(217, 170, 91, .36);
    color: #f6e8d2;
    background:
        rgba(241, 229, 210, .07);
}

/*
 * Sticky reisnavigatie en journal.
 */

.journey-card {
    border:
        1px solid
        rgba(217, 170, 91, .24);
    color: var(--text);
    background:
        linear-gradient(
            160deg,
            #102532,
            #0a1a24
        );
    box-shadow: var(--shadow);
}

.journey-card-head h2 {
    color: #f3e4ce;
}

.journey-progress-value {
    color: var(--accent-2);
}

.journey-progress-track {
    background:
        rgba(241, 229, 210, .08);
}

.journey-progress-track span {
    background:
        linear-gradient(
            90deg,
            var(--accent),
            var(--accent-2)
        );
}

.journey-days::before {
    background:
        rgba(217, 170, 91, .14);
}

.journey-days a {
    color: var(--text);
}

.journey-days a:hover {
    background:
        rgba(241, 229, 210, .04);
}

.journey-days a.is-active {
    border-color:
        rgba(212, 91, 36, .40);
    background:
        rgba(212, 91, 36, .10);
}

.journey-day-dot {
    border-color:
        rgba(217, 170, 91, .28);
    color: var(--accent-2);
    background: #0b1a24;
}

.journey-days a.is-active
.journey-day-dot {
    border-color: #e36c2d;
    color: #fff2dd;
    background: #cc5522;
}

.journey-day-copy small {
    color: var(--muted);
}

.journey-downloads {
    border-color: var(--line);
}

.journey-downloads a {
    border-color:
        rgba(217, 170, 91, .22);
    color: #d9c9b2;
    background:
        rgba(241, 229, 210, .035);
}

.journey-downloads a:hover {
    border-color: var(--accent);
    color: #fff0da;
}

.journal-day-number {
    border:
        2px solid
        rgba(241, 229, 210, .26);
    color: #fff0da;
    background:
        linear-gradient(
            145deg,
            #e16b2c,
            #a93e18
        );
    box-shadow:
        0 7px 0
        rgba(0, 0, 0, .22);
}

.journal-day-head h2 {
    color: #f0e1cb;
}

.journal-day-location {
    color: var(--muted);
}

.journal-story {
    border:
        1px solid
        rgba(217, 170, 91, .18);
    background:
        linear-gradient(
            150deg,
            rgba(18, 38, 50, .96),
            rgba(10, 25, 34, .96)
        );
    box-shadow:
        0 15px 38px
        rgba(0, 0, 0, .24);
}

.journal-story p {
    color: #e2d5c3;
}

.journal-photo {
    border:
        1px solid
        rgba(217, 170, 91, .20);
    background: #0c1b25;
    box-shadow:
        0 16px 38px
        rgba(0, 0, 0, .28);
}

.journal-photo img {
    filter:
        saturate(.92)
        contrast(1.04)
        brightness(.94);
}

.journal-photo figcaption {
    color: #f0e1cb;
    background: #0b1a24;
}

.journal-photo figcaption span {
    color: var(--muted);
}

/*
 * Lightbox en footer.
 */

.lightbox {
    background:
        rgba(4, 13, 21, .96);
}

.lightbox-close {
    border-color:
        rgba(217, 170, 91, .36);
    color: #fff0da;
    background:
        rgba(241, 229, 210, .07);
}

.lightbox-caption {
    color: #fff0da;
}

.lightbox-caption span {
    color: var(--muted);
}

.site-footer {
    width: 100%;
    margin: 0;
    padding:
        34px
        max(
            18px,
            calc(
                (100% - 1480px)
                / 2
            )
        )
        46px;
    border-top:
        3px solid
        rgba(212, 91, 36, .62);
    color: #cbbba5;
    background:
        linear-gradient(
            180deg,
            #06111b,
            #040c13
        );
}

.site-footer strong {
    color: #f2e2cc;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.site-footer a {
    color: var(--accent-2);
}

@media (max-width: 720px) {
    body::before {
        opacity: .05;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .home-hero::before {
        right: -12%;
        bottom: 5%;
        width: 86vw;
        height: 54vw;
        opacity: .20;
    }

    .home-hero-copy h1 span {
        transform: none;
    }

    .home-hero-badge-wrap img {
        width: min(100%, 260px);
    }

    .trip-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(5, 16, 26, .97) 0%,
                rgba(8, 24, 34, .78) 64%,
                rgba(9, 22, 31, .36) 100%
            );
    }
}

/*
 * FOCUS_ADVENTURES_TRIP_POSTER_COVERS_V7_3
 * Reiskaarten krijgen een roadtrip-posteromslag
 * met belangrijkste plaatsen in logo-achtige stijl.
 */

.trip-card--poster {
    overflow: hidden;
}

.trip-card-cover--poster {
    min-height: 430px;
    background: linear-gradient(180deg, #eadfc7, #d9ceb0 48%, #d4c79f 100%);
}

.trip-card-cover--poster:hover {
    transform: none;
}

.trip-card-cover--poster::before {
    display: none;
}

.trip-card-poster {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 20px 20px 90px;
    overflow: hidden;
    color: #f7eddc;
    background:
        radial-gradient(circle at 80% 10%, rgba(228, 183, 90, .24), transparent 18%),
        radial-gradient(circle at 18% 86%, rgba(53, 104, 77, .18), transparent 28%),
        linear-gradient(180deg, rgba(4, 15, 23, .08), rgba(4, 15, 23, .02));
}

.trip-card-poster::before {
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(32, 64, 48, .18);
    border-radius: 22px;
    content: "";
}

.trip-card-poster::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .12;
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 4px);
}

.trip-card-poster-sun {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 1;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(212, 91, 36, .55);
    border-radius: 50%;
    background: #dfaf4d;
    box-shadow: 0 0 0 10px rgba(223, 175, 77, .08);
}

.trip-card-poster-sun::before {
    position: absolute;
    inset: -12px;
    border: 2px dashed rgba(212, 91, 36, .30);
    border-radius: 50%;
    content: "";
}

.trip-card-poster-hills {
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: 82px;
    height: 54%;
    z-index: 0;
    background: linear-gradient(180deg, rgba(104, 138, 106, .16), rgba(70, 102, 74, .22));
    clip-path: polygon(0 90%,11% 73%,22% 78%,34% 59%,43% 72%,55% 48%,65% 66%,78% 44%,88% 68%,100% 55%,100% 100%,0 100%);
}

.trip-card-poster-top,
.trip-card-poster-meta,
.trip-card-poster-title,
.trip-card-poster-route,
.trip-card-poster-ribbon,
.trip-card-poster-photo,
.trip-card-badge {
    position: relative;
    z-index: 2;
}

.trip-card-poster-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.trip-card-poster-brand {
    max-width: 60%;
    color: #143c2e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
}

.trip-card-poster-kicker {
    color: #a34a23;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.trip-card-poster-meta {
    margin-top: 18px;
    color: #4c5e4f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.trip-card-poster-title {
    max-width: calc(100% - 110px);
    margin: 14px 0 20px;
    color: #0d3327;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.03em;
}

.trip-card-poster-route {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: min(68%, 100%);
    margin-top: auto;
    padding-left: 34px;
}

.trip-card-poster-route-line {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 12px;
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1b513a, #153826);
    box-shadow: inset 0 0 0 2px rgba(255, 245, 225, .18), 0 0 0 1px rgba(13, 51, 39, .12);
}

.trip-card-poster-stop {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 30px;
}

.trip-card-poster-stop-dot {
    position: relative;
    top: 7px;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border: 2px solid #f5ead8;
    border-radius: 50%;
    background: #d45b24;
    box-shadow: 0 0 0 2px rgba(212, 91, 36, .18);
}

.trip-card-poster-stop-label {
    display: inline-flex;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(30, 66, 49, .18);
    border-radius: 14px;
    color: #17362b;
    background: rgba(250, 243, 231, .94);
    box-shadow: 0 5px 16px rgba(0, 0, 0, .08);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.trip-card-poster-ribbon {
    position: absolute;
    right: 18px;
    left: 18px;
    bottom: 18px;
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 2px solid rgba(212, 91, 36, .22);
    border-radius: 16px;
    background: linear-gradient(180deg, #0e3528, #0b281f);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.trip-card-poster-ribbon span {
    color: #dcb36c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.trip-card-poster-ribbon strong {
    display: -webkit-box;
    overflow: hidden;
    color: #f7eddc;
    font-size: 14px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.trip-card-poster-photo {
    position: absolute;
    right: 20px;
    bottom: 92px;
    width: 104px;
    height: 104px;
    overflow: hidden;
    border: 2px solid rgba(247, 237, 220, .58);
    border-radius: 18px;
    background: #0a1923;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .20);
}

.trip-card-poster-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.trip-card-cover--poster:hover .trip-card-poster-photo img {
    transform: scale(1.06);
}

.trip-card--poster .trip-card-badge {
    top: 18px;
    right: 18px;
    color: #f8edd8;
    border-color: rgba(18, 56, 43, .16);
    background: rgba(14, 37, 28, .88);
}

.trip-card--poster .trip-card-body {
    background: linear-gradient(180deg, #10212e, #0b1923);
}

@media (max-width: 880px) {
    .trip-card-cover--poster,
    .trip-card-poster {
        min-height: 400px;
    }
    .trip-card-poster-title {
        max-width: calc(100% - 92px);
        font-size: clamp(28px, 8vw, 36px);
    }
    .trip-card-poster-route {
        width: calc(100% - 128px);
    }
    .trip-card-poster-photo {
        width: 88px;
        height: 88px;
    }
}

@media (max-width: 640px) {
    .trip-card-cover--poster,
    .trip-card-poster {
        min-height: 380px;
    }
    .trip-card-poster-title,
    .trip-card-poster-route {
        max-width: 100%;
        width: 100%;
    }
    .trip-card-poster-photo {
        display: none;
    }
    .trip-card-poster-top {
        padding-right: 56px;
    }
    .trip-card-poster-brand {
        font-size: 20px;
    }
    .trip-card-poster-ribbon {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
}


/* FOCUS_ADVENTURES_CLEAN_TRIP_COVERS_V7_4 */
.trip-card--brand{overflow:hidden}
.trip-card-cover--brand{position:relative;display:block;width:100%;height:clamp(360px,34vw,470px);min-height:0;aspect-ratio:auto;overflow:hidden;isolation:isolate;color:#f6ead7;background:#07131f}
.trip-card-cover-photo{position:absolute;z-index:-4;inset:0;width:100%;height:100%;object-fit:cover;filter:saturate(.92) contrast(1.05) brightness(.72);transition:transform .45s ease,filter .45s ease}
.trip-card-cover--brand:hover .trip-card-cover-photo{transform:scale(1.025);filter:saturate(.98) contrast(1.06) brightness(.78)}
.trip-card-cover-shade{position:absolute;z-index:-3;inset:0;background:linear-gradient(90deg,rgba(4,13,21,.94) 0%,rgba(5,17,27,.78) 48%,rgba(5,17,27,.28) 100%),linear-gradient(0deg,rgba(4,12,19,.90),transparent 68%)}
.trip-card-cover-mountains{position:absolute;z-index:-2;right:-2%;bottom:0;width:58%;height:44%;opacity:.42;background:linear-gradient(160deg,#4b704d,#182f29);clip-path:polygon(0 100%,10% 70%,22% 82%,38% 40%,50% 69%,65% 23%,76% 60%,89% 34%,100% 67%,100% 100%)}
.trip-card-cover-head{position:absolute;top:22px;right:22px;left:22px;display:flex;align-items:center;gap:12px}
.trip-card-cover-seal{display:grid;place-items:center;width:54px;height:54px;flex:0 0 54px;border:2px solid rgba(224,179,98,.48);border-radius:50%;color:#f6ead7;background:linear-gradient(145deg,#15392b,#0d241c);box-shadow:0 12px 30px rgba(0,0,0,.34);font-family:Georgia,"Times New Roman",serif;font-size:18px;font-weight:900}
.trip-card-cover-brand{display:grid;gap:2px;min-width:0}
.trip-card-cover-brand strong{color:#f6ead7;font-family:Georgia,"Times New Roman",serif;font-size:17px}
.trip-card-cover-brand small{overflow:hidden;color:#d6b56f;font-size:10px;letter-spacing:.08em;text-overflow:ellipsis;text-transform:uppercase;white-space:nowrap}
.trip-card--brand .trip-card-badge{position:relative;top:auto;right:auto;margin-left:auto;border-color:rgba(224,179,98,.30);color:#f6ead7;background:rgba(6,18,28,.78)}
.trip-card-cover-copy{position:absolute;right:22px;bottom:70px;left:22px;max-width:980px}
.trip-card-cover-date{margin:0 0 11px;color:#e17a3f;font-size:11px;font-weight:900;letter-spacing:.15em;text-transform:uppercase}
.trip-card-cover-copy h4{max-width:980px;margin:0;color:#fff1dc;font-family:Georgia,"Times New Roman",serif;font-size:clamp(34px,5.2vw,70px);line-height:.95;letter-spacing:-.045em;text-shadow:0 6px 24px rgba(0,0,0,.44)}
.trip-card-cover-route{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:22px}
.trip-card-cover-place{display:inline-flex;align-items:center;min-height:34px;padding:7px 12px;border:1px solid rgba(230,187,111,.30);border-radius:999px;color:#f5e7d1;background:rgba(8,24,34,.78);box-shadow:0 8px 20px rgba(0,0,0,.20);backdrop-filter:blur(8px);font-size:12px;font-weight:850}
.trip-card-cover-place::before{width:8px;height:8px;margin-right:7px;border-radius:50%;background:#d85e27;box-shadow:0 0 0 3px rgba(216,94,39,.18);content:""}
.trip-card-cover-arrow{color:#d7ad63;font-size:14px;font-weight:900}
.trip-card-cover-open{position:absolute;right:22px;bottom:22px;padding:9px 13px;border:1px solid rgba(224,179,98,.28);border-radius:12px;color:#f6ead7;background:rgba(6,18,28,.74);font-size:12px;font-weight:900;backdrop-filter:blur(8px)}
.trip-card--brand .trip-card-body{background:linear-gradient(160deg,#10212e,#0b1923)}
@media(max-width:720px){.trip-card-cover--brand{height:430px}.trip-card-cover-head{top:16px;right:16px;left:16px}.trip-card-cover-seal{width:47px;height:47px;flex-basis:47px;font-size:15px}.trip-card-cover-brand small{display:none}.trip-card-cover-copy{right:16px;bottom:66px;left:16px}.trip-card-cover-copy h4{font-size:clamp(34px,11vw,50px)}.trip-card-cover-route{gap:6px;margin-top:18px}.trip-card-cover-place{min-height:30px;padding:6px 10px;font-size:11px}.trip-card-cover-arrow{display:none}.trip-card-cover-open{right:16px;bottom:16px}}

/* FOCUS_ADVENTURES_TRAVEL_POSTER_COVERS_V7_5 */
.trip-card--travel-poster{overflow:hidden}
.trip-card-cover--travel-poster{display:block;min-height:0;aspect-ratio:16/10;overflow:hidden;background:#eadfc4}
.trip-card-cover--travel-poster:hover{transform:none}
.travel-poster-paper{position:relative;width:100%;height:100%;min-height:540px;overflow:hidden;border-radius:28px 28px 0 0;color:#143c2d;background:radial-gradient(circle at 86% 9%,rgba(221,169,62,.22),transparent 13%),linear-gradient(180deg,#c9dddd 0,#eee4c8 33%,#e5d6ae 100%);isolation:isolate}
.travel-poster-paper::before{position:absolute;z-index:8;inset:12px;pointer-events:none;border:1px solid rgba(73,61,34,.23);content:""}
.travel-poster-paper::after{position:absolute;z-index:9;inset:0;pointer-events:none;content:"";opacity:.11;background:repeating-radial-gradient(circle at 24% 18%,rgba(70,48,19,.24) 0 1px,transparent 1px 4px);mix-blend-mode:multiply}
.travel-poster-title{position:absolute;z-index:6;top:24px;left:5%;width:70%;min-height:116px}
.travel-poster-title span,.travel-poster-title strong{position:absolute;font-family:"Brush Script MT","Segoe Script","Snell Roundhand",cursive;font-weight:900;line-height:.82;text-shadow:0 2px 0 rgba(255,246,218,.45)}
.travel-poster-title span{top:0;left:0;color:#0e4b33;font-size:clamp(52px,7vw,105px);transform:rotate(-5deg)}
.travel-poster-title strong{top:58px;left:18%;color:#b84b20;font-size:clamp(48px,6.4vw,95px);transform:rotate(-3deg)}
.travel-poster-title em{position:absolute;top:74px;right:0;color:#0e4b33;font-family:Georgia,"Times New Roman",serif;font-size:clamp(30px,4vw,58px);font-style:normal;font-weight:700;transform:rotate(-3deg)}
.travel-poster-sun{position:absolute;z-index:3;top:30px;right:6%;width:54px;height:54px;border-radius:50%;background:#e0ab3d;box-shadow:0 0 0 11px rgba(224,171,61,.09)}
.travel-poster-sun::before{position:absolute;inset:-15px;border:2px dashed rgba(196,112,27,.35);border-radius:50%;content:""}
.travel-poster-birds{position:absolute;z-index:3;top:54px;right:15%;color:rgba(27,68,53,.62);font-size:22px;letter-spacing:5px;transform:rotate(-5deg)}
.travel-poster-meta{position:absolute;z-index:7;top:142px;left:50%;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;gap:9px;min-width:min(86%,560px);padding:8px 18px;border:2px solid rgba(48,78,53,.37);border-radius:999px;color:#214834;background:rgba(255,245,213,.87);box-shadow:0 5px 0 rgba(91,65,30,.12);font-family:Georgia,"Times New Roman",serif;font-size:clamp(11px,1.3vw,17px);font-weight:900;letter-spacing:.03em;white-space:nowrap}
.travel-poster-meta span{color:#bb4d22}
.travel-poster-map{position:absolute;z-index:1;right:18px;bottom:78px;left:18px;height:calc(100% - 245px);min-height:250px;overflow:hidden;border-radius:22px;background:linear-gradient(145deg,rgba(154,196,198,.82),rgba(217,209,153,.92) 55%,rgba(162,180,119,.83))}
.travel-poster-land{position:absolute;background:linear-gradient(145deg,#cfcd96,#aeba79);filter:drop-shadow(0 3px 0 rgba(255,255,255,.5))}
.travel-poster-land--one{top:-7%;left:-4%;width:64%;height:88%;clip-path:polygon(0 8%,36% 0,61% 18%,88% 13%,100% 40%,84% 70%,60% 83%,44% 70%,19% 81%,0 63%)}
.travel-poster-land--two{right:-5%;bottom:-7%;width:58%;height:82%;clip-path:polygon(13% 3%,50% 0,82% 18%,100% 45%,89% 76%,61% 100%,30% 83%,0 52%)}
.travel-poster-route{position:absolute;z-index:3;inset:8% 10%;width:80%;height:82%}
.travel-poster-route-shadow,.travel-poster-route-line{fill:none;stroke-linecap:round;stroke-linejoin:round}
.travel-poster-route-shadow{stroke:rgba(61,40,16,.32);stroke-width:5.5;transform:translate(1.2px,1.6px)}
.travel-poster-route-line{stroke:#0f4e35;stroke-width:4.2;stroke-dasharray:3 1.7}
.travel-poster-place{position:absolute;z-index:5;display:inline-flex;align-items:center;gap:6px;max-width:180px}
.travel-poster-place i{position:relative;width:20px;height:20px;flex:0 0 20px;border:3px solid #fff4d9;border-radius:50% 50% 50% 0;background:#c95420;box-shadow:0 5px 12px rgba(72,42,15,.22);transform:rotate(-45deg)}
.travel-poster-place i::after{position:absolute;top:5px;left:5px;width:5px;height:5px;border-radius:50%;background:#fff4d9;content:""}
.travel-poster-place b{overflow:hidden;padding:7px 10px;border:1px solid rgba(49,78,54,.42);border-radius:8px;color:#163c2d;background:rgba(255,247,220,.94);box-shadow:0 6px 14px rgba(72,42,15,.14);font-size:clamp(10px,1.2vw,14px);line-height:1.15;text-overflow:ellipsis;white-space:nowrap}
.travel-poster-place--0{top:8%;left:7%}.travel-poster-place--1{top:25%;left:29%}.travel-poster-place--2{top:52%;left:18%}.travel-poster-place--3{top:69%;left:47%}.travel-poster-place--4{top:38%;right:8%}.travel-poster-place--5{right:13%;bottom:7%}
.travel-poster-photo{position:absolute;z-index:4;left:3%;bottom:2%;width:min(34%,230px);aspect-ratio:4/3;overflow:hidden;border:3px solid rgba(255,246,216,.74);border-radius:18px;box-shadow:0 18px 35px rgba(63,43,19,.28);transform:rotate(-2deg)}
.travel-poster-photo img{width:100%;height:100%;object-fit:cover;filter:saturate(.92) sepia(.05) contrast(.98)}
.travel-poster-ribbon{position:absolute;z-index:7;right:18px;bottom:14px;left:18px;display:flex;align-items:center;gap:10px;min-height:52px;padding:9px 15px;border:3px double #d6c687;border-radius:8px;color:#f8edcf;background:linear-gradient(180deg,#0d4c35,#093825);box-shadow:0 7px 0 rgba(77,47,18,.21);font-family:Georgia,"Times New Roman",serif}
.travel-poster-ribbon span{flex:0 0 auto;font-family:"Brush Script MT","Segoe Script",cursive;font-size:23px}.travel-poster-ribbon strong{min-width:0;overflow:hidden;font-size:clamp(11px,1.4vw,16px);text-overflow:ellipsis;white-space:nowrap}
.travel-poster-open{position:absolute;z-index:8;right:30px;bottom:27px;color:#f5d996;font-size:11px;font-weight:900}
.trip-card--travel-poster .trip-card-body{background:linear-gradient(160deg,#10212e,#0b1923)}
@media(max-width:900px){.travel-poster-paper{min-height:500px}.travel-poster-title{width:78%}.travel-poster-title strong{left:13%}.travel-poster-meta{top:137px}.travel-poster-map{height:calc(100% - 230px)}}
@media(max-width:680px){.trip-card-cover--travel-poster{aspect-ratio:auto}.travel-poster-paper{min-height:470px;border-radius:20px 20px 0 0}.travel-poster-title{top:20px;left:6%;width:85%}.travel-poster-title span{font-size:54px}.travel-poster-title strong{top:48px;left:13%;font-size:50px}.travel-poster-title em{top:78px;right:2%;font-size:34px}.travel-poster-sun{top:23px;right:7%;width:42px;height:42px}.travel-poster-birds{display:none}.travel-poster-meta{top:125px;min-width:82%;padding:7px 11px;font-size:10px}.travel-poster-map{top:169px;right:10px;bottom:68px;left:10px;height:auto;min-height:0}.travel-poster-place b{max-width:98px;padding:5px 7px;font-size:9px}.travel-poster-place i{width:15px;height:15px;flex-basis:15px;border-width:2px}.travel-poster-place i::after{top:4px;left:4px;width:4px;height:4px}.travel-poster-photo{width:31%;border-radius:12px}.travel-poster-ribbon{right:10px;bottom:10px;left:10px;min-height:47px;padding-right:82px}.travel-poster-ribbon span{font-size:18px}.travel-poster-ribbon strong{font-size:9px}.travel-poster-open{right:21px;bottom:24px;font-size:9px}}

/*
 * FOCUS_ADVENTURES_CUSTOM_POSTER_COVER_CSS_V7_8
 * De gegenereerde grafische reisposter wordt als echte cover gebruikt.
 */

.trip-card--custom-cover-v78
.trip-card-cover--travel-poster {
    display: block;
    min-height: 0 !important;
    aspect-ratio: 1672 / 941 !important;
    overflow: hidden;
    background: #0b1712;
}

.trip-card--custom-cover-v78
.travel-poster-paper {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1672 / 941;
    border-radius: 28px 28px 0 0;
    background:
        url("focus-adventures-trip-cover-italy-2026.webp")
        center center / cover
        no-repeat;
}

.trip-card--custom-cover-v78
.travel-poster-paper::before,
.trip-card--custom-cover-v78
.travel-poster-paper::after {
    display: none !important;
}

.trip-card--custom-cover-v78
.travel-poster-paper > * {
    display: none !important;
}

.trip-hero--custom-cover-v78 {
    width: 100%;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1672 / 941;
    overflow: hidden;
    background: #0b1712;
}

.trip-hero--custom-cover-v78
.trip-hero-image,
.trip-hero--custom-cover-v78
.trip-hero-image--custom-v78 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.trip-hero--custom-cover-v78
.trip-hero-overlay,
.trip-hero--custom-cover-v78
.trip-hero-content {
    display: none !important;
}

@media (max-width: 720px) {
    .trip-card--custom-cover-v78
    .travel-poster-paper {
        border-radius: 20px 20px 0 0;
    }

    .trip-hero--custom-cover-v78 {
        aspect-ratio: 16 / 9;
    }
}
