/*
Theme Name: Chombo Adventures
Theme URI: https://chomboadventures.com
Description: Multi-brand child theme voor Chombo Adventures (Fishing, Nature Spotting, Seal Safari). Design tokens + mode-gedreven accenten bovenop Hello Elementor.
Author: Chombo
Author URI: https://chomboadventures.com
Template: hello-elementor
Version: 1.0.0
Text Domain: chombo-adventures
*/

/* ----------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
    /* Umbrella palet */
    --chombo-blue:       #5a8bae;   /* primaire merkblauw uit logo's */
    --chombo-blue-deep:  #2f5e84;
    --chombo-ink:        #1b2a38;   /* donkere tekst */
    --chombo-sand:       #f5efe6;   /* rustige achtergrond */
    --chombo-paper:      #ffffff;
    --chombo-muted:      #6b7b8a;
    --chombo-line:       #e4dfd5;

    /* Per-merk accenten (afgeleid van flyer-palet) */
    --fishing-accent:    #0f3f6f;   /* flyer donkerblauw */
    --fishing-accent-2:  #08243b;
    --nature-accent:     #f2e5d2;   /* flyer crème */
    --nature-accent-2:   #c45535;
    --seal-accent:       #9fc3dc;   /* flyer lichtblauw */
    --seal-accent-2:     #5f8faa;

    /* Default (hub) = umbrella */
    --brand-accent:      var(--chombo-blue);
    --brand-accent-2:    var(--chombo-blue-deep);
    --brand-on-accent:   #ffffff;

    /* Typografie */
    --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
    --font-body:    "Inter", system-ui, -apple-system, sans-serif;

    /* Ruimte & radii */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2.5rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(27,42,56,.06);
    --shadow-md: 0 8px 24px rgba(27,42,56,.10);
    --shadow-lg: 0 24px 60px rgba(27,42,56,.18);
}

/* ----------------------------------------------------------
   MODE-SPECIFIEKE ACCENTEN (gezet door mu-plugin op <body>)
   ---------------------------------------------------------- */
body.chombo-mode-fishing {
    --brand-accent:    var(--fishing-accent);
    --brand-accent-2:  var(--fishing-accent-2);
    --brand-on-accent: #ffffff;
    --page-bg:         var(--chombo-sand);
    --hero-bg:         #071b2d;
    --hero-surface:    #123f68;
    --hero-text:       #ffffff;
}
body.chombo-mode-nature {
    --brand-accent:    var(--nature-accent-2);
    --brand-accent-2:  var(--nature-accent-2);
    --brand-on-accent: #ffffff;
    --page-bg:         var(--chombo-sand);
    --hero-bg:         #274b45;
    --hero-surface:    #ead8bd;
    --hero-text:       #ffffff;
}
body.chombo-mode-seal {
    --brand-accent:    var(--seal-accent);
    --brand-accent-2:  var(--seal-accent-2);
    --brand-on-accent: #ffffff;
    --page-bg:         var(--chombo-sand);
    --hero-bg:         #9fc3dc;
    --hero-surface:    #86b0ca;
    --hero-text:       #ffffff;
}
body.chombo-mode-hub {
    --brand-accent:    var(--chombo-blue);
    --brand-accent-2:  var(--chombo-blue-deep);
    --brand-on-accent: #ffffff;
    --page-bg:         var(--chombo-sand);
    --hero-bg:         #101820;
    --hero-surface:    var(--chombo-blue);
    --hero-text:       #ffffff;
}

/* ----------------------------------------------------------
   BASIS TYPOGRAFIE
   ---------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}
html:not(.chombo-loaded) body {
    overflow: hidden;
}
html:not(.chombo-loaded) body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99998;
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,.18), rgba(255,255,255,0) 18rem),
        var(--brand-accent, var(--chombo-blue));
}
html:not(.chombo-loaded) body::after {
    content: "";
    position: fixed;
    left: 50%;
    top: 50%;
    width: 4rem;
    height: 4rem;
    z-index: 99999;
    border: 3px solid rgba(255,255,255,.28);
    border-top-color: #fff;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    animation: chombo-loader-spin .75s linear infinite;
}
@keyframes chombo-loader-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
html:not(.chombo-loaded) #site-header img,
html:not(.chombo-loaded) #site-footer img,
html:not(.chombo-loaded) .elementor-location-header img,
html:not(.chombo-loaded) .elementor-location-footer img {
    opacity: 0;
}
html.chombo-loaded .chombo-brand-hero__inner,
html.chombo-loaded .chombo-split-section,
html.chombo-loaded .elementor-location-header {
    animation: chombo-page-enter .7s ease both;
}
@keyframes chombo-page-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--chombo-ink);
    background: var(--page-bg, var(--chombo-sand));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--chombo-ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

p { margin: 0 0 var(--space-3); }
a { color: var(--brand-accent); text-decoration: none; }
a:hover { color: var(--brand-accent-2); }

/* ----------------------------------------------------------
   HERHAALBARE COMPONENTEN
   ---------------------------------------------------------- */

