/* ═══════════════════════════════════════════════════════════════════════════
 * TOURWILL — HANDPICKED COLLECTION PAGE
 * (taxonomy-hotel_collection.php)
 * ─────────────────────────────────────────────────────────────────────────
 * Mobile-first scoped styles. Token system matches the homepage, the
 * accommodation page, and the single hotel page exactly.
 *
 * Sections:
 *   1. Tokens + base
 *   2. Buttons
 *   3. Section primitives
 *   4. Hero
 *   5. Stats bar (floating white card)
 *   6. About this collection
 *   7. Hotels grid + filters + load more
 *   8. Trust ("Why Travelers Love This Collection")
 *   9. Final CTA panel
 *  10. Reduced motion + print
 * ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
 * 1. Tokens + base
 * ───────────────────────────────────────────────────────────────────────── */
.col-main {
    --col-primary:        var(--color-primary, #134e4a);
    --col-primary-dark:   #0d3a35;
    --col-primary-deep:   #062322;
    --col-accent:         var(--color-accent, #eab308);
    --col-accent-dark:    #ca8a04;
    --col-ink:            var(--color-forest-dark, #07261C);
    --col-ink-body:       #334155;
    --col-ink-soft:       #475569;
    --col-muted:          #5f6b6a;
    --col-line:           #e5e7eb;
    --col-line-soft:      #eef0ee;
    --col-bg-page:        #f8f8f6;
    --col-bg-card:        #ffffff;

    --col-font-sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --col-font-serif:     "Playfair Display", Georgia, "Times New Roman", serif;
    --col-font-script:    "Caveat", "Brush Script MT", cursive;

    --col-radius:         12px;
    --col-radius-lg:      18px;
    --col-radius-pill:    999px;
    --col-shadow-card:    0 8px 24px rgba(7, 38, 28, .06);
    --col-shadow-float:   0 18px 48px rgba(7, 38, 28, .12);
    --col-ease:           cubic-bezier(.4, .14, .3, 1);

    background: var(--col-bg-page);
    color: var(--col-ink-body);
    font-family: var(--col-font-sans);
    line-height: 1.55;
    overflow-x: hidden;
}
.col-main *,
.col-main *::before,
.col-main *::after { box-sizing: border-box; }
.col-main img,
.col-main svg { max-width: 100%; }
.col-main { scroll-behavior: smooth; }

/* ─────────────────────────────────────────────────────────────────────────
 * 2. Buttons
 * ───────────────────────────────────────────────────────────────────────── */
.col-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .25s var(--col-ease), background .25s var(--col-ease),
                color .25s var(--col-ease), box-shadow .25s var(--col-ease),
                border-color .25s var(--col-ease);
    white-space: normal;
    text-align: center;
    max-width: 100%;
    letter-spacing: .005em;
}
@media (min-width: 600px) {
    .col-btn { padding: 13px 22px; font-size: 14.5px; white-space: nowrap; }
}
.col-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.col-btn--primary {
    background: var(--col-accent);
    color: #0c2419;
    box-shadow: 0 6px 18px rgba(234, 179, 8, .35);
}
.col-btn--primary:hover {
    background: var(--col-accent-dark);
    transform: translateY(-1px);
}
.col-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}
.col-btn--ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .6);
}
.col-btn--ghost-dark {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}
.col-btn--ghost-dark:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .45);
}
.col-btn:focus-visible {
    outline: 2px solid var(--col-accent);
    outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 3. Section primitives
 * ───────────────────────────────────────────────────────────────────────── */
.col-section { padding: 40px 0; }
.col-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .col-section { padding: 56px 0; }
    .col-section__inner { padding: 0 32px; }
}
@media (min-width: 1024px) {
    .col-section { padding: 64px 0; }
}

