
/* Single business theme cleanup: hide default WordPress/theme title meta around the custom landing page. */
body.single-gbb_business .entry-header,
body.single-gbb_business .page-header,
body.single-gbb_business .entry-meta,
body.single-gbb_business .post-meta,
body.single-gbb_business .posted-on,
body.single-gbb_business .byline,
body.single-gbb_business .author,
body.single-gbb_business .comments-link,
body.single-gbb_business .entry-footer,
body.single-gbb_business .comments-area,
body.single-gbb_business .post-navigation,
body.single-gbb_business .wp-block-post-author,
body.single-gbb_business .wp-block-post-date,
body.single-gbb_business .wp-block-post-comments-link {
    display: none !important;
}

body.single-gbb_business .gbb-landing {
    margin-top: 0;
}

:root {
    --gbb-blue: #064663;
    --gbb-deep: #062532;
    --gbb-gold: #d7b46a;
    --gbb-sand: #f6f0e5;
    --gbb-ink: #14212a;
    --gbb-muted: #667784;
    --gbb-card: #ffffff;
    --gbb-shadow: 0 24px 70px rgba(6, 37, 50, .14);
    --gbb-radius: 24px;
}
.gbb-wrap, .gbb-wrap * {
    box-sizing: border-box;
}
.gbb-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px;
    color: var(--gbb-ink);
    font-family: inherit;
}
.gbb-hero {
    position: relative;
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: clamp(32px, 6vw, 76px);
    background:
        linear-gradient(135deg, rgba(6, 70, 99, .82), rgba(6, 37, 50, .96)),
        radial-gradient(circle at 20% 20%, rgba(215, 180, 106, .32), transparent 35%),
        linear-gradient(120deg, #075a78, #062532);
    box-shadow: var(--gbb-shadow);
}
.gbb-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.gbb-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    color: #fff;
}
.gbb-kicker,
.gbb-section-head span {
    display: inline-flex;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: var(--gbb-gold);
    margin-bottom: 12px;
}
.gbb-hero h1,
.gbb-landing-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(46px, 8vw, 92px);
    line-height: .92;
    letter-spacing: -.06em;
    color: #fff;
}
.gbb-hero p,
.gbb-landing-hero p {
    margin: 0;
    max-width: 720px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    color: rgba(255,255,255,.88);
}
.gbb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.gbb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 21px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.gbb-btn:hover {
    transform: translateY(-2px);
}
.gbb-btn-primary {
    background: var(--gbb-gold);
    color: #1d1a11 !important;
    box-shadow: 0 14px 35px rgba(215, 180, 106, .26);
}
.gbb-btn-glass {
    color: #fff !important;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(12px);
}
.gbb-section-head {
    margin: clamp(46px, 8vw, 82px) auto 22px;
    text-align: center;
    max-width: 780px;
}
.gbb-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.02;
    letter-spacing: -.04em;
    color: var(--gbb-deep);
}
.gbb-section-head p {
    margin: 0;
    color: var(--gbb-muted);
    font-size: 17px;
    line-height: 1.65;
}
.gbb-term-grid,
.gbb-business-grid {
    display: grid;
    gap: 20px;
}
.gbb-term-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gbb-business-grid.gbb-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gbb-business-grid.gbb-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gbb-business-grid.gbb-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gbb-term-card,
.gbb-card,
.gbb-content-card,
.gbb-contact-card,
.gbb-cta-panel {
    background: var(--gbb-card);
    border: 1px solid rgba(6, 70, 99, .10);
    box-shadow: 0 16px 44px rgba(6, 37, 50, .08);
}
.gbb-term-card {
    position: relative;
    display: block;
    min-height: 190px;
    padding: 25px;
    border-radius: var(--gbb-radius);
    overflow: hidden;
    text-decoration: none !important;
    color: var(--gbb-ink) !important;
}
.gbb-term-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,70,99,.08), rgba(215,180,106,.18));
    opacity: .8;
}
.gbb-term-card > * {
    position: relative;
    z-index: 1;
}
.gbb-term-card span {
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    color: var(--gbb-blue);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.gbb-term-card h3 {
    margin: 34px 0 10px;
    font-size: 25px;
    line-height: 1.05;
    color: var(--gbb-deep);
}
.gbb-term-card p,
.gbb-card p {
    color: var(--gbb-muted);
    line-height: 1.58;
    margin: 0;
}
.gbb-card {
    border-radius: var(--gbb-radius);
    overflow: hidden;
}
.gbb-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 235px;
    background: linear-gradient(135deg, var(--gbb-blue), var(--gbb-deep));
    background-size: cover;
    background-position: center;
    text-decoration: none !important;
}
.gbb-card-image span {
    color: rgba(255,255,255,.8);
    font-weight: 800;
}
.gbb-card-body {
    padding: 22px;
}
.gbb-card-meta,
.gbb-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gbb-card-meta span,
.gbb-pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(6,70,99,.08);
    color: var(--gbb-blue);
    font-size: 12px;
    font-weight: 800;
}
.gbb-card h3 {
    margin: 13px 0 8px;
    font-size: 24px;
    line-height: 1.08;
}
.gbb-card h3 a {
    color: var(--gbb-deep) !important;
    text-decoration: none !important;
}
.gbb-card-subtitle {
    font-weight: 700;
    color: var(--gbb-blue) !important;
    margin-bottom: 10px !important;
}
.gbb-card-link {
    display: inline-flex;
    margin-top: 17px;
    font-weight: 900;
    color: var(--gbb-blue) !important;
    text-decoration: none !important;
}
.gbb-empty {
    padding: 26px;
    border-radius: 18px;
    background: var(--gbb-sand);
    color: var(--gbb-muted);
    text-align: center;
}
.gbb-cta-panel {
    margin-top: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gbb-deep), var(--gbb-blue));
    color: #fff;
}
.gbb-cta-panel h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: -.04em;
}
.gbb-cta-panel p {
    margin: 0;
    color: rgba(255,255,255,.78);
    max-width: 760px;
}
.gbb-landing-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: flex-end;
    padding: clamp(30px, 6vw, 70px);
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gbb-blue), var(--gbb-deep));
    background-size: cover;
    background-position: center;
    box-shadow: var(--gbb-shadow);
}
.gbb-landing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,37,50,.14), rgba(6,37,50,.88));
}
.gbb-landing-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 850px;
}
.gbb-landing-hero .gbb-pill-row {
    margin-top: 22px;
}
.gbb-landing-hero .gbb-pill-row span {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.20);
}
.gbb-landing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    margin-top: 28px;
    align-items: start;
}
.gbb-landing-main {
    display: grid;
    gap: 24px;
}
.gbb-content-card,
.gbb-contact-card {
    border-radius: 26px;
    padding: clamp(24px, 4vw, 38px);
}
.gbb-content-card h2,
.gbb-contact-card h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -.035em;
    color: var(--gbb-deep);
}
.gbb-entry-content {
    color: #263946;
    line-height: 1.75;
    font-size: 17px;
}
.gbb-entry-content p:last-child {
    margin-bottom: 0;
}
.gbb-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.gbb-highlight-item {
    padding: 16px 17px;
    border-radius: 18px;
    background: var(--gbb-sand);
    color: var(--gbb-deep);
    font-weight: 800;
}
.gbb-photo-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--gbb-sand);
    box-shadow: inset 0 0 0 1px rgba(6,70,99,.08);
}
.gbb-photo-slider-viewport {
    overflow: hidden;
    border-radius: 24px;
}
.gbb-photo-slider-track {
    display: flex;
    transition: transform .38s ease;
    will-change: transform;
}
.gbb-photo-slide {
    flex: 0 0 100%;
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
    text-decoration: none !important;
    background: var(--gbb-sand);
    cursor: zoom-in;
}
.gbb-photo-slide img {
    display: block;
    width: 100%;
    height: min(62vw, 520px);
    min-height: 300px;
    object-fit: cover;
}
.gbb-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(255,255,255,.92);
    color: var(--gbb-deep);
    box-shadow: 0 14px 34px rgba(6,37,50,.20);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.gbb-slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    background: #fff;
}
.gbb-slider-prev { left: 16px; }
.gbb-slider-next { right: 16px; }
.gbb-slider-counter {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(6,37,50,.72);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}
.gbb-lightbox-open {
    overflow: hidden;
}
.gbb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.gbb-lightbox.is-open {
    display: flex;
}
.gbb-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 20, 30, .88);
    backdrop-filter: blur(12px);
}
.gbb-lightbox-panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    height: min(82vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gbb-lightbox-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gbb-lightbox-image {
    display: none;
    max-width: 100%;
    max-height: 100%;
    border-radius: 22px;
    object-fit: contain;
    box-shadow: 0 26px 80px rgba(0,0,0,.42);
}
.gbb-lightbox-image.is-active {
    display: block;
}
.gbb-lightbox-close,
.gbb-lightbox-arrow {
    position: absolute;
    z-index: 4;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--gbb-deep);
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(0,0,0,.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gbb-lightbox-close {
    top: -10px;
    right: -10px;
    width: 46px;
    height: 46px;
    font-size: 30px;
    line-height: 1;
}
.gbb-lightbox-arrow {
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    font-size: 38px;
    line-height: 1;
}
.gbb-lightbox-prev { left: -10px; }
.gbb-lightbox-next { right: -10px; }
.gbb-lightbox-counter {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--gbb-deep);
    font-size: 13px;
    font-weight: 900;
}
.gbb-contact-card {
    position: sticky;
    top: 24px;
}
.gbb-contact-row {
    padding: 15px 0;
    border-bottom: 1px solid rgba(6,70,99,.10);
}
.gbb-contact-row strong {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gbb-muted);
}
.gbb-contact-row a,
.gbb-contact-row span {
    color: var(--gbb-deep) !important;
    text-decoration: none !important;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.gbb-contact-row-button .gbb-contact-mail-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--gbb-gold);
    color: #1d1a11 !important;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(215, 180, 106, .22);
}
.gbb-contact-row-button .gbb-contact-mail-btn:hover {
    transform: translateY(-1px);
}

