/* ============================================================
   Charter Guide Section — extracted from inline styles
   ============================================================ */

/* Section wrappers */
.cg-dark {
    padding: 80px 20px;
    background: #1B2838;
}
.cg-cream {
    padding: 80px 20px;
    background: #faf9f6;
    border-top: 1px solid #e8e4dc;
    border-bottom: 1px solid #e8e4dc;
}
.cg-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Section header */
.cg-header {
    text-align: center;
    margin-bottom: 64px;
}
.cg-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: #2095AE;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.cg-h2 {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #fff;
    margin: 0 0 20px;
    font-weight: 400;
}
.cg-h2--dark {
    color: #1a3540;
}
.cg-intro {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 740px;
    margin: 0 auto;
}

/* Section divider with centred heading */
.cg-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}
.cg-divider__line {
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
}
.cg-divider__line--dark {
    background: #e2ddd6;
}
.cg-divider__heading {
    font-family: 'Gilda Display', serif;
    font-size: clamp(18px, 2.5vw, 22px);
    color: #fff;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.cg-divider__heading--dark {
    color: #1a3540;
}

/* Destination grid — seamless cells separated by 1px gaps */
.cg-dest {
    margin-bottom: 72px;
}
.cg-dest__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}
.cg-dest__cell {
    background: #1B2838;
    padding: 28px 24px;
}
/* Clickable guide cards (internal links to blog articles) */
a.cg-guide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background .18s ease, transform .18s ease;
}
a.cg-guide-link:hover {
    background: #243446;
    transform: translateY(-2px);
}
a.cg-guide-link:hover .cg-dest__title { color: #2095AE; }
.cg-dest__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.cg-dest__icon {
    color: #2095AE;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}
.cg-dest__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.cg-dest__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* Charter option cards */
.cg-options {
    margin-bottom: 72px;
}
.cg-options__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.cg-card {
    background: #fff;
    border: 1px solid #e2ddd6;
    border-radius: 12px;
    padding: 32px 28px;
}
.cg-card__icon {
    color: #2095AE;
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
}
.cg-card__title {
    font-family: 'Gilda Display', serif;
    font-size: 19px;
    color: #1a3540;
    margin-bottom: 4px;
    font-weight: 400;
}
.cg-card__label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #2095AE;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ede9e3;
    display: block;
}
.cg-card__text {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
}

/* Tour time slots */
.cg-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cg-slot {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cg-slot__time {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a3540;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.cg-slot__label {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #999;
}

/* What's Included */
.cg-included {
    margin-bottom: 0;
}
.cg-included__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.cg-col-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2095AE;
    margin-bottom: 20px;
    display: block;
}
.cg-col-label--dim {
    color: rgba(255, 255, 255, 0.35);
}
.cg-item-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cg-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cg-item-row--last {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cg-item-icon {
    color: #2095AE;
    width: 14px;
    font-size: 13px;
    flex-shrink: 0;
}
.cg-item-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.cg-fuel-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.cg-fuel-icon {
    color: rgba(255, 255, 255, 0.3);
    width: 14px;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}
.cg-fuel-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}
.cg-fuel-text strong {
    color: rgba(255, 255, 255, 0.7);
}
.cg-premium-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cg-premium-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cg-premium-row--last {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Why Book With Us */
.cg-why {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}
.cg-why__col-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #2095AE;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.cg-why__title {
    font-family: 'Gilda Display', serif;
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
}
.cg-why__points {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.cg-why__icon {
    color: #2095AE;
    font-size: 16px;
    margin-bottom: 12px;
    display: block;
}
.cg-why__text {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cg-dark,
    .cg-cream {
        padding: 52px 16px;
    }
    .cg-dest__grid {
        grid-template-columns: 1fr;
    }
    .cg-options__grid {
        grid-template-columns: 1fr;
    }
    .cg-included__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cg-why {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cg-why__points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cg-divider__heading {
        font-size: 16px;
        white-space: normal;
        text-align: center;
    }
}


/* Accessibility (WCAG AA) contrast for small labels.
   Teal on cream -> deeper #0E7490; teal on dark -> lighter #5BB8CE; gray -> darker. */
.cg-cream .cg-label,
.cg-card__label { color: #0E7490; }
.cg-dark .cg-label,
.cg-col-label,
.cg-why__col-label { color: #5BB8CE; }
.cg-slot__label { color: #5a5a5a; }