/* Eyebrow tagline "Don't speed up, slow down" stijl */
.chombo-eyebrow {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--chombo-muted);
    text-transform: none;
    margin-bottom: var(--space-3);
}

/* Knoppen */
.chombo-btn,
.chombo-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    padding: .9em 1.6em;
    border-radius: 999px;
    background: var(--brand-accent);
    color: var(--brand-on-accent);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    border: none;
    cursor: pointer;
}
.chombo-btn:hover {
    background: var(--brand-accent-2);
    color: var(--brand-on-accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.chombo-btn--ghost {
    background: transparent;
    color: var(--brand-accent);
    box-shadow: inset 0 0 0 2px var(--brand-accent);
}
.chombo-btn--ghost:hover {
    background: var(--brand-accent);
    color: var(--brand-on-accent);
}

/* Chevron decoratie (SVG inline via CSS) */
.chombo-chevron {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask: var(--chombo-chevron-mask) center / contain no-repeat;
            mask: var(--chombo-chevron-mask) center / contain no-repeat;
    --chombo-chevron-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M2 4l8 8-8 8M10 4l8 8-8 8' fill='none' stroke='black' stroke-width='3'/></svg>");
}

/* ----------------------------------------------------------
   HUB HOMEPAGE — 3-keuze grid
   ---------------------------------------------------------- */
.chombo-hub {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 16% 18%, rgba(15,63,111,.12) 0 14rem, transparent 14.2rem),
        radial-gradient(circle at 86% 20%, rgba(159,195,220,.18) 0 18rem, transparent 18.2rem),
        var(--chombo-sand);
}
body.chombo-mode-hub.chombo-is-front .elementor-location-header,
body.chombo-mode-fishing .elementor-location-header,
body.chombo-mode-nature .elementor-location-header,
body.chombo-mode-seal .elementor-location-header {
    display: none !important;
}
.chombo-hub__intro {
    text-align: center;
    padding: clamp(7rem, 12vw, 10rem) var(--space-4) var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}
.chombo-hub__logo {
    display: block;
    width: clamp(180px, 18vw, 280px);
    height: auto;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.chombo-hub__intro h1 {
    margin: 0 0 var(--space-3);
}
.chombo-language-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
}
.chombo-language-flags__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(27,42,56,.1);
    box-shadow: 0 10px 24px rgba(27,42,56,.08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.chombo-language-flags__item:hover,
.chombo-language-flags__item.is-active {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(27,42,56,.14);
}
.chombo-language-flags__item img {
    display: block;
    width: 1.25rem;
    height: auto;
}
.chombo-language-flags--hub {
    margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
}
.chombo-language-flags--brand {
    position: fixed;
    top: clamp(1rem, 2vw, 1.5rem);
    right: clamp(1rem, 2vw, 1.5rem);
    z-index: 1200;
    justify-content: flex-end;
}
body:not(.chombo-mode-hub) .elementor-widget-wpml-language-switcher,
body:not(.chombo-mode-hub) .wpml-ls-menu-item,
body:not(.chombo-mode-hub) .wpml-ls-statics-shortcode_actions {
    display: none !important;
}
.chombo-hub__intro p {
    color: var(--chombo-muted);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto;
}

.chombo-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding: var(--space-4) var(--space-4) var(--space-7);
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .chombo-hub__grid { grid-template-columns: 1fr; }
}

.chombo-hub__card {
    position: relative;
    overflow: hidden;
    border-radius: 3rem 5.5rem 3.5rem 4.5rem / 4rem 3rem 5rem 3rem;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-5);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    box-shadow: var(--shadow-md);
    transition: transform .35s ease, box-shadow .35s ease;
}
.chombo-hub__card::before {
    content: "";
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .8s ease;
    z-index: -2;
}
.chombo-hub__card::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(180deg, rgba(27,42,56,.08) 20%, rgba(27,42,56,.84) 100%);
    z-index: -1;
}
.chombo-hub__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}
.chombo-hub__card:hover::before { transform: scale(1.08); }