.gbb-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.gbb-social-row a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(6,70,99,.08);
    color: var(--gbb-blue) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 13px;
}
.gbb-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 24px;
}
.gbb-filter-bar a {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--gbb-sand);
    color: var(--gbb-blue) !important;
    text-decoration: none !important;
    font-weight: 800;
}
@media (max-width: 1024px) {
    .gbb-term-grid,
    .gbb-business-grid.gbb-cols-3,
    .gbb-business-grid.gbb-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gbb-landing-grid {
        grid-template-columns: 1fr;
    }
    .gbb-contact-card {
        position: relative;
        top: auto;
    }
}
@media (max-width: 680px) {
    .gbb-wrap {
        padding: 12px;
    }
    .gbb-hero,
    .gbb-landing-hero {
        min-height: 520px;
        border-radius: 24px;
    }
    .gbb-term-grid,
    .gbb-business-grid.gbb-cols-2,
    .gbb-business-grid.gbb-cols-3,
    .gbb-business-grid.gbb-cols-4,
    .gbb-highlight-grid {
        grid-template-columns: 1fr;
    }
    .gbb-photo-slide img {
        height: 360px;
        min-height: 260px;
    }
    .gbb-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
    .gbb-slider-prev { left: 10px; }
    .gbb-slider-next { right: 10px; }
    .gbb-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .gbb-lightbox {
        padding: 12px;
    }
    .gbb-lightbox-panel {
        height: 78vh;
    }
    .gbb-lightbox-close {
        top: 6px;
        right: 6px;
    }
    .gbb-lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }
    .gbb-lightbox-prev { left: 6px; }
    .gbb-lightbox-next { right: 6px; }
    .gbb-lightbox-image {
        border-radius: 16px;
    }
}