.col-section__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}
.col-section__heading { width: 100%; min-width: 0; flex: 1 1 100%; }
.col-section__title {
    font-family: var(--col-font-serif);
    font-size: clamp(22px, 5.4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--col-ink);
    margin: 0;
    letter-spacing: -.01em;
    overflow-wrap: anywhere;
    hyphens: auto;
}
.col-section__desc {
    color: var(--col-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 6px 0 0;
}
.col-section__head--withFilters { align-items: flex-start; }
@media (min-width: 900px) {
    .col-section__head--withFilters {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
    }
    .col-section__head--withFilters .col-section__heading { flex: 1 1 auto; width: auto; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * 4. Hero
 * ───────────────────────────────────────────────────────────────────────── */
.col-hero {
    position: relative;
    isolation: isolate;
    min-height: 620px;
    color: #fff;
    overflow: hidden;
}
.col-hero__bg { position: absolute; inset: 0; z-index: -2; }
.col-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.col-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(6, 35, 34, .55) 0%,
        rgba(6, 35, 34, .35) 30%,
        rgba(6, 35, 34, .75) 70%,
        rgba(6, 35, 34, .92) 100%
    );
}
@media (min-width: 768px) {
    .col-hero__overlay {
        background: linear-gradient(
            90deg,
            rgba(6, 35, 34, .92) 0%,
            rgba(6, 35, 34, .68) 45%,
            rgba(6, 35, 34, .15) 100%
        );
    }
}

.col-hero__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    /* Generous top padding so the navbar pill never overlaps the breadcrumb */
    padding: 130px 20px 130px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
@media (min-width: 768px) {
    .col-hero__inner { padding: 130px 32px 150px; min-height: 700px; }
}
@media (min-width: 1024px) {
    .col-hero__inner { padding: 120px 40px 160px; }
}

.col-hero__crumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}
.col-hero__crumbs a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--col-ease);
}
.col-hero__crumbs a:hover { color: var(--col-accent); }
.col-hero__crumb-sep { opacity: .55; font-size: 11px; }
.col-hero__crumbs li[aria-current="page"] {
    color: var(--col-accent);
    font-weight: 500;
}

.col-hero__content {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (min-width: 768px) {
    .col-hero__content { gap: 18px; }
}

.col-hero__eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--col-font-script);
    font-size: clamp(20px, 4.5vw, 26px);
    color: var(--col-accent);
    font-weight: 400;
    line-height: 1.1;
}
.col-hero__eyebrow svg { width: 18px; height: 18px; flex-shrink: 0; }

.col-hero__title {
    font-family: var(--col-font-serif);
    font-size: clamp(38px, 9.5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    letter-spacing: -.015em;
}

.col-hero__desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .88);
    max-width: 52ch;
}
@media (min-width: 768px) {
    .col-hero__desc { font-size: 15.5px; }
}

.col-hero__tags {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.col-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--col-radius-pill);
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
}
.col-hero__tag-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    color: var(--col-accent);
}
.col-hero__tag-icon svg { width: 100%; height: 100%; }