.chombo-hub__card--fishing::before { background-image: var(--card-fishing-img, linear-gradient(135deg,#1d4568,#2f5e84)); }
.chombo-hub__card--nature::before  { background-image: var(--card-nature-img,  linear-gradient(135deg,#7b3221,#a9422c)); }
.chombo-hub__card--seal::before    { background-image: var(--card-seal-img,    linear-gradient(135deg,#6d8ea3,#8fb2c8)); }

.chombo-hub__card h2 {
    color: #fff;
    margin: 0 0 var(--space-2);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: .92;
}
.chombo-hub__card p {
    color: rgba(255,255,255,.88);
    margin: 0 0 var(--space-3);
    font-size: 1.05rem;
}
.chombo-hub__card .chombo-hub__arrow {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5em;
}

/* ----------------------------------------------------------
   HEADER / FOOTER simpel (voor wanneer Theme Builder niet actief is)
   ---------------------------------------------------------- */
.chombo-site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--chombo-paper);
    border-bottom: 1px solid var(--chombo-line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.chombo-site-header__logo img { height: 42px; width: auto; display: block; }
.chombo-site-header__back {
    font-size: .9rem;
    color: var(--chombo-muted);
    text-decoration: none;
}
.chombo-site-header__back:hover { color: var(--brand-accent); }

.chombo-site-footer {
    background: var(--chombo-ink);
    color: rgba(255,255,255,.75);
    padding: var(--space-6) var(--space-4) var(--space-4);
    margin-top: var(--space-7);
}
.chombo-site-footer a { color: #fff; }
.chombo-site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-5);
}
@media (max-width: 700px) {
    .chombo-site-footer__inner { grid-template-columns: 1fr; }
}
.chombo-site-footer__brand img { height: 48px; margin-bottom: var(--space-2); }
.chombo-site-footer__bottom {
    max-width: 1200px;
    margin: var(--space-5) auto 0;
    padding-top: var(--space-3);
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2);
}
body.chombo-mode-nature .chombo-site-footer,
body.chombo-mode-nature #site-footer,
body.chombo-mode-nature .elementor-location-footer,
body.chombo-mode-nature .elementor-location-footer .elementor-section,
body.chombo-mode-nature .elementor-location-footer .e-con {
    background: var(--nature-accent-2) !important;
    color: rgba(255,255,255,.86);
}
body.chombo-mode-nature .chombo-site-footer a,
body.chombo-mode-nature #site-footer a,
body.chombo-mode-nature .elementor-location-footer a {
    color: #ffffff;
}

/* ----------------------------------------------------------
   Utility: full-bleed secties
   ---------------------------------------------------------- */
.chombo-section {
    padding: var(--space-6) var(--space-4);
    max-width: 1200px;
    margin: 0 auto;
}

/* ----------------------------------------------------------
   BRAND HERO (nature / seal / fishing home)
   ---------------------------------------------------------- */
.chombo-brand-hero {
    position: relative;
    min-height: clamp(640px, 78vh, 820px);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background: var(--hero-bg);
}
.chombo-brand-hero::before {
    content: "";
    position: absolute;
    right: clamp(-16rem, -12vw, -5rem);
    top: 50%;
    width: min(74vw, 980px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    z-index: -2;
    border-radius: 50%;
    box-shadow:
        0 0 0 clamp(2.5rem, 5vw, 5.5rem) color-mix(in srgb, var(--brand-accent) 14%, transparent),
        0 34px 90px rgba(0,0,0,.28);
    filter: saturate(1.05) contrast(1.04);
}
.chombo-brand-hero::after {
    display: none;
}
.chombo-brand-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--hero-bg) 0%, var(--hero-bg) 43%, color-mix(in srgb, var(--hero-bg) 64%, transparent) 55%, transparent 72%),
        linear-gradient(180deg, rgba(16,24,32,.08), rgba(16,24,32,.18));
    z-index: -1;
}
.chombo-brand-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(6rem, 10vw, 8rem) var(--space-4) clamp(4.5rem, 7vw, 6rem);
    width: 100%;
}
.chombo-brand-hero__back {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: var(--space-4);
    letter-spacing: .02em;
}
.chombo-brand-hero__back:hover { color: #fff; }
.chombo-brand-hero__panel {
    position: relative;
    max-width: min(640px, 54vw);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.chombo-brand-hero__panel::before {
    display: none;
}
.chombo-brand-hero__panel::after {
    display: none;
}
.chombo-brand-hero__logo {
    display: block;
    width: clamp(330px, 35vw, 520px) !important;
    height: auto !important;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain !important;
    flex: 0 0 auto;
    margin-top: clamp(1.5rem, 3.4vw, 2.75rem);
    margin-bottom: 0;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
}
body.chombo-mode-nature .chombo-brand-hero__panel {
    color: #ffffff;
}
body.chombo-mode-nature .chombo-brand-hero__back {
    color: rgba(255,255,255,.82);
}
body.chombo-mode-nature .chombo-brand-hero__back:hover {
    color: #ffffff;
}
body.chombo-mode-nature .chombo-split-section__text h2,
body.chombo-mode-nature .chombo-feature-card h3,
body.chombo-mode-nature .chombo-contact-section .chombo-eyebrow {
    color: var(--nature-accent-2);
}
body.chombo-mode-nature .chombo-brand-hero__tagline {
    color: #ffffff;
}
body.chombo-mode-seal .chombo-brand-hero__panel {
    color: var(--chombo-ink);
}
body.chombo-mode-fishing .chombo-brand-hero__panel {
    color: #ffffff;
}
.chombo-brand-hero__tagline {
    display: inline-flex;
    width: fit-content;
    max-width: 42rem;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    color: currentColor;
    background: transparent;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    padding: 0;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: .01em;
    text-transform: none;
}

.chombo-brand-main {
    background: var(--page-bg);
}
.chombo-conversion-strip {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    margin: -2rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}
.chombo-conversion-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 4.5rem;
    padding: .9rem 1rem;
    color: var(--chombo-ink);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-right: 1px solid rgba(27,42,56,.08);
}
.chombo-conversion-strip a:last-child {
    background: var(--brand-accent);
    color: var(--brand-on-accent);
    border-right: 0;
}
.chombo-conversion-strip span {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-accent) 14%, white);
    color: var(--brand-accent);
}
.chombo-conversion-strip a:last-child span {
    background: rgba(255,255,255,.22);
    color: inherit;
}
.chombo-brand-content {
    font-size: 1.1rem;
    overflow: hidden;
}
body.chombo-mode-fishing .elementor-element-071d1e8#top {
    display: none !important;
}
body.chombo-mode-fishing .elementor-element-21eedfe,
body.chombo-mode-fishing .elementor-element-21eedfe > .e-con-inner {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: var(--space-2) !important;
}
body.chombo-mode-fishing .elementor-element-027f935 {
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
}
body.chombo-mode-fishing .elementor-element-027f935 .elementor-gallery__container {
    display: flex !important;
    flex-wrap: nowrap !important;
    height: 286px !important;
    min-height: 0 !important;
    max-height: 286px !important;
    gap: var(--space-3) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--space-3);
    padding: 0 var(--space-3) !important;
    scrollbar-width: none;
}
body.chombo-mode-fishing .elementor-element-027f935 .elementor-gallery__container::-webkit-scrollbar {
    display: none;
}
body.chombo-mode-fishing .elementor-element-027f935 .e-gallery-item {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex: 0 0 clamp(280px, 31vw, 360px) !important;
    width: clamp(280px, 31vw, 360px) !important;
    height: 260px !important;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
body.chombo-mode-fishing .elementor-element-027f935 .e-gallery-image {
    height: 100% !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}
.chombo-fishing-gallery-carousel {
    max-width: 1180px;
    margin: 0 auto var(--space-2);
    padding-bottom: 0;
}
.chombo-fishing-gallery-carousel .elementor-widget-container {
    position: relative;
    height: auto !important;
    min-height: 0 !important;
}
.chombo-fishing-gallery-carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin: 0 0 var(--space-3);
    padding: 0 var(--space-3);
}
.chombo-fishing-gallery-carousel__button {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: var(--brand-accent);
    color: var(--brand-on-accent);
    font-size: 2rem;
    line-height: 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.chombo-fishing-gallery-carousel__button:hover,
.chombo-fishing-gallery-carousel__button:focus {
    background: var(--brand-accent-2);
    outline: none;
}
.chombo-fishing-gallery-carousel__track.elementor-gallery__container {
    display: flex !important;
    flex-wrap: nowrap !important;
    height: 286px !important;
    min-height: 0 !important;
    max-height: 286px !important;
    gap: var(--space-3) !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--space-3);
    padding: 0 var(--space-3);
    scrollbar-width: none;
}
.chombo-fishing-gallery-carousel__track.elementor-gallery__container::-webkit-scrollbar {
    display: none;
}
.chombo-fishing-gallery-carousel + .elementor-element,
.chombo-fishing-gallery-carousel + .e-con,
.elementor-element-21eedfe:has(.chombo-fishing-gallery-carousel) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
}
.chombo-fishing-gallery-carousel__track .e-gallery-item {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex: 0 0 clamp(280px, 31vw, 360px) !important;
    width: clamp(280px, 31vw, 360px) !important;
    height: 260px !important;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.chombo-fishing-gallery-carousel__track .e-gallery-image {
    height: 100% !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}
body.chombo-mode-fishing .elementor-element-027f935 .elementor-gallery__container,
body.chombo-mode-fishing .chombo-fishing-gallery-carousel__track.elementor-gallery__container {
    height: 262px !important;
    max-height: 262px !important;
    padding-bottom: 0 !important;
    scrollbar-width: none !important;
}
body.chombo-mode-fishing .elementor-element-027f935 .elementor-gallery__container::-webkit-scrollbar,
body.chombo-mode-fishing .chombo-fishing-gallery-carousel__track.elementor-gallery__container::-webkit-scrollbar {
    display: none !important;
}
body.chombo-mode-fishing .elementor-element-027f935 .e-gallery-item,
body.chombo-mode-fishing .chombo-fishing-gallery-carousel__track .e-gallery-item {
    height: 238px !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}
body.chombo-mode-fishing .elementor-element-027f935 .elementor-gallery-item__overlay {
    display: none !important;
}
.chombo-brand-hero__image-slider {
    position: absolute;
    right: clamp(-16rem, -12vw, -5rem);
    top: 50%;
    width: min(74vw, 980px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    z-index: -2;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 0 0 clamp(2.5rem, 5vw, 5.5rem) color-mix(in srgb, var(--brand-accent) 14%, transparent),
        0 34px 90px rgba(0,0,0,.28);
}
.chombo-brand-hero--has-slider::before {
    display: none;
}
.chombo-brand-hero__image-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.6s ease-in-out, transform 6s ease;
}
.chombo-brand-hero__image-slider img.is-active {
    opacity: 1;
    transform: scale(1);
}
.chombo-menu-item-hidden {
    display: none !important;
}
.chombo-split-section,
.chombo-contact-section {
    scroll-margin-top: 96px;
}
.chombo-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin: var(--space-5) 0;
}
.chombo-feature-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(27,42,56,.08);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
}
.chombo-feature-card h3 {
    color: var(--brand-accent);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin: 0 0 var(--space-2);
}
.chombo-feature-card p {
    color: var(--chombo-muted);
    margin: 0;
}
.chombo-hub-feature-list {
    display: grid;
    gap: var(--space-4);
    margin: var(--space-5) 0;
}
.chombo-hub-feature {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.25fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 2.5rem 4rem 2.75rem 3.5rem / 3rem 2.25rem 3.75rem 2.5rem;
    background: rgba(255,255,255,.9);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(27,42,56,.08);
}
.chombo-hub-feature:nth-child(even) {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .9fr);
}
.chombo-hub-feature:nth-child(even) .chombo-hub-feature__media {
    order: 2;
}
.chombo-hub-feature__media {
    min-height: 280px;
    margin: 0;
    overflow: hidden;
}
.chombo-hub-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}
.chombo-hub-feature__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
}
.chombo-hub-feature__body h3 {
    color: var(--chombo-blue-deep);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: .95;
    margin: 0 0 var(--space-3);
    text-transform: uppercase;
}
.chombo-hub-feature__body p {
    color: var(--chombo-muted);
    margin: 0;
    font-size: 1.05rem;
}
.chombo-hub-feature__button {
    align-self: flex-start;
    margin-top: var(--space-3);
}
.chombo-brand-content blockquote {
    max-width: 1200px;
    margin: var(--space-6) auto;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: var(--brand-accent);
    color: var(--brand-on-accent);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}