/* v1.0.4: Premium editorial homepage hero + clean plugin templates */
body.gbb-clean-template .entry-header,
body.gbb-clean-template .page-header,
body.gbb-clean-template .entry-title,
body.gbb-clean-template .entry-meta,
body.gbb-clean-template .post-meta,
body.gbb-clean-template .posted-on,
body.gbb-clean-template .byline,
body.gbb-clean-template .author,
body.gbb-clean-template .comments-link,
body.gbb-clean-template .entry-footer,
body.gbb-clean-template .comments-area,
body.gbb-clean-template .post-navigation,
body.post-type-archive-gbb_business .entry-header,
body.post-type-archive-gbb_business .entry-meta,
body.tax-gbb_area .entry-header,
body.tax-gbb_area .entry-meta,
body.tax-gbb_category .entry-header,
body.tax-gbb_category .entry-meta,
body.tax-gbb_experience .entry-header,
body.tax-gbb_experience .entry-meta {
    display: none !important;
}

.gbb-template-main {
    width: 100%;
    padding: 0;
}

.gbb-hero.gbb-hero-editorial {
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    min-height: 660px;
    padding: clamp(34px, 6vw, 78px);
    background:
        radial-gradient(circle at 70% 14%, rgba(37, 97, 126, .48), transparent 34%),
        radial-gradient(circle at 18% 85%, rgba(215, 180, 106, .15), transparent 34%),
        linear-gradient(135deg, #061c2a 0%, #082b41 48%, #041722 100%);
    align-items: center;
}

.gbb-hero.gbb-hero-editorial::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -190px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    border: 1px solid rgba(215, 180, 106, .25);
    opacity: .9;
    pointer-events: none;
}

