:root {
    --theme-body-bg: #f6f0e3;
    --theme-text: #223127;
    --theme-primary-1: #0f6d46;
    --theme-primary-2: #178a57;
    --theme-primary-3: #f4c542;
    --theme-accent: #f4c542;
    --theme-soft: #fffdf8;
    --theme-footer-1: #0d4d33;
    --theme-footer-2: #11613f;
    --theme-success: #18935f;
    --theme-muted: #66707c;
    --theme-border: #e6ddd0;
    --theme-shadow: 0 18px 40px rgba(20, 28, 38, 0.08);
    --theme-shadow-soft: 0 12px 30px rgba(20, 28, 38, 0.06);
    --theme-radius-xl: 28px;
    --theme-radius-lg: 20px;
    --theme-radius-md: 16px;
    --theme-benin-red: #d84b39;
    --theme-benin-gold: #f4c542;
    --theme-benin-sand: #f6f0e3;
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--theme-text);
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(216,75,57,.10), transparent 24%),
        radial-gradient(circle at left 22%, rgba(23,138,87,.08), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, var(--theme-body-bg) 100%);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.03em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .22s ease;
}

a:hover { color: var(--theme-primary-1); }
img { max-width: 100%; }
.container { position: relative; z-index: 1; }
.text-muted { color: var(--theme-muted) !important; }

.site-navbar {
    padding: 0;
    background: linear-gradient(90deg, var(--theme-primary-1) 0%, var(--theme-primary-2) 74%, var(--theme-benin-red) 100%);
    box-shadow: 0 8px 24px rgba(11, 18, 25, 0.14);
}
.nav-shell {
    min-height: 74px;
}
.navbar-brand {
    font-size: 2rem;
    line-height: 1;
}
.brand-mark { color: var(--theme-accent); }
.brand-text { color: #ffffff; }
.site-navbar .nav-link {
    color: rgba(255,255,255,.78) !important;
    font-size: 1rem;
    font-weight: 500;
    padding: .85rem .95rem !important;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: #fff !important;
}
.site-navbar .navbar-toggler {
    border: 0;
    box-shadow: none !important;
}
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.nav-cta,
.btn-warning,
.footer-cta {
    border: 0;
    color: #1b241d;
    background: linear-gradient(180deg, #f7cf58 0%, var(--theme-benin-gold) 100%);
    box-shadow: 0 10px 24px rgba(244, 197, 66, 0.22);
}
.nav-cta {
    padding: .8rem 1.15rem;
    border-radius: 10px;
    font-weight: 700;
}
.nav-cta:hover,
.btn-warning:hover,
.footer-cta:hover {
    color: #161c24;
    transform: translateY(-1px);
}

.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: .9rem 1.3rem;
}
.btn-dark {
    border: 0;
    background: linear-gradient(180deg, var(--theme-primary-2) 0%, var(--theme-primary-1) 100%);
    color: #fff;
}
.btn-dark:hover { color: #fff; }
.btn-outline-dark,
.btn-outline-primary {
    border-radius: 10px;
    box-shadow: none;
    font-weight: 500;
}
.btn-outline-dark {
    border: 1px solid #c8d0d8;
    color: #1e2731;
    background: transparent;
}
.btn-outline-dark:hover {
    background: #edf1f5;
    color: #1e2731;
    border-color: #b8c2cc;
}
.btn-outline-primary {
    border: 1px solid rgba(15,109,70,.34);
    color: var(--theme-primary-1);
    background: transparent;
}
.btn-outline-primary:hover {
    color: var(--theme-primary-1);
    border-color: rgba(15,109,70,.48);
    background: rgba(15,109,70,.08);
}

.hero-home {
    padding: 0 0 4rem;
}
.hero-home-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        var(--hero-bg-image),
        linear-gradient(180deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
    background-position: var(--hero-bg-position), center;
    background-size: var(--hero-bg-size), cover;
    background-repeat: no-repeat;
    padding: 5.25rem 1.5rem 4.5rem;
    text-align: center;
    color: var(--hero-text-color);
}
.hero-home-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(0deg, var(--hero-overlay), var(--hero-overlay)),
        linear-gradient(135deg, rgba(8, 34, 24, 0.72) 0%, rgba(15, 109, 70, 0.52) 48%, rgba(216, 75, 57, 0.34) 100%),
        radial-gradient(circle at top left, rgba(244, 197, 66, 0.24), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 26%);
}
.hero-home-panel > .container {
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .42rem .85rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.92);
}
.hero-home-eyebrow {
    background: var(--hero-eyebrow-bg);
    color: var(--hero-eyebrow-text);
}
.eyebrow.text-dark {
    color: #49525d !important;
    border-color: #d6dce2;
    background: #f8fafb;
}
.hero-home-title {
    max-width: 960px;
    margin: 1.5rem auto 1rem;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 1.04;
}
.hero-home-title span {
    display: block;
    color: var(--hero-highlight-color);
}
.hero-home-text {
    max-width: 980px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--hero-text-color);
}
.hero-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
.btn-hero-primary {
    background: var(--hero-primary-bg);
    border-color: var(--hero-primary-bg);
    color: var(--hero-primary-text);
}
.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background: var(--hero-primary-bg);
    border-color: var(--hero-primary-bg);
    color: var(--hero-primary-text);
    filter: brightness(.93);
}
.btn-hero-secondary {
    background: var(--hero-secondary-bg);
    border-color: var(--hero-secondary-border);
    color: var(--hero-secondary-text);
}
.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background: var(--hero-secondary-bg);
    border-color: var(--hero-secondary-border);
    color: var(--hero-secondary-text);
    filter: brightness(.93);
}