.chombo-brand-content blockquote p,
.chombo-brand-content blockquote {
    color: var(--brand-on-accent);
}
.chombo-brand-content > .chombo-eyebrow {
    max-width: 1200px;
    margin: var(--space-6) auto var(--space-3);
    padding: 0 var(--space-4);
    box-sizing: border-box;
}
.chombo-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: var(--chombo-paper);
    border-top: 1px solid var(--chombo-line);
}
.chombo-split-section--reverse .chombo-split-section__text {
    order: 2;
}
.chombo-split-section--reverse .chombo-split-section__media {
    order: 1;
}
.chombo-split-section__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 6rem);
    background: var(--chombo-paper);
}
.chombo-split-section__text h2 {
    color: var(--brand-accent);
    margin: 0 0 var(--space-3);
}
.chombo-split-section__text p {
    max-width: 680px;
}
.chombo-split-section__media {
    margin: 0;
    min-height: 520px;
    background: #d8dde0;
}
.chombo-split-section__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}
.chombo-brand-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4) var(--space-7);
    text-align: center;
}
.chombo-contact-section {
    background: var(--chombo-ink);
    color: #fff;
    padding: var(--space-7) var(--space-4);
}
.chombo-contact-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: var(--space-6);
    align-items: start;
}
.chombo-contact-section h2 {
    color: #fff;
    margin-top: 0;
}
.chombo-contact-section p {
    color: rgba(255,255,255,.78);
}
.chombo-contact-section .chombo-eyebrow {
    color: var(--brand-accent);
}
.chombo-contact-section__success {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: .7rem 1rem;
}
.chombo-contact-form {
    display: grid;
    gap: var(--space-3);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-md);
}
.chombo-contact-form__period {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}
.chombo-contact-form label {
    display: grid;
    gap: .45rem;
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    font-weight: 600;
}
.chombo-contact-form input,
.chombo-contact-form select,
.chombo-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 1rem;
    background: rgba(255,255,255,.94);
    color: var(--chombo-ink);
    padding: .9rem 1rem;
    font: inherit;
}
.chombo-contact-form input:focus,
.chombo-contact-form select:focus,
.chombo-contact-form textarea:focus {
    outline: 3px solid color-mix(in srgb, var(--brand-accent) 45%, transparent);
    border-color: var(--brand-accent);
}
.chombo-contact-success-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: var(--space-4);
    background:
        radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--brand-accent) 30%, transparent) 0 18rem, transparent 18.5rem),
        rgba(7, 27, 45, .78);
    backdrop-filter: blur(12px);
    animation: chombo-modal-fade .24s ease-out both;
}
.chombo-contact-success-modal.is-closing {
    animation: chombo-modal-fade-out .24s ease-in both;
}
.chombo-contact-success-modal__panel {
    position: relative;
    width: min(560px, 100%);
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    color: #fff;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(15,63,111,.98), rgba(7,27,45,.98)),
        var(--chombo-blue-deep);
    box-shadow: 0 28px 90px rgba(0,0,0,.38);
    border: 1px solid rgba(255,255,255,.18);
    animation: chombo-modal-rise .28s ease-out both;
}
.chombo-contact-success-modal__panel::before {
    content: "";
    position: absolute;
    inset: auto -12% -42% -12%;
    height: 56%;
    background: radial-gradient(circle at 50% 0, rgba(255,255,255,.16), transparent 65%);
    pointer-events: none;
}
.chombo-contact-success-modal__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}
.chombo-contact-success-modal__close::before,
.chombo-contact-success-modal__close::after,
.chombo-contact-sticky button::before,
.chombo-contact-sticky button::after {
    content: "";
    grid-area: 1 / 1;
    width: .78rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.chombo-contact-success-modal__close::before,
.chombo-contact-sticky button::before {
    transform: rotate(45deg);
}
.chombo-contact-success-modal__close::after,
.chombo-contact-sticky button::after {
    transform: rotate(-45deg);
}
.chombo-contact-success-modal__close {
    color: #fff;
}
.chombo-contact-success-modal__logo {
    display: block;
    width: min(260px, 70%);
    height: auto;
    margin: 0 auto var(--space-4);
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.2));
}
.chombo-contact-success-modal__mark {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto var(--space-3);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-accent-2);
    font-size: 1.65rem;
    font-weight: 800;
    box-shadow: 0 14px 38px rgba(0,0,0,.22);
}
.chombo-contact-success-modal h2 {
    margin: 0 0 var(--space-3);
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    line-height: .95;
    text-transform: uppercase;
}
.chombo-contact-success-modal p {
    max-width: 34rem;
    margin: 0 auto var(--space-4);
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    line-height: 1.7;
}
.chombo-contact-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    padding: 0 var(--space-4) max(var(--space-3), env(safe-area-inset-bottom));
    pointer-events: none;
    animation: chombo-sticky-rise .28s ease-out both;
}
.chombo-contact-sticky.is-closing {
    animation: chombo-sticky-out .22s ease-in both;
}
.chombo-contact-sticky__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: min(780px, 100%);
    margin: 0 auto;
    padding: .9rem 1rem .9rem .9rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(7, 27, 45, .94);
    color: #ffffff;
    box-shadow: 0 18px 46px rgba(0,0,0,.24);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}