.gbb-hero.gbb-hero-editorial::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 170px;
    width: auto;
    border-radius: 0;
    background:
        linear-gradient(180deg, transparent, rgba(1, 12, 19, .32)),
        radial-gradient(ellipse at 18% 100%, rgba(215,180,106,.16), transparent 46%);
    opacity: 1;
    pointer-events: none;
}

.gbb-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.2), transparent 72%);
    opacity: .26;
}

.gbb-hero.gbb-hero-editorial .gbb-hero-content {
    max-width: 650px;
    align-self: center;
}

.gbb-hero-divider {
    display: block;
    width: 280px;
    height: 1px;
    margin: 5px 0 22px;
    background: linear-gradient(90deg, rgba(215,180,106,.5), rgba(215,180,106,.08));
    position: relative;
}

.gbb-hero-divider::after {
    content: "✦";
    position: absolute;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gbb-gold);
    background: #082b41;
    font-size: 11px;
}

.gbb-hero.gbb-hero-editorial h1 {
    max-width: 650px;
    font-size: clamp(54px, 6.7vw, 104px);
    line-height: .95;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.gbb-hero.gbb-hero-editorial p {
    max-width: 585px;
    font-size: clamp(17px, 1.6vw, 22px);
}

.gbb-hero.gbb-hero-editorial .gbb-btn-primary {
    gap: 12px;
}

.gbb-hero-collage {
    position: relative;
    z-index: 2;
    height: min(52vw, 570px);
    min-height: 430px;
}

.gbb-hero-collage::before {
    content: "";
    position: absolute;
    inset: 4% 7% 2% 1%;
    border-radius: 999px 999px 42px 42px;
    background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.gbb-hero-photo {
    position: absolute;
    overflow: hidden;
    background-color: #123a4b;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(215, 180, 106, .38);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.gbb-hero-photo.is-empty {
    background-image:
        radial-gradient(circle at 20% 22%, rgba(215,180,106,.25), transparent 34%),
        linear-gradient(135deg, #0b5672, #061c2a);
}

.gbb-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(2, 17, 25, .72));
    opacity: .9;
}

.gbb-hero-photo span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(5, 24, 35, .72);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.gbb-hero-photo-coast {
    top: 0;
    left: 4%;
    width: 58%;
    height: 58%;
    border-radius: 999px 999px 28px 28px;
}

.gbb-hero-photo-town {
    top: 1%;
    right: 0;
    width: 34%;
    height: 62%;
    border-radius: 999px 999px 28px 28px;
}

.gbb-hero-photo-food {
    left: 0;
    bottom: 8%;
    width: 42%;
    height: 34%;
    border-radius: 24px;
}

.gbb-hero-photo-luxury {
    right: 4%;
    bottom: 0;
    width: 56%;
    height: 39%;
    border-radius: 24px;
}

.gbb-hero-compass {
    position: absolute;
    left: -12px;
    bottom: 0;
    z-index: 3;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid rgba(215,180,106,.38);
    background: rgba(3, 21, 31, .62);
    color: var(--gbb-gold);
    box-shadow: 0 22px 46px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.gbb-hero-compass span {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-top: 12px;
}

.gbb-hero-compass strong {
    display: block;
    margin-top: -14px;
    font-size: 10px;
    letter-spacing: .13em;
}

.gbb-archive-hero {
    margin: 12px 0 26px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 0%, rgba(215,180,106,.22), transparent 32%),
        linear-gradient(135deg, var(--gbb-deep), var(--gbb-blue));
    box-shadow: var(--gbb-shadow);
}

.gbb-archive-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
    color: #fff;
}