.service-grid {
    margin-top: 2.3rem;
}
.service-card {
    background: var(--theme-soft);
    border: 1px solid var(--theme-border);
    border-radius: var(--theme-radius-lg);
    padding: 1.8rem 1.6rem;
    box-shadow: var(--theme-shadow-soft);
    text-align: center;
}
.service-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--theme-primary-1);
    background: linear-gradient(135deg, rgba(244,197,66,.22), rgba(216,75,57,.14));
    border-radius: 18px;
}
.service-card h3 {
    margin-bottom: .75rem;
    font-size: 2rem;
}
.service-card p {
    margin: 0;
    color: var(--theme-muted);
    line-height: 1.8;
}

.section-shell { padding: 4.75rem 0; }
.section-soft { background: linear-gradient(180deg, #faf6ee 0%, #f6efe2 100%); }
.section-dark {
    background: linear-gradient(135deg, var(--theme-footer-2) 0%, var(--theme-footer-1) 72%, #7c2f26 100%);
    color: #fff;
}
.section-head {
    margin-bottom: 2.4rem;
}
.section-head-narrow {
    max-width: 820px;
    margin-inline: auto;
}
.section-head h2,
.page-banner h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin: .95rem 0 .7rem;
}
.section-head p,
.page-banner p {
    margin: 0;
    color: var(--theme-muted);
    line-height: 1.85;
    font-size: 1rem;
}
.section-dark .section-head p { color: rgba(255,255,255,.78); }

.page-banner {
    padding: 4.75rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, #fbf7ef 0%, #f5ecdc 100%);
}
.page-banner h1 { color: var(--theme-primary-1); }
.section-head h2,
.page-banner h1 {
    position: relative;
    display: inline-block;
}
.section-head h2::after,
.page-banner h1::after {
    content: '';
    display: block;
    width: 78px;
    height: 4px;
    margin: .9rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-primary-2) 0%, var(--theme-benin-gold) 54%, var(--theme-benin-red) 100%);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.8rem;
}
.destination-grid-home .destination-card {
    grid-column: span 4;
}
.destination-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--theme-soft);
    border: 1px solid var(--theme-border);
    border-radius: var(--theme-radius-lg);
    overflow: hidden;
    box-shadow: var(--theme-shadow-soft);
}
.destination-media {
    position: relative;
    min-height: 228px;
    background: linear-gradient(135deg, #111923 0%, #1e2834 100%);
}
.destination-photo {
    width: 100%;
    height: 228px;
    object-fit: cover;
    display: block;
}
.destination-placeholder,
.article-photo-placeholder {
    min-height: 228px;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: .7rem;
    color: #fff;
}
.article-photo-placeholder { min-height: 340px; border-radius: var(--theme-radius-lg); }
.destination-placeholder strong,
.article-photo-placeholder strong {
    font-size: 2rem;
    line-height: 1.05;
}
.placeholder-chip,
.map-preview-chip {
    width: fit-content;
    display: inline-flex;
    padding: .36rem .62rem;
    border-radius: 8px;
    font-size: .76rem;
    font-weight: 700;
    background: rgba(255,255,255,.12);
    color: #fff;
}
.destination-body {
    padding: 1.4rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}
.destination-tags { display: flex; gap: .55rem; flex-wrap: wrap; }
.badge.text-bg-success {
    background: var(--theme-success) !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
}
.badge.text-bg-light {
    background: #f2f5f7 !important;
    color: #4d5965 !important;
    border: 1px solid #e2e7ec;
}
.badge.text-bg-dark {
    background: #1f2832 !important;
    color: #fff !important;
}
.badge.text-bg-warning {
    background: #f4d365 !important;
    color: #1a2028 !important;
}
.destination-body h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
    color: #1c2430;
}
.destination-subtitle {
    margin: 0;
    color: #232c36;
    font-weight: 600;
}
.destination-text,
.destination-distance,
.group-pill span,
.map-preview-summary,
.travel-time-card span,
.footer-intro,
.footer-contact-stack p,
.article-content,
.card-text,
.form-label,
.info-panel p,
.security-card p,
.timeline-body .small,
.hero-note,
.article-note-box,
.table,
.alert,
.contact-meta {
    color: var(--theme-muted) !important;
}
.destination-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.group-card,
.map-card,
.map-preview,
.info-panel,
.security-card,
.card.bg-light,
.bg-white,
.card.shadow,
.card.shadow-sm,
.card.h-100,
.alert,
form.bg-white,
.timeline-body,
.breadcrumb,
.article-note-box,
.table-wrap {
    background: var(--theme-soft);
    border: 1px solid var(--theme-border) !important;
    border-radius: var(--theme-radius-lg) !important;
    box-shadow: var(--theme-shadow-soft);
}
.group-card,
.map-card,
.map-preview,
.info-panel,
.security-card {
    padding: 1.5rem;
    height: 100%;
}
.card.shadow,
.card.shadow-sm,
.card.h-100,
form.bg-white { overflow: hidden; }
.card-body { padding: 1.5rem; }
.group-card h3,
.map-preview h3,
.info-panel h2,
.security-card h2 { margin-bottom: .8rem; }
.group-list { display: grid; gap: .85rem; }
.group-pill {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    background: #f8fafb;
    border: 1px solid #e4e8ed;
}
.group-pill strong {
    display: block;
    margin-bottom: .15rem;
    color: #1d2530;
}
.group-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.map-card { background: var(--theme-soft); }
.map-surface {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #d9e0e6;
    background:
        radial-gradient(circle at 20% 78%, rgba(24,147,95,.12), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(244,197,66,.18), transparent 16%),
        radial-gradient(circle at 68% 32%, rgba(216,75,57,.12), transparent 14%),
        linear-gradient(180deg, #fcfaf5 0%, #f2eadf 100%);
}
.map-surface::before {
    content: attr(data-map-title);
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #26313d;
}
.map-surface::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 14px;
    border: 1px dashed #d2d9e0;
}
.map-line {
    position: absolute;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15,109,70,.18), rgba(244,197,66,.45), rgba(216,75,57,.28));
    z-index: 1;
}
.map-line-one { width: 72%; left: 12%; top: 54%; transform: rotate(-11deg); }
.map-line-two { width: 54%; left: 22%; top: 43%; transform: rotate(23deg); }
.map-point {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
    border: 0;
    color: #fff;
    border-radius: 999px;
    padding: .75rem .95rem;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(16, 22, 30, .16);
}
.map-point:hover,
.map-point:focus {
    transform: translate(-50%, -50%) scale(1.05);
}
.map-point span { white-space: nowrap; font-size: .82rem; }
.map-preview-photo,
.article-note-box {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: #f8fafb;
    border: 1px solid #e4e8ed;
    margin: 1rem 0;
}
.map-preview-subtitle { color: #1e2832; font-weight: 600; }
.map-preview-chip {
    background: rgba(244,197,66,.18);
    color: #70511f;
}

.travel-times {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.travel-times.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.travel-time-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 1rem 1.1rem;
}
.section-shell:not(.section-dark) .travel-time-card {
    background: #f8fafb;
    border-color: #e4e8ed;
}
.travel-time-card strong {
    display: block;
    margin-bottom: .2rem;
    color: inherit;
}

.circuit-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: -1.2rem;
}
.circuit-stop,
.route-loop span,
.article-facts span {
    display: inline-flex;
    align-items: center;
    padding: .7rem .95rem;
    border-radius: 999px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #dfe4ea;
    color: #1f2731;
    box-shadow: var(--theme-shadow-soft);
}
.timeline { display: grid; gap: 1rem; }
.timeline-item {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 1rem;
    align-items: start;
}
.timeline-day {
    position: sticky;
    top: 100px;
    padding: .95rem;
    text-align: center;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--theme-primary-2) 0%, var(--theme-primary-1) 100%);
    color: #fff;
    font-weight: 700;
}
.timeline-body { padding: 1.35rem; }
.timeline-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: .65rem;
}
.timeline-badge {
    display: inline-flex;
    padding: .36rem .68rem;
    border-radius: 999px;
    background: rgba(244,197,66,.18);
    color: #70511f;
    font-size: .76rem;
    font-weight: 700;
}
.timeline-link { font-weight: 700; color: var(--theme-primary-1); }