.chombo-contact-sticky__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-accent-2);
    font-weight: 900;
}
.chombo-contact-sticky button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #ffffff;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}
@keyframes chombo-modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes chombo-modal-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes chombo-modal-rise {
    from { opacity: 0; transform: translateY(18px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chombo-sticky-rise {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes chombo-sticky-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(1rem); }
}
.elementor-element-157fc1a::before,
.elementor-element-1c5228f::before,
.elementor-element-1f4fcbd::before,
.elementor-element-285aae3::before,
.elementor-element-34d830e::before,
.elementor-element-3851bfc::before,
.elementor-element-47e54c9::before,
.elementor-element-4b84603::before,
.elementor-element-6f5d87d::before,
.elementor-element-831ff3f::before,
.elementor-element-8b7097d::before,
.elementor-element-cdf4beb::before,
.elementor-element-995d4e2::before {
    background-image: none !important;
}
@media (max-width: 900px) {
    body {
        line-height: 1.55;
    }
    h1 { font-size: clamp(2.35rem, 12vw, 4rem); }
    h2 { font-size: clamp(2.05rem, 10vw, 3.25rem); }
    .chombo-hub__intro {
        padding: clamp(4.75rem, 18vw, 6.5rem) 1rem var(--space-3);
    }
    .chombo-hub__intro p {
        font-size: 1rem;
        line-height: 1.65;
    }
    .chombo-hub__grid {
        gap: 1rem;
        padding: 1rem 1rem var(--space-5);
    }
    .chombo-hub__card {
        min-height: 360px;
        padding: 1.5rem;
        border-radius: 1.75rem;
        text-align: center;
    }
    .chombo-hub__card p {
        font-size: 1rem;
        line-height: 1.55;
    }
    .chombo-language-flags--brand {
        top: .75rem;
        right: .75rem;
        gap: .4rem;
    }
    .chombo-language-flags__item {
        width: 2.15rem;
        height: 2.15rem;
    }
    .chombo-split-section,
    .chombo-split-section--reverse {
        grid-template-columns: 1fr;
        min-height: 0;
        margin: 1rem;
        overflow: hidden;
        border: 1px solid var(--chombo-line);
        border-radius: 1.5rem;
        box-shadow: var(--shadow-sm);
    }
    .chombo-split-section--reverse .chombo-split-section__text,
    .chombo-split-section--reverse .chombo-split-section__media {
        order: initial;
    }
    .chombo-split-section__text {
        padding: var(--space-5) var(--space-4);
        text-align: center;
        align-items: center;
    }
    .chombo-split-section__text p {
        max-width: none;
        font-size: 1rem;
        line-height: 1.7;
    }
    .chombo-split-section__media,
    .chombo-split-section__media img {
        min-height: 280px;
    }
    .chombo-conversion-strip {
        position: static;
        grid-template-columns: 1fr;
        margin: 0 1rem 1rem;
        border-radius: 1.25rem;
    }
    .chombo-conversion-strip a {
        justify-content: flex-start;
        min-height: 3.75rem;
        padding: .8rem 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(27,42,56,.08);
        font-size: .9rem;
    }
    .chombo-brand-hero {
        min-height: 620px;
        align-items: flex-end;
    }
    .chombo-brand-hero__inner {
        padding: 6rem var(--space-3) var(--space-5);
    }
    .chombo-brand-hero::before {
        top: 1.5rem;
        right: -8rem;
        width: min(34rem, 108vw);
        transform: none;
        opacity: .34;
    }
    .chombo-brand-hero__image-slider {
        top: 1.5rem;
        right: -8rem;
        width: min(34rem, 108vw);
        transform: none;
        opacity: .34;
    }
    .chombo-brand-hero::after {
        right: 1rem;
        top: 5rem;
        width: 9rem;
    }
    .chombo-brand-hero__back {
        margin-bottom: var(--space-3);
    }
    .chombo-brand-hero__panel {
        max-width: none;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    .chombo-brand-hero__logo {
        width: clamp(245px, 68vw, 360px) !important;
        margin-top: var(--space-3);
        margin-right: auto;
        margin-left: auto;
    }
    .chombo-brand-hero__tagline {
        max-width: 20rem;
        font-size: clamp(1.05rem, 4.4vw, 1.55rem);
        line-height: 1.35;
        white-space: normal;
        margin-bottom: var(--space-4);
    }
    .chombo-brand-content {
        font-size: 1rem;
    }
    .chombo-fishing-gallery-carousel {
        margin-bottom: var(--space-5);
    }
    .chombo-fishing-gallery-carousel__track .e-gallery-item {
        flex-basis: min(78vw, 340px) !important;
        width: min(78vw, 340px) !important;
        height: 240px !important;
    }
    .chombo-contact-form__period {
        grid-template-columns: 1fr;
    }
    .chombo-feature-grid {
        grid-template-columns: 1fr;
        gap: .9rem;
        margin: var(--space-4) 0;
    }
    .chombo-feature-card {
        padding: 1.25rem;
        border-radius: 1rem;
        text-align: center;
    }
    .chombo-hub-feature,
    .chombo-hub-feature:nth-child(even) {
        grid-template-columns: 1fr;
        border-radius: 1.5rem;
    }
    .chombo-hub-feature:nth-child(even) .chombo-hub-feature__media {
        order: initial;
    }
    .chombo-hub-feature__media,
    .chombo-hub-feature__media img {
        min-height: 240px;
    }
    .chombo-hub-feature__body {
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }
    .chombo-brand-content blockquote {
        margin: var(--space-4) 1rem;
        padding: 1.5rem;
        border-radius: 1.5rem;
        text-align: center;
    }
    .chombo-contact-section__inner {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .chombo-contact-section__copy {
        text-align: center;
    }
    .chombo-contact-success-modal {
        padding: 1rem;
    }
    .chombo-contact-success-modal__panel {
        width: min(100%, 34rem);
    }
}

@media (max-width: 520px) {
    .chombo-hub__logo {
        width: min(210px, 58vw);
        margin-bottom: 1.5rem;
    }
    .chombo-hub__card {
        min-height: 315px;
        padding: 1.25rem;
        border-radius: 1.35rem;
    }
    .chombo-hub__card h2 {
        font-size: clamp(1.9rem, 10vw, 2.5rem);
    }
    .chombo-brand-hero {
        min-height: 570px;
    }
    .chombo-brand-hero__inner {
        padding: 4.75rem 1rem var(--space-4);
    }
    .chombo-brand-hero::before {
        top: 2rem;
        right: -9.5rem;
        width: 29rem;
    }
    .chombo-brand-hero__image-slider {
        top: 2rem;
        right: -9.5rem;
        width: 29rem;
    }
    .chombo-brand-hero__panel {
        padding: 0;
    }
    .chombo-brand-hero__logo {
        width: clamp(220px, 72vw, 320px) !important;
    }
    .chombo-brand-hero__tagline {
        max-width: 18rem;
        font-size: clamp(1rem, 4.6vw, 1.25rem);
        margin-bottom: var(--space-3);
    }
    .chombo-conversion-strip a {
        justify-content: flex-start;
        min-height: 3.55rem;
        padding: .75rem 1rem;
    }
    .chombo-conversion-strip span {
        width: 1.75rem;
        height: 1.75rem;
    }
    .chombo-fishing-gallery-carousel__controls {
        justify-content: center;
    }
    .chombo-fishing-gallery-carousel__track {
        scroll-padding: 1rem;
        padding-inline: 1rem;
    }
    .chombo-fishing-gallery-carousel__track .e-gallery-item {
        flex-basis: calc(100vw - 2rem) !important;
        width: calc(100vw - 2rem) !important;
        height: 230px !important;
    }
    .chombo-split-section__text {
        padding: 1.35rem;
    }
    .chombo-split-section__media,
    .chombo-split-section__media img {
        min-height: 220px;
    }
    .chombo-contact-section {
        padding: var(--space-5) 1rem;
    }
    .chombo-contact-form {
        padding: 1.25rem;
        border-radius: 1.25rem;
    }
    .chombo-contact-form input,
    .chombo-contact-form select,
    .chombo-contact-form textarea {
        min-height: 3rem;
        border-radius: .85rem;
    }
    .chombo-contact-sticky {
        padding-inline: .75rem;
    }
    .chombo-contact-sticky__inner {
        align-items: flex-start;
        justify-content: flex-start;
        border-radius: 1.25rem;
        padding: .85rem;
    }
    .chombo-contact-sticky__inner p {
        margin: 0;
        font-size: .9rem;
        line-height: 1.45;
    }
    .chombo-contact-success-modal__panel {
        border-radius: 1.5rem;
    }
    .chombo-contact-success-modal__logo {
        width: min(220px, 72%);
    }
    .chombo-contact-success-modal h2 {
        font-size: clamp(2.4rem, 13vw, 3.6rem);
    }
    .chombo-contact-success-modal p {
        font-size: 1rem;
        line-height: 1.55;
    }
}

/* Hook-point: Elementor buttons met klasse .chombo-btn erven brand-kleuren vanzelf */

/* ----------------------------------------------------------
   Print + reduced motion
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