.gbb-archive-hero p {
    margin: 0;
    max-width: 780px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .gbb-hero.gbb-hero-editorial {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .gbb-hero-collage {
        width: min(760px, 100%);
        margin: 0 auto;
        height: 520px;
    }
}

@media (max-width: 680px) {
    .gbb-hero.gbb-hero-editorial {
        padding: 28px;
        gap: 28px;
    }
    .gbb-hero.gbb-hero-editorial h1 {
        font-size: clamp(44px, 14vw, 66px);
    }
    .gbb-hero-divider {
        width: 210px;
    }
    .gbb-hero-collage {
        height: 520px;
        min-height: 0;
    }
    .gbb-hero-photo-coast {
        left: 0;
        width: 68%;
        height: 43%;
    }
    .gbb-hero-photo-town {
        right: 0;
        width: 42%;
        height: 46%;
    }
    .gbb-hero-photo-food {
        left: 0;
        bottom: 20%;
        width: 54%;
        height: 29%;
    }
    .gbb-hero-photo-luxury {
        right: 0;
        bottom: 0;
        width: 72%;
        height: 31%;
    }
    .gbb-hero-compass {
        left: 0;
        bottom: 0;
        width: 68px;
        height: 68px;
    }
}

/* v1.0.6: Exact fixed homepage hero image requested by the client, without embedded CTA buttons/hotspots. */
.gbb-home-hero-exact {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 clamp(34px, 5vw, 62px);
    overflow: hidden;
    line-height: 0;
}

.gbb-home-hero-exact img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 680px) {
    .gbb-home-hero-exact {
        margin-bottom: 36px;
    }
}

/* v1.0.9: Places, visible SEO keyword pages and blog/content hub. */
body.single-gbb_place .entry-header,
body.single-gbb_place .page-header,
body.single-gbb_place .entry-meta,
body.single-gbb_place .post-meta,
body.single-gbb_place .posted-on,
body.single-gbb_place .byline,
body.single-gbb_place .author,
body.single-gbb_place .comments-link,
body.single-gbb_place .entry-footer,
body.single-gbb_place .comments-area,
body.single-gbb_place .post-navigation,
body.single-gbb_seo_page .entry-header,
body.single-gbb_seo_page .page-header,
body.single-gbb_seo_page .entry-meta,
body.single-gbb_seo_page .post-meta,
body.single-gbb_seo_page .posted-on,
body.single-gbb_seo_page .byline,
body.single-gbb_seo_page .author,
body.single-gbb_seo_page .comments-link,
body.single-gbb_seo_page .entry-footer,
body.single-gbb_seo_page .comments-area,
body.single-gbb_seo_page .post-navigation {
    display: none !important;
}