.table-itinerary th {
    background: #f6f8fa;
    color: #1e2731;
    border-bottom: 1px solid #e4e8ed;
}
.table-itinerary td,
.table-itinerary th {
    padding: 1rem 1.1rem;
}
.table-itinerary tbody tr + tr td {
    border-top: 1px solid #eef2f5;
}
.photo-guidelines {
    margin: 1rem 0 1.4rem;
    padding-left: 1.1rem;
}
.photo-guidelines li + li { margin-top: .7rem; }
.section-dark .security-card {
    background: rgba(255,255,255,.97);
}
.section-dark .security-card h2,
.section-dark .security-card .eyebrow {
    color: #1e2731;
}
.section-dark .security-card .eyebrow {
    border-color: #d6dce2;
    background: #f8fafb;
}

.article-cover {
    width: 100%;
    min-height: 360px;
    border-radius: var(--theme-radius-lg);
    object-fit: cover;
    box-shadow: var(--theme-shadow-soft);
}
.article-content {
    line-height: 1.9 !important;
    font-size: 1rem;
}
.breadcrumb {
    padding: .85rem 1rem;
    background: #fff;
}
.breadcrumb-item + .breadcrumb-item::before { color: #97a1ab; }
.breadcrumb-item.active { color: #1e2731; }

.contact-layout,
.reservation-shell {
    margin-top: -.5rem;
}
form.bg-white,
.card.shadow,
.card.shadow-sm {
    padding: 1.6rem !important;
}
.form-label {
    font-size: .92rem;
    font-weight: 600;
}
.form-control,
.form-select {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid #d8dee5;
    background: #fff;
    box-shadow: none !important;
}
textarea.form-control { min-height: 140px; }
.form-control:focus,
.form-select:focus {
    border-color: rgba(15,109,70,.45);
    box-shadow: 0 0 0 .2rem rgba(15, 109, 70, 0.10) !important;
}
.alert {
    padding: 1rem 1.1rem;
}
.alert-info {
    color: #334150;
    background: #f1f5f9;
    border-color: #dce4eb !important;
}
.alert-success {
    color: #1a6c4a;
    background: #eef8f3;
    border-color: #d5ecdf !important;
}
.alert-danger {
    color: #8a2f35;
    background: #fff2f3;
    border-color: #f3d8dc !important;
}

.site-footer {
    padding: 0 0 2.5rem;
    background: linear-gradient(180deg, rgba(246,240,227,0) 0%, rgba(246,240,227,.78) 22%, rgba(13,77,51,.10) 22%, rgba(13,77,51,.10) 100%);
}
.site-footer .container {
    position: relative;
}
.footer-panel {
    padding: 2.25rem;
    border-radius: var(--theme-radius-xl);
    background: linear-gradient(135deg, var(--theme-footer-2) 0%, var(--theme-footer-1) 76%, #7c2f26 100%);
    box-shadow: 0 18px 42px rgba(15, 22, 30, 0.2);
}
.footer-brand {
    font-size: 2rem;
}
.footer-title {
    font-size: 1.35rem;
    color: rgba(255,255,255,.96);
    margin-bottom: 1rem;
}
.footer-intro,
.footer-copy,
.footer-links a,
.footer-contact-stack p {
    color: rgba(255,255,255,.76) !important;
}
.footer-links {
    display: grid;
    gap: .6rem;
}
.footer-links a:hover { color: #fff !important; }
.footer-contact-stack {
    display: grid;
    gap: .7rem;
    margin-bottom: 1rem;
}
.footer-contact-stack p {
    margin: 0;
    display: flex;
    gap: .7rem;
    align-items: start;
}
.footer-contact-stack i { color: var(--theme-accent); margin-top: .25rem; }

.tone-urban .destination-placeholder,
.tone-urban.article-photo-placeholder,
.tone-urban.map-point,
.tone-urban.circuit-stop { background: linear-gradient(135deg, #202a35 0%, #384b60 100%); }
.tone-culture .destination-placeholder,
.tone-culture.article-photo-placeholder,
.tone-culture.map-point,
.tone-culture.circuit-stop { background: linear-gradient(135deg, #552f1f 0%, #8a5532 100%); }
.tone-heritage .destination-placeholder,
.tone-heritage.article-photo-placeholder,
.tone-heritage.map-point,
.tone-heritage.circuit-stop { background: linear-gradient(135deg, #6b3a1e 0%, #b67843 100%); }
.tone-lagoon .destination-placeholder,
.tone-lagoon.article-photo-placeholder,
.tone-lagoon.map-point,
.tone-lagoon.circuit-stop { background: linear-gradient(135deg, #0f5a56 0%, #209a8c 100%); }
.tone-memory .destination-placeholder,
.tone-memory.article-photo-placeholder,
.tone-memory.map-point,
.tone-memory.circuit-stop { background: linear-gradient(135deg, #4e2a36 0%, #8d5363 100%); }
.tone-coast .destination-placeholder,
.tone-coast.article-photo-placeholder,
.tone-coast.map-point,
.tone-coast.circuit-stop { background: linear-gradient(135deg, #40542d 0%, #7e9f53 100%); }

@media (max-width: 1199.98px) {
    .destination-grid-home .destination-card { grid-column: span 6; }
    .travel-times { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    .nav-shell { min-height: auto; padding: .8rem 0; }
    .site-navbar .navbar-collapse { padding: 1rem 0 .6rem; }
    .hero-home-panel { padding: 4.25rem 1.2rem 3.7rem; }
    .timeline-item { grid-template-columns: 1fr; }
    .timeline-day { position: static; width: fit-content; }
    .destination-grid-home .destination-card,
    .destination-grid .destination-card { grid-column: span 12; }
}

@media (max-width: 767.98px) {
    .navbar-brand { font-size: 1.7rem; }
    .hero-home-title { font-size: 3rem; }
    .hero-home-text { font-size: 1rem; }
    .hero-home-actions { justify-content: center; }
    .section-shell { padding: 4rem 0; }
    .page-banner { padding: 4rem 0 2.4rem; }
    .map-surface { min-height: 360px; }
    .map-point span { font-size: .74rem; }
    .travel-times,
    .travel-times.compact { grid-template-columns: 1fr; }
    .footer-panel { padding: 1.5rem; }
}


.language-switch { list-style: none; }
.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    padding: .62rem .95rem;
    font-weight: 600;
}
.language-toggle:hover,
.language-toggle:focus,
.language-toggle.show {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.34);
}
.lang-current {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: .78rem;
    font-weight: 700;
}
.lang-label {
    font-size: .92rem;
}
.language-menu {
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    padding: .5rem;
    min-width: 220px;
    box-shadow: 0 18px 36px rgba(16, 22, 30, .12);
}
.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-radius: 12px;
    padding: .72rem .8rem;
}
.language-menu .dropdown-item.active,
.language-menu .dropdown-item:active {
    background: #f4f7fb;
    color: #18202a;
}
.language-code {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #eef2f6;
    color: #1f2731;
    font-size: .78rem;
    font-weight: 700;
}
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1080;
}
.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(24,32,42,.96);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.cookie-banner__content p {
    color: rgba(255,255,255,.78) !important;
    margin-top: .35rem;
}
.cookie-banner__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.cookie-banner__actions .btn-cookie-reject {
    border-color: rgba(255,255,255,.38);
    color: #fff;
    background: transparent;
}
.cookie-banner__actions .btn-cookie-reject:hover,
.cookie-banner__actions .btn-cookie-reject:focus,
.cookie-banner__actions .btn-cookie-reject:active,
.cookie-banner__actions .btn-cookie-reject.active,
.cookie-banner__actions .btn-cookie-reject:focus-visible {
    background: #8f4b2e;
    border-color: #8f4b2e;
    color: #fff;
    box-shadow: none;
}
@media (max-width: 991.98px) {
    .nav-shell {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }
    .language-switch {
        margin-top: .75rem;
    }
    .language-toggle {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 767.98px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__actions {
        width: 100%;
    }
    .cookie-banner__actions .btn {
        flex: 1 1 auto;
    }
    .lang-label {
        display: none;
    }
}


.practical-card {
    position: relative;
    overflow: hidden;
}
.practical-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary-1) 0%, var(--theme-benin-gold) 55%, var(--theme-benin-red) 100%);
}
.practical-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15,109,70,.12), rgba(244,197,66,.24), rgba(216,75,57,.14));
    color: var(--theme-primary-1);
    font-size: 1.3rem;
}
.practical-meta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .8rem;
    border-radius: 999px;
    background: #f8fafb;
    border: 1px solid #e4e8ed;
    color: #33404c;
    font-weight: 600;
}
.practical-list {
    display: grid;
    gap: .9rem;
}
.practical-list-item {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    background: #f8fafb;
    border: 1px solid #e4e8ed;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.practical-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}
.practical-list-item strong {
    display: block;
    margin-bottom: .2rem;
    color: #1d2530;
}
.practical-list-item span {
    color: var(--theme-muted);
    line-height: 1.75;
}
.practical-note {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.practical-note p:last-child {
    margin-bottom: 0;
}
.airline-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.airline-wrap span {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.18);
    color: #fff;
}
.useful-links-stack {
    display: grid;
    gap: 1rem;
}
.useful-links-stack .btn {
    width: fit-content;
}
@media (max-width: 991.98px) {
    .airline-wrap span {
        width: 100%;
        justify-content: center;
    }
}

.address-card .practical-meta {
    margin-top: auto;
}

.practical-small-note {
    display: block;
    margin-top: .55rem;
    color: #66717d;
    font-size: .88rem;
    line-height: 1.55;
}

.practical-small-note-strong {
    color: #1f2731;
    font-weight: 700;
}

.practical-note-light {
    background: rgba(15,109,70,.06);
    border: 1px solid rgba(15,109,70,.12);
}

.airline-wrap-readable span,
.section-dark .airline-wrap-readable span,
.section-dark .airline-wrap span {
    background: rgba(255,255,255,.96);
    border-color: #dfe4ea;
    color: #1f2731;
}


main, section, footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.hero-home-panel,
.site-navbar,
.footer-panel,
.destination-card,
.group-card,
.map-card,
.map-preview,
.travel-time-card,
.article-card,
.contact-panel,
.form-panel,
.service-card {
    will-change: transform;
}

.destination-photo,
.article-cover,
img {
    height: auto;
}

.app-shell {
    min-height: 100vh;
}

.install-app-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1080;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 0;
    border-radius: 999px;
    padding: .95rem 1.15rem;
    color: #1b241d;
    background: linear-gradient(180deg, #f7cf58 0%, var(--theme-benin-gold) 100%);
    box-shadow: 0 18px 38px rgba(20, 28, 38, 0.2);
}

.install-app-sheet {
    position: fixed;
    right: 18px;
    bottom: 82px;
    width: min(420px, calc(100vw - 28px));
    z-index: 1080;
}

.install-app-sheet__content {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(15,109,70,.12);
    border-radius: 22px;
    box-shadow: 0 22px 46px rgba(16, 24, 40, 0.18);
    padding: 1rem 1rem .95rem;
}

.install-app-sheet__content strong {
    display: block;
    margin-bottom: .25rem;
    font-size: 1rem;
}

.install-app-sheet__content p {
    color: var(--theme-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.install-app-sheet__actions {
    margin-top: .85rem;
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
}

.install-app-helper {
    margin: .75rem 0 0;
    font-size: .82rem;
    color: var(--theme-muted);
}

.back-to-top {
    position: absolute;
    top: -2.2rem;
    right: 1rem;
    width: 58px;
    height: 58px;
    z-index: 25;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(19, 103, 70, 0.16);
    border-radius: 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at 30% 25%, rgba(244, 197, 66, 0.24), transparent 36%),
        linear-gradient(180deg, var(--theme-primary-2) 0%, var(--theme-primary-1) 72%, var(--theme-footer-1) 100%);
    box-shadow:
        0 18px 34px rgba(13, 77, 51, 0.16),
        0 6px 16px rgba(20, 28, 38, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, background .22s ease;
}

.back-to-top::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    pointer-events: none;
}

.back-to-top i {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.back-to-top:hover,
.back-to-top:focus {
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 22px 44px rgba(13, 77, 51, 0.28),
        0 10px 24px rgba(20, 28, 38, 0.16);
}

@media (min-width: 992px) {
    .install-app-fab,
    .install-app-sheet {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .site-navbar {
        margin: 0;
        border-radius: 0 0 22px 22px;
    }

    .nav-shell {
        min-height: 68px;
        padding-inline: .3rem;
    }

    .hero-home {
        padding: 0 0 2rem;
    }

    .hero-home-panel {
        border-radius: 0 0 28px 28px;
        padding: 4rem 1.1rem 3.2rem;
    }

    .hero-home-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.06;
    }

    .hero-home-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-shell {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .destination-card,
    .group-card,
    .map-card,
    .map-preview,
    .travel-time-card,
    .article-card,
    .contact-panel,
    .form-panel,
    .service-card,
    .footer-panel {
        border-radius: 22px;
    }

    .install-app-sheet {
        right: 14px;
        left: 14px;
        width: auto;
        bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .install-app-fab {
        right: 14px;
        left: 14px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        justify-content: center;
        font-weight: 700;
    }

    .back-to-top {
        top: 84px;
        right: 14px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}


/* --- Display and layout fixes --- */
html,
body {
    overflow-x: clip;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

.page-banner .container,
.section-head,
.section-head-narrow {
    overflow-wrap: anywhere;
}

.page-banner h1,
.section-head h2 {
    line-height: 1.08;
    text-wrap: balance;
}

.page-banner p,
.section-head p {
    max-width: 980px;
    margin-inline: auto;
}

.page-banner + .section-shell.pt-0 {
    padding-top: .9rem !important;
}

.circuit-strip {
    justify-content: center;
    align-items: center;
    margin-top: 0;
    row-gap: .9rem;
}

.circuit-stop {
    white-space: nowrap;
}

.back-to-top {
    top: -2.2rem;
    bottom: auto;
    right: 1rem;
}

@media (min-width: 992px) {
    .site-footer .container {
        overflow: visible;
    }

    .back-to-top {
        top: -2.2rem;
        right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .page-banner h1,
    .section-head h2 {
        line-height: 1.12;
    }

    .page-banner p,
    .section-head p {
        max-width: 100%;
    }

    .circuit-strip {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0 .4rem;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .circuit-strip::-webkit-scrollbar {
        height: 6px;
    }

    .site-footer {
        padding-bottom: calc(8rem + env(safe-area-inset-bottom));
    }

    .site-footer .container {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
    }

    .back-to-top {
        position: absolute;
        top: auto;
        right: 18px;
        bottom: calc(.75rem + env(safe-area-inset-bottom));
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding-top: 3.35rem;
        padding-bottom: 2rem;
    }

    .page-banner h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .page-banner p {
        line-height: 1.72;
    }
}

@media (max-width: 991.98px) {
    body {
        background:
            linear-gradient(90deg, var(--theme-primary-1) 0%, var(--theme-primary-2) 74%, var(--theme-benin-red) 100%) top / 100% 128px no-repeat,
            radial-gradient(circle at top right, rgba(216,75,57,.10), transparent 24%),
            radial-gradient(circle at left 22%, rgba(23,138,87,.08), transparent 28%),
            linear-gradient(180deg, #fbf7ef 0%, var(--theme-body-bg) 100%);
    }

    .site-navbar {
        margin-bottom: -1px;
    }

    .hero-home {
        margin-top: -1px;
    }

    .site-navbar + main .hero-home:first-child,
    .site-navbar + .hero-home {
        margin-top: -1px;
    }
}


/* --- Final desktop back-to-top placement fix --- */
.site-footer {
    position: relative;
}

.site-footer .container {
    position: static;
}

@media (min-width: 992px) {
    .back-to-top {
        position: absolute;
        top: 1rem;
        right: 1rem;
        bottom: auto;
        left: auto;
        width: 56px;
        height: 56px;
        border-radius: 18px;
        z-index: 40;
    }
}

/* --- Mobile simplified presentation matching requested lighter layout --- */
@media (max-width: 991.98px) {
    body {
        background: #f6f4ef !important;
        color: #202926;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .site-navbar {
        margin: 0 !important;
        background: #f6f4ef !important;
        border-bottom: 1px solid #e7dfd1;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .site-navbar .container,
    .hero-home .container,
    .section-shell .container,
    .site-footer .container,
    .page-banner .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-shell {
        min-height: auto;
        padding: .9rem 0;
    }

    .site-navbar .navbar-brand {
        font-size: 1.65rem;
        line-height: 1.1;
    }

    .site-navbar .brand-mark {
        color: var(--theme-benin-gold);
    }

    .site-navbar .brand-text {
        color: #213027;
    }

    .site-navbar .navbar-toggler {
        width: 52px;
        height: 52px;
        padding: 0;
        border: 1px solid #ddd3c5;
        border-radius: 14px;
        background: #ffffff;
        display: inline-grid;
        place-items: center;
        box-shadow: none !important;
    }

    .site-navbar .navbar-toggler-icon {
        width: 28px;
        height: 28px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(84,84,84,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .site-navbar .navbar-collapse {
        margin-top: .65rem;
        padding: .8rem 0 .25rem;
        border-top: 1px solid #e9e2d6;
        background: transparent;
    }

    .site-navbar .nav-link {
        color: #273229 !important;
        padding: .8rem 0 !important;
        font-size: 1rem;
    }

    .site-navbar .nav-link:hover,
    .site-navbar .nav-link:focus {
        color: var(--theme-primary-1) !important;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        border-radius: 14px;
        margin-top: .4rem;
    }

    .language-toggle {
        width: 100%;
        justify-content: space-between;
        color: #233126;
        background: #ffffff;
        border-color: #ddd3c5;
    }

    .lang-current {
        background: var(--theme-primary-1);
        color: #ffffff;
    }

    .hero-home,
    .site-navbar + main .hero-home:first-child,
    .site-navbar + .hero-home {
        margin-top: 0 !important;
        padding: 1rem 0 1.2rem !important;
    }

    .hero-home-panel {
        background: transparent !important;
        color: #1f2b22 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 1rem 0 .5rem !important;
        overflow: visible !important;
    }

    .hero-home-panel::before {
        display: none !important;
    }

    .eyebrow,
    .hero-home-eyebrow {
        justify-content: flex-start;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent !important;
        color: #4f5a53 !important;
        letter-spacing: 0;
        text-transform: none;
        font-size: 1rem;
        font-weight: 500;
    }

    .hero-home-title {
        max-width: 100%;
        margin: .45rem 0 .75rem;
        text-align: left;
        color: #1c2620 !important;
        font-size: clamp(2.2rem, 10vw, 3.35rem) !important;
        line-height: 1.08 !important;
    }

    .hero-home-title span {
        color: var(--theme-benin-gold);
    }

    .hero-home-text {
        max-width: 100%;
        margin: 0;
        text-align: left;
        color: #49544c !important;
        font-size: 1.05rem !important;
        line-height: 1.62;
    }

    .hero-home-actions {
        justify-content: flex-start !important;
        gap: .8rem;
        margin-top: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        border-radius: 14px;
        min-height: 54px;
        padding: .92rem 1.2rem;
        box-shadow: none !important;
    }

    .btn-hero-secondary {
        background: #ffffff !important;
        border: 1px solid #d9cfbf !important;
        color: #243126 !important;
    }

    .section-shell {
        padding: 1.1rem 0 1.4rem !important;
    }

    .section-head,
    .section-head.text-center,
    .section-head-narrow {
        text-align: left !important;
    }

    .section-head h2,
    .page-banner h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.1 !important;
    }

    .section-head p,
    .page-banner p {
        max-width: 100%;
        margin-inline: 0;
    }

    .service-grid,
    .destination-grid,
    .travel-times {
        gap: 1rem;
    }

    .service-card,
    .destination-card,
    .group-card,
    .map-card,
    .map-preview,
    .travel-time-card,
    .article-card,
    .contact-panel,
    .form-panel {
        background: #ffffff !important;
        border: 1px solid #ece3d6;
        border-radius: 24px !important;
        box-shadow: 0 12px 26px rgba(31, 43, 34, 0.06) !important;
    }

    .section-dark {
        background: transparent !important;
        color: inherit !important;
    }

    .section-dark .section-head h2,
    .section-dark .section-head p {
        color: inherit !important;
    }

    .travel-time-card {
        color: #1f2b22 !important;
    }

    .site-footer {
        margin-top: 2rem !important;
        padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
    }

    .footer-panel {
        border-radius: 24px !important;
        padding: 1.5rem !important;
        box-shadow: 0 12px 26px rgba(31, 43, 34, 0.10);
    }

    .site-footer .brand-text {
        color: #ffffff;
    }

    .back-to-top {
        position: fixed !important;
        top: auto !important;
        right: 16px !important;
        bottom: calc(16px + env(safe-area-inset-bottom)) !important;
        left: auto !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 16px !important;
        z-index: 1090 !important;
    }
}

@media (max-width: 575.98px) {
    .hero-home-actions .btn,
    .btn-hero-primary,
    .btn-hero-secondary,
    .footer-cta,
    .nav-cta {
        width: 100%;
    }
}