.col-hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 6px;
}
.col-hero__ctas .col-btn { width: auto; max-width: 100%; }
@media (min-width: 600px) {
    .col-hero__ctas {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
 * 5. Stats bar — floating white card
 * ───────────────────────────────────────────────────────────────────────── */
.col-stats {
    position: relative;
    z-index: 3;
    /* Float upward to overlap the bottom of the hero */
    margin-top: -68px;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .col-stats { margin-top: -84px; padding: 0 32px; }
}
.col-stats__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--col-bg-card);
    border-radius: var(--col-radius-lg);
    box-shadow: var(--col-shadow-float);
    padding: 18px 16px;
}
@media (min-width: 768px) {
    .col-stats__inner { padding: 22px 28px; }
}
.col-stats__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* Mobile: 2×2 · Desktop: 4 in a row */
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 900px) {
    .col-stats__list { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.col-stats__cell {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}
.col-stats__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    color: var(--col-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.col-stats__icon svg,
.col-stats__icon .col-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.col-stats__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.col-stats__value {
    font-size: 15px;
    font-weight: 700;
    color: var(--col-ink);
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.col-stats__label {
    font-size: 12px;
    color: var(--col-muted);
}

/* ─────────────────────────────────────────────────────────────────────────
 * 6. About this collection
 * ───────────────────────────────────────────────────────────────────────── */
.col-section--about { padding-top: 48px; }
@media (min-width: 768px) {
    .col-section--about { padding-top: 72px; }
}

.col-about__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
@media (min-width: 768px) {
    .col-about__head { margin-bottom: 48px; }
}
.col-about__eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--col-font-script);
    font-size: clamp(18px, 3.6vw, 22px);
    color: var(--col-accent);
    font-weight: 400;
}
.col-about__eyebrow svg { width: 16px; height: 16px; }
.col-about__title {
    font-family: var(--col-font-serif);
    font-size: clamp(26px, 5.8vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--col-ink);
    margin: 0;
    letter-spacing: -.01em;
    overflow-wrap: anywhere;
}
.col-about__body {
    margin: 0;
    color: var(--col-ink-body);
    font-size: 15px;
    line-height: 1.7;
    max-width: 65ch;
}

.col-about__pillars {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 900px) {
    .col-about__pillars { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}
.col-pillar {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
}
.col-pillar__icon {
    width: 44px;
    height: 44px;
    color: var(--col-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.col-pillar__icon svg,
.col-pillar__icon .col-icon-img { width: 100%; height: 100%; object-fit: contain; }
.col-pillar__title {
    margin: 0;
    font-family: var(--col-font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--col-ink);
    line-height: 1.3;
}
.col-pillar__desc {
    margin: 0;
    color: var(--col-muted);
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 32ch;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 7. Hotels grid + filters + load more
 * ───────────────────────────────────────────────────────────────────────── */
.col-section--hotels {
    /* Anchor target offset so the navbar doesn't cover the title when the
       hero's "Explore Hotels" button scrolls here. */
    scroll-margin-top: 90px;
}
@media (min-width: 1024px) {
    .col-section--hotels { scroll-margin-top: 110px; }
}

.col-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    align-items: stretch;
    width: 100%;
}
@media (min-width: 900px) {
    .col-filters { margin-top: 0; align-self: flex-end; width: auto; }
}
.col-filters__field {
    position: relative;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
}
@media (min-width: 600px) {
    .col-filters__field { flex: 1 1 0; min-width: 140px; }
}
@media (max-width: 479px) {
    .col-filters { flex-direction: column; }
    .col-filters__field { flex: 1 1 100%; }
}
.col-filters__label {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.col-filters__select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: var(--col-bg-card);
    border: 1px solid var(--col-line);
    border-radius: 10px;
    padding: 11px 38px 11px 16px;
    font-size: 14px;
    color: var(--col-ink);
    font-family: inherit;
    cursor: pointer;
    transition: border-color .25s var(--col-ease), box-shadow .25s var(--col-ease);
}
.col-filters__select:hover { border-color: var(--col-primary); }
.col-filters__select:focus {
    outline: none;
    border-color: var(--col-primary);
    box-shadow: 0 0 0 3px rgba(19, 78, 74, .12);
}
.col-filters__chev {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    color: var(--col-ink-soft);
    pointer-events: none;
}

.col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .col-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
    .col-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.col-grid__empty {
    grid-column: 1 / -1;
    padding: 40px 20px;
    background: var(--col-bg-card);
    border-radius: var(--col-radius);
    color: var(--col-ink-body);
    text-align: center;
    box-shadow: var(--col-shadow-card);
}
.col-grid__nomatch {
    margin: 24px 0 0;
    padding: 18px 22px;
    background: var(--col-bg-card);
    border-radius: var(--col-radius);
    color: var(--col-ink-body);
    text-align: center;
    box-shadow: var(--col-shadow-card);
}
.col-grid__nomatch-reset {
    background: transparent;
    border: 0;
    color: var(--col-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-family: inherit;
}

/* Hide cards that are filtered out — kept in DOM so filter is instant */
.col-grid .acc-card[hidden] { display: none !important; }

/* Load more button */
.col-loadmore {
    display: flex;
    justify-content: center;
    margin: 28px 0 4px;
}
.col-loadmore__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--col-bg-card);
    border: 1px solid var(--col-line);
    border-radius: var(--col-radius-pill);
    color: var(--col-ink);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--col-shadow-card);
    transition: background .25s var(--col-ease), border-color .25s var(--col-ease),
                color .25s var(--col-ease), transform .25s var(--col-ease);
}
.col-loadmore__btn:hover {
    background: var(--col-accent);
    border-color: var(--col-accent);
    color: #0c2419;
    transform: translateY(-1px);
}
.col-loadmore__btn svg { width: 16px; height: 16px; color: var(--col-accent); transition: color .25s var(--col-ease); }
.col-loadmore__btn:hover svg { color: #0c2419; }
.col-loadmore__spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0, 0, 0, .15);
    border-top-color: var(--col-primary);
    border-radius: 50%;
    animation: col-spin .7s linear infinite;
}
.col-loadmore__btn[data-loading="true"] .col-loadmore__label { opacity: .55; }
.col-loadmore__btn[data-loading="true"] svg { display: none; }
.col-loadmore__btn[data-loading="true"] .col-loadmore__spinner { display: inline-block; }
@keyframes col-spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────────────────────────────────
 * 8. Trust ("Why Travelers Love This Collection")
 * ───────────────────────────────────────────────────────────────────────── */
.col-section--trust {
    background: var(--col-line-soft);
}
.col-trust__heading {
    margin: 0 auto 28px;
    text-align: center;
    font-family: var(--col-font-serif);
    font-size: clamp(22px, 5.4vw, 30px);
    font-weight: 700;
    color: var(--col-ink);
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.col-trust__heading svg {
    width: 22px;
    height: 22px;
    color: var(--col-accent);
}
.col-trust__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .col-trust__list { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 900px) {
    .col-trust__list { grid-template-columns: repeat(4, 1fr); }
}
.col-trust__card {
    background: var(--col-bg-card);
    border-radius: var(--col-radius);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 130px;
}
.col-trust__icon {
    width: 36px;
    height: 36px;
    color: var(--col-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.col-trust__icon svg,
.col-trust__icon .col-icon-img { width: 100%; height: 100%; object-fit: contain; }
.col-trust__title {
    margin: 0;
    font-family: var(--col-font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--col-ink);
    line-height: 1.3;
}
.col-trust__desc {
    margin: 0;
    color: var(--col-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 9. Final CTA panel
 * ───────────────────────────────────────────────────────────────────────── */
.col-section--cta { padding-top: 0; padding-bottom: 56px; }

.col-cta {
    position: relative;
    background: linear-gradient(135deg, var(--col-primary-deep) 0%, var(--col-primary) 100%);
    color: #fff;
    border-radius: var(--col-radius-lg);
    padding: 32px 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 900px) {
    .col-cta {
        padding: 40px 48px;
        grid-template-columns: minmax(0, 1.3fr) auto;
        align-items: center;
        gap: 32px;
    }
}
.col-cta__leaf {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: auto;
    color: var(--col-accent);
    pointer-events: none;
}
@media (min-width: 900px) {
    .col-cta__leaf { left: 14px; bottom: 14px; width: 100px; }
}
.col-cta__head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.col-cta__title {
    font-family: var(--col-font-serif);
    font-size: clamp(20px, 4.8vw, 28px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}
.col-cta__desc {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.6;
    max-width: 52ch;
}

.col-cta__btns {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
@media (min-width: 600px) {
    .col-cta__btns {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .col-cta__btns .col-btn { width: auto; }
}
@media (min-width: 900px) {
    .col-cta__btns { justify-content: flex-end; }
}

.col-cta__support {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .col-cta__support {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        padding-top: 22px;
    }
}
.col-cta__support-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}
.col-cta__support-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--col-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.col-cta__support-icon svg { width: 100%; height: 100%; }
.col-cta__support-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.col-cta__support-title {
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
}
.col-cta__support-desc {
    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
    line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 10. Reduced motion + print
 * ───────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .col-main { scroll-behavior: auto; }
    .col-main *,
    .col-main *::before,
    .col-main *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
@media print {
    .col-hero__overlay,
    .col-loadmore,
    .col-filters,
    .col-cta { background: none !important; color: #000 !important; }
    .col-section { page-break-inside: avoid; }
}