.gbb-card-grid,
.gbb-place-grid,
.gbb-blog-grid {
    display: grid;
    gap: 20px;
}
.gbb-card-grid.gbb-cols-2,
.gbb-place-grid.gbb-cols-2,
.gbb-blog-grid.gbb-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gbb-card-grid.gbb-cols-3,
.gbb-place-grid.gbb-cols-3,
.gbb-blog-grid.gbb-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gbb-card-grid.gbb-cols-4,
.gbb-place-grid.gbb-cols-4,
.gbb-blog-grid.gbb-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gbb-card-image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
}
.gbb-card-kicker {
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gbb-blue);
    margin-bottom: 4px;
}
.gbb-card-image-fallback {
    min-height: 245px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gbb-blue), var(--gbb-deep));
    color: rgba(255,255,255,.82) !important;
    font-weight: 900;
}
.gbb-empty-state {
    padding: 26px;
    border-radius: 20px;
    background: var(--gbb-sand);
    color: var(--gbb-muted);
    text-align: center;
}
.gbb-prose {
    background: #fff;
    border: 1px solid rgba(6,70,99,.10);
    border-radius: 26px;
    padding: clamp(24px, 4vw, 38px);
    box-shadow: 0 16px 44px rgba(6,37,50,.08);
    color: #263946;
    line-height: 1.75;
    font-size: 17px;
}
.gbb-prose p:last-child { margin-bottom: 0; }
.gbb-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gbb-highlight-list span,
.gbb-side-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(6,70,99,.08);
    color: var(--gbb-blue) !important;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
}
.gbb-place-info-card .gbb-primary-btn,
.gbb-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--gbb-gold);
    color: #1d1a11 !important;
    font-weight: 900;
    text-decoration: none !important;
    margin-top: 12px;
}
.gbb-seo-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0 24px;
}
.gbb-seo-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    min-width: 180px;
    padding: 15px 17px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(6,70,99,.10);
    box-shadow: 0 10px 28px rgba(6,37,50,.06);
    color: var(--gbb-ink) !important;
    text-decoration: none !important;
}
.gbb-seo-chip span {
    color: var(--gbb-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gbb-seo-chip strong {
    color: var(--gbb-deep);
    font-size: 15px;
    line-height: 1.18;
}
.gbb-seo-group {
    margin: 28px 0;
}
.gbb-seo-group h3 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--gbb-deep);
}
.gbb-side-link {
    display: flex;
    width: 100%;
    margin: 0 0 8px;
    border-radius: 14px;
}
.gbb-contextual-results .gbb-places-section .gbb-section-head {
    display: none;
}

@media (max-width: 920px) {
    .gbb-card-grid.gbb-cols-3,
    .gbb-card-grid.gbb-cols-4,
    .gbb-place-grid.gbb-cols-3,
    .gbb-place-grid.gbb-cols-4,
    .gbb-blog-grid.gbb-cols-3,
    .gbb-blog-grid.gbb-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 680px) {
    .gbb-card-grid.gbb-cols-2,
    .gbb-card-grid.gbb-cols-3,
    .gbb-card-grid.gbb-cols-4,
    .gbb-place-grid.gbb-cols-2,
    .gbb-place-grid.gbb-cols-3,
    .gbb-place-grid.gbb-cols-4,
    .gbb-blog-grid.gbb-cols-2,
    .gbb-blog-grid.gbb-cols-3,
    .gbb-blog-grid.gbb-cols-4 {
        grid-template-columns: 1fr;
    }
    .gbb-seo-chip { width: 100%; }
}
