/* Split Sunset Tours — Phase 1 */

:root {
    --sst-ink: #1a1210;
    --sst-navy: #1c2433;
    --sst-dusk: #2a3344;
    --sst-coral: #e07a45;
    --sst-coral-deep: #c45d2c;
    --sst-amber: #f0a35e;
    --sst-gold: #d4a574;
    --sst-sand: #f6efe6;
    --sst-sand-deep: #ebe0d2;
    --sst-cream: #fffaf4;
    --sst-text: #2a221e;
    --sst-muted: #6b5e56;
    --sst-white: #ffffff;
    --sst-border: rgba(42, 34, 30, 0.12);
    --sst-radius: 0.35rem;
    --sst-shadow: 0 12px 40px rgba(26, 18, 16, 0.12);
    --sst-font: "Outfit", system-ui, sans-serif;
    --sst-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--sst-font);
    color: var(--sst-text);
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(240, 163, 94, 0.18), transparent 55%),
        radial-gradient(900px 500px at 100% 20%, rgba(224, 122, 69, 0.12), transparent 50%),
        var(--sst-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--sst-coral-deep);
}

a:hover {
    color: var(--sst-coral);
}

:focus-visible {
    outline: 3px solid var(--sst-amber);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2000;
    background: var(--sst-ink);
    color: var(--sst-white);
    padding: 0.6rem 1rem;
    border-radius: var(--sst-radius);
}

.skip-link:not(:focus) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(28, 36, 51, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
    padding-top: env(safe-area-inset-top, 0);
}

.site-header .navbar {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.brand-lockup__icon {
    height: 40px;
    width: auto;
    display: block;
}

.brand-lockup__text {
    font-family: var(--sst-font);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--sst-cream);
    line-height: 1;
}

.brand-lockup__accent {
    color: var(--sst-coral);
}

.brand-lockup:hover .brand-lockup__text,
.brand-lockup:focus-visible .brand-lockup__text {
    color: var(--sst-cream);
}

.brand-lockup:hover .brand-lockup__accent,
.brand-lockup:focus-visible .brand-lockup__accent {
    color: var(--sst-coral);
}

.brand-lockup--footer {
    margin-bottom: 0.85rem;
}

.footer-brand .footer-tagline {
    margin: 0 0 0.85rem;
    max-width: 22rem;
    line-height: 1.6;
    color: rgba(255, 250, 244, 0.72);
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    margin: 0;
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 250, 244, 0.88);
    text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--sst-amber);
}

.footer-contact__sep {
    color: rgba(255, 250, 244, 0.35);
}

.site-header .brand-lockup__text {
    white-space: nowrap;
    font-size: clamp(0.82rem, 2.4vw, 1.05rem);
}

@media (max-width: 380px) {
    .site-header .brand-lockup__text {
        font-size: 0.78rem;
    }

    .site-header .brand-lockup__icon {
        height: 34px;
    }
}

.site-header .nav-link {
    color: rgba(255, 250, 244, 0.86) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible {
    color: var(--sst-amber) !important;
}

.btn-nav-cta {
    background: var(--sst-coral);
    color: var(--sst-white) !important;
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 1.1rem !important;
    font-weight: 600;
    text-decoration: none;
}

.btn-nav-cta:hover {
    background: var(--sst-coral-deep);
    color: var(--sst-white) !important;
}

.navbar-toolbar {
    gap: 0.35rem;
    flex-shrink: 0;
}

.lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sst-ink);
    background: var(--sst-cream);
    border: 1px solid rgba(255, 250, 244, 0.35);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    line-height: 1.2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.lang-switcher__toggle:hover,
.lang-switcher__toggle:focus,
.lang-switcher__toggle.show {
    color: var(--sst-ink);
    background: #fff;
    border-color: rgba(255, 250, 244, 0.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.lang-switcher__toggle::after {
    margin-left: 0.15rem;
    vertical-align: middle;
}

.lang-switcher__flag {
    width: 1.25rem;
    height: 0.9rem;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-switcher__abbr {
    letter-spacing: 0.04em;
}

.lang-switcher__menu {
    min-width: 7.5rem;
    padding: 0.35rem 0;
    background: #fff;
    border: 1px solid #e0e3e7;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    color: var(--sst-ink);
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
}

.lang-switcher__option:hover,
.lang-switcher__option:focus {
    background: #f8f9fb;
    color: var(--sst-ink);
}

.lang-switcher__option.active {
    background: rgba(224, 122, 69, 0.1);
    color: var(--sst-coral-deep);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .lang-switcher--mobile {
        margin: 0;
    }

    .lang-switcher--mobile .lang-switcher__toggle {
        padding: 0.3rem 0.65rem;
        font-size: 0.8rem;
    }

    .lang-switcher--mobile .lang-switcher__menu {
        min-width: 7.5rem;
    }
}

@media (min-width: 992px) {
    .lang-switcher--desktop {
        margin-right: 0.35rem;
    }
}

/* Hero */

.hero {
    position: relative;
    min-height: min(92vh, 860px);
    display: flex;
    align-items: flex-end;
    color: var(--sst-cream);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-rise 1.2s ease-out both;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 18, 16, 0.25) 0%, rgba(26, 18, 16, 0.55) 45%, rgba(26, 18, 16, 0.88) 100%),
        linear-gradient(90deg, rgba(28, 36, 51, 0.45), transparent 55%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(3rem, 8vw, 5.5rem);
    padding-top: 7rem;
    text-align: left;
    animation: content-fade 1s ease 0.15s both;
}

.hero__content > * {
    max-width: 46rem;
}

.hero__brand {
    font-family: var(--sst-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--sst-amber);
    margin: 0 0 0.75rem;
}

.hero h1 {
    font-family: var(--sst-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    line-height: 1.12;
    margin: 0 0 1rem;
    color: var(--sst-cream);
}

.hero__lead {
    font-size: clamp(1.02rem, 1.6vw, 1.15rem);
    max-width: 38rem;
    color: rgba(255, 250, 244, 0.9);
    margin-bottom: 1.75rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-warm,
.btn-outline-warm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-hero-primary,
.btn-warm {
    background: var(--sst-coral);
    color: var(--sst-white);
}

.btn-hero-primary:hover,
.btn-warm:hover {
    background: var(--sst-coral-deep);
    color: var(--sst-white);
    transform: translateY(-1px);
}

.btn-hero-secondary {
    background: transparent;
    border-color: rgba(255, 250, 244, 0.55);
    color: var(--sst-cream);
}

.btn-hero-secondary:hover {
    border-color: var(--sst-cream);
    color: var(--sst-cream);
}

.btn-outline-warm {
    background: transparent;
    border-color: var(--sst-coral);
    color: var(--sst-coral-deep);
}

.btn-outline-warm:hover {
    background: var(--sst-coral);
    color: var(--sst-white);
}

/* Sections */

.section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--warm {
    background:
        linear-gradient(180deg, rgba(246, 239, 230, 0.95), rgba(235, 224, 210, 0.9));
}

.section--booking {
    background:
        radial-gradient(700px 400px at 80% 0%, rgba(224, 122, 69, 0.18), transparent 60%),
        var(--sst-navy);
    color: var(--sst-cream);
}

.section--booking .section-eyebrow {
    color: var(--sst-amber);
}

.section--booking .section-lead,
.section--booking h2 {
    color: var(--sst-cream);
}

.section--private-cta {
    background:
        radial-gradient(900px 480px at 15% 0%, rgba(224, 122, 69, 0.22), transparent 55%),
        radial-gradient(700px 420px at 95% 80%, rgba(240, 163, 94, 0.12), transparent 50%),
        linear-gradient(165deg, #1a1210 0%, #1c2433 48%, #2a1f1c 100%);
    color: rgba(255, 250, 244, 0.88);
}

.section--private-cta .section-eyebrow {
    color: var(--sst-amber);
}

.section--private-cta h2 {
    color: var(--sst-cream);
}

.section--private-cta .section-lead {
    color: rgba(255, 250, 244, 0.78);
    margin-left: 0;
    margin-right: 0;
}

.section--private-cta .muted {
    color: rgba(255, 250, 244, 0.55);
}

.private-cta__header {
    margin-bottom: 0.35rem;
}

.private-cta__header h2 {
    margin-bottom: 0;
}

.private-cta__body {
    margin-top: 1.75rem;
}

.private-cta__copy .section-lead {
    margin-bottom: 1rem;
}

.private-cta__copy .muted {
    margin-bottom: 0;
}

.private-cta__tagline {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sst-amber);
}

.private-cta__blurb {
    margin: 0 0 1.15rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 250, 244, 0.88);
}

.private-cta__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
}

.private-cta__facts li {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--sst-cream);
    background: rgba(255, 250, 244, 0.08);
    border: 1px solid rgba(240, 163, 94, 0.35);
}

.private-cta__subheading {
    font-family: var(--sst-display);
    font-size: 1.15rem;
    margin: 0 0 0.65rem;
    color: var(--sst-cream);
}

.section--private-cta .check-list--on-dark {
    margin-bottom: 1.15rem;
}

.section--private-cta .check-list--on-dark li {
    color: rgba(255, 250, 244, 0.82);
}

.section--private-cta .check-list--on-dark li::before {
    background: var(--sst-amber);
}

.private-cta__note {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 250, 244, 0.55);
}

.private-cta__fig {
    margin: 0;
    overflow: hidden;
    border-radius: var(--sst-radius);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.private-cta__media-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 992px) {
    .private-cta__media-inner {
        position: sticky;
        top: 5.25rem;
    }
}

.private-cta__fig picture {
    display: block;
    width: 100%;
}

.private-cta__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.private-cta__caption {
    display: block;
    padding: 0.55rem 0.75rem 0.65rem;
    font-size: 0.82rem;
    color: rgba(255, 250, 244, 0.62);
    line-height: 1.4;
}

.private-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.section--private-cta .btn-warm {
    background: var(--sst-coral);
    color: var(--sst-white);
}

.section--private-cta .btn-warm:hover {
    background: var(--sst-amber);
    color: var(--sst-ink);
}

.section--private-cta .btn-outline-warm {
    border-color: rgba(255, 250, 244, 0.45);
    color: var(--sst-cream);
}

.section--private-cta .btn-outline-warm:hover {
    border-color: var(--sst-amber);
    background: rgba(240, 163, 94, 0.12);
    color: var(--sst-amber);
}

.narrow {
    max-width: 720px;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sst-coral-deep);
    margin: 0 0 0.65rem;
}

h2 {
    font-family: var(--sst-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.55rem);
    line-height: 1.2;
    margin: 0 0 0.85rem;
    color: var(--sst-ink);
}

.heading-highlight {
    color: var(--sst-coral);
}

.section-lead {
    font-size: 1.08rem;
    color: var(--sst-muted);
    max-width: 42rem;
    margin-bottom: 2rem;
}

/* Overview */

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.overview-card {
    padding: 1.25rem 1.15rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--sst-border);
    border-radius: var(--sst-radius);
}

.overview-card__label {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sst-coral-deep);
    font-weight: 600;
}

.overview-card__title {
    font-family: var(--sst-display);
    font-size: 1.35rem;
    margin: 0.35rem 0 0.5rem;
}

.overview-card__text {
    margin: 0;
    color: var(--sst-muted);
    font-size: 0.95rem;
}

.policy-callout {
    padding: 1.25rem 1.4rem;
    border-left: 3px solid var(--sst-coral);
    background: rgba(255, 255, 255, 0.65);
}

.policy-callout h3 {
    font-family: var(--sst-display);
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
}

.policy-callout p {
    margin: 0;
    color: var(--sst-muted);
}

/* Tours */

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tour-card {
    background: var(--sst-white);
    border-radius: var(--sst-radius);
    overflow: hidden;
    box-shadow: var(--sst-shadow);
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--sst-coral);
    transition: transform 0.25s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
}

.tour-card--wooden {
    border-top-color: #b08968;
}

.tour-card--powerboat {
    border-top-color: var(--sst-coral);
}

.tour-card--private {
    border-top-color: #4a6fa5;
}

.tour-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.tour-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card__tagline {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sst-coral-deep);
}

.tour-card__title {
    font-family: var(--sst-display);
    font-size: 1.35rem;
    margin: 0.4rem 0 0.35rem;
}

.tour-card__capacity,
.tour-card__blurb {
    color: var(--sst-muted);
    font-size: 0.95rem;
}

.tour-card__price {
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 1.05rem;
}

.tour-card__from,
.tour-card__basis {
    color: var(--sst-muted);
    font-size: 0.9rem;
}

.tour-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

/* Tour feature section — layout handled by Bootstrap row/col */

.tour-feature__tagline {
    margin: 0 0 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sst-coral-deep);
}

.tour-feature__blurb {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--sst-text);
}

.tour-feature__included-heading {
    font-family: var(--sst-display);
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    color: var(--sst-ink);
}

/* Tour pricing cards */

.tour-price-cards {
    margin: 1.75rem 0 0;
}

.tour-price-cards__heading {
    font-family: var(--sst-display);
    font-size: 1.2rem;
    margin: 0 0 0.85rem;
    color: var(--sst-ink);
}

.tour-price-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.tour-price-card {
    margin: 0;
    padding: 1.15rem 1.1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--sst-border);
    border-radius: var(--sst-radius);
    border-top: 3px solid var(--sst-coral);
}

.tour-price-card__label {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sst-coral-deep);
    font-weight: 600;
    line-height: 1.35;
}

.tour-price-card__amount {
    margin: 0.55rem 0 0;
    font-variant-numeric: tabular-nums;
}

.tour-price-card__amount strong {
    font-family: var(--sst-display);
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--sst-ink);
    line-height: 1.1;
}

.tour-price-card__unit {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.88rem;
    color: var(--sst-muted);
}

.tour-price-card--deposit {
    border-top-color: #b08968;
}

.tour-price-card--deposit .tour-price-card__label {
    color: #8a6a4e;
}

.tour-price-card--deposit .tour-price-card__amount strong {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

/* Meeting point callout */

.tour-meeting {
    margin: 1.5rem 0 0;
    padding: 1.25rem 1.4rem;
    border-left: 3px solid var(--sst-coral);
    background: rgba(255, 255, 255, 0.65);
    width: 100%;
}

.tour-meeting h3 {
    font-family: var(--sst-display);
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
    color: var(--sst-ink);
}

.tour-meeting p {
    margin: 0;
    color: var(--sst-muted);
    line-height: 1.55;
}

/* Tour images (right column) */

.tour-feature__media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-feature__fig {
    margin: 0;
    overflow: hidden;
    border-radius: var(--sst-radius);
    box-shadow: 0 8px 28px rgba(26, 18, 16, 0.14);
    background: rgba(255, 255, 255, 0.45);
}

.tour-feature__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.tour-feature__fig picture {
    display: block;
    width: 100%;
}

.tour-feature__caption {
    display: block;
    padding: 0.45rem 0.6rem 0.5rem;
    font-size: 0.82rem;
    color: var(--sst-muted);
    line-height: 1.4;
}

@media (min-width: 992px) {
    .tour-feature__media {
        height: 100%;
    }

    .tour-feature__fig {
        flex: 1 1 0;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .tour-feature__img {
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
    }

    .tour-feature__fig picture {
        flex: 1 1 auto;
        min-height: 0;
        height: 100%;
    }

    .tour-feature__fig picture img {
        height: 100%;
    }

    .tour-feature__caption {
        flex: 0 0 auto;
    }
}

/* Details */

.detail-block {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--sst-border);
}

.detail-block:last-child {
    border-bottom: 0;
}

.detail-block h3 {
    font-family: var(--sst-display);
    font-size: 1.55rem;
    margin-bottom: 0.85rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.45rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--sst-coral);
}

.detail-note {
    color: var(--sst-muted);
    max-width: 48rem;
}

.tiers-heading {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.75rem;
}

.tier-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.tier-pill {
    background: var(--sst-sand);
    border: 1px solid var(--sst-border);
    border-radius: var(--sst-radius);
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.2rem;
    min-width: 12rem;
}

/* Itinerary */

.itinerary-list {
    list-style: none;
    counter-reset: steps;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 1.15rem;
}

.itinerary-list li {
    counter-increment: steps;
    position: relative;
    padding: 1.1rem 1.1rem 1.1rem 4rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--sst-radius);
}

.itinerary-list li::before {
    content: counter(steps);
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--sst-navy);
    color: var(--sst-cream);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.itinerary-list h3 {
    font-family: var(--sst-display);
    font-size: 1.2rem;
    margin: 0 0 0.35rem;
}

.itinerary-list p {
    margin: 0;
    color: var(--sst-muted);
}

.meeting-note {
    color: var(--sst-muted);
    font-size: 0.95rem;
    max-width: 40rem;
}

/* Schedule / pricing */

.table-wrap {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--sst-white);
}

.schedule-table th,
.schedule-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--sst-border);
    text-align: left;
}

.schedule-table th {
    background: var(--sst-navy);
    color: var(--sst-cream);
    font-weight: 600;
}

.schedule-table--booking {
    background: transparent;
    color: rgba(255, 250, 244, 0.9);
    font-size: 0.92rem;
}

.schedule-table--booking th,
.schedule-table--booking td {
    padding: 0.65rem 0.75rem;
    border-bottom-color: rgba(255, 250, 244, 0.12);
}

.schedule-table--booking th {
    background: rgba(0, 0, 0, 0.25);
    color: var(--sst-cream);
}

.schedule-table--booking tbody tr:last-child td {
    border-bottom: 0;
}

.booking-schedule {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 250, 244, 0.14);
    border-radius: var(--sst-radius);
    padding: 1.15rem 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 250, 244, 0.88);
}

.booking-schedule h3 {
    font-family: var(--sst-display);
    font-size: 1.15rem;
    color: var(--sst-cream);
    margin: 0 0 0.5rem;
}

.booking-schedule__intro {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 250, 244, 0.62);
    line-height: 1.5;
}

.booking-departure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-meeting {
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-departure__label,
.booking-meeting__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--sst-amber);
}

.booking-departure__value {
    font-family: var(--sst-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--sst-cream);
    line-height: 1.2;
}

.booking-meeting__value {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--sst-cream);
    line-height: 1.35;
}

.booking-meeting__map {
    margin-top: 0.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sst-amber);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.booking-meeting__map:hover,
.booking-meeting__map:focus-visible {
    color: var(--sst-cream);
}

.pricing-sub {
    font-family: var(--sst-display);
    font-size: 1.35rem;
    margin: 1.75rem 0 1rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--sst-border);
    border-radius: var(--sst-radius);
    padding: 1.25rem;
}

.price-card h4 {
    font-family: var(--sst-display);
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
}

.price-card .muted,
.muted {
    color: var(--sst-muted);
    font-size: 0.92rem;
}

.pricing-note {
    margin-top: 1.5rem;
    color: var(--sst-muted);
}

/* Booking wizard */

.booking-wizard {
    margin-top: 0.5rem;
}

.booking-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 250, 244, 0.14);
    border-radius: var(--sst-radius);
    overflow: hidden;
}

.booking-form__header {
    padding: 1.15rem 1.25rem 0.85rem;
    border-bottom: 1px solid rgba(255, 250, 244, 0.1);
}

.booking-form__header-title {
    margin: 0 0 0.75rem;
    font-family: var(--sst-display);
    color: var(--sst-cream);
    font-size: 1.15rem;
}

.wizard-steps {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
}

.wizard-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.55;
    color: var(--sst-cream);
    font-size: 0.88rem;
}

.wizard-step-indicator.active {
    opacity: 1;
}

.wizard-step-num {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    font-size: 0.8rem;
}

.wizard-step-indicator.active .wizard-step-num {
    background: var(--sst-coral);
}

.booking-form__body {
    padding: 1.25rem;
}

.wizard-panel-title {
    font-family: var(--sst-display);
    font-size: 1.25rem;
    color: var(--sst-cream);
    margin: 0 0 1rem;
}

.booking-field {
    margin-bottom: 1.15rem;
}

.booking-field:last-child {
    margin-bottom: 0;
}

.booking-field__legend {
    margin: 0 0 0.55rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 250, 244, 0.88);
}

.booking-guests {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.booking-guests__item .form-label {
    font-size: 0.85rem;
}

.booking-price {
    margin: 1.35rem 0 0;
    padding: 1rem 1.1rem;
    border-radius: var(--sst-radius);
    border: 1px solid rgba(240, 163, 94, 0.28);
    background: rgba(240, 163, 94, 0.08);
}

.booking-price__title {
    font-family: var(--sst-display);
    font-size: 1.05rem;
    color: var(--sst-amber);
    margin: 0 0 0.65rem;
}

.booking-price__body {
    color: rgba(255, 250, 244, 0.9);
}

.booking-form .form-label,
.booking-form legend.form-label {
    color: rgba(255, 250, 244, 0.88);
    font-weight: 600;
}

.booking-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--sst-ink);
}

.booking-form .form-control:focus {
    border-color: var(--sst-amber);
    box-shadow: 0 0 0 0.2rem rgba(240, 163, 94, 0.25);
}

.booking-form .form-check-label {
    color: rgba(255, 250, 244, 0.9);
}

.booking-form .form-text,
.booking-form .form-check-label small {
    color: rgba(255, 250, 244, 0.65) !important;
}

.booking-form .form-check-input:checked {
    background-color: var(--sst-coral);
    border-color: var(--sst-coral);
}

.product-radio-group,
.tier-radio-group {
    display: grid;
    gap: 0.65rem;
}

.product-check {
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 250, 244, 0.14);
    border-radius: var(--sst-radius);
    background: rgba(0, 0, 0, 0.15);
}

.form-error {
    color: #ffb4a2;
    font-size: 0.88rem;
    margin-top: 0.35rem;
}

.wizard-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.btn-wizard-back,
.btn-wizard-next,
.btn-submit-booking {
    border-radius: 999px;
    padding: 0.65rem 1.2rem;
    font-weight: 600;
    border: 0;
}

.btn-wizard-back {
    background: transparent;
    border: 1px solid rgba(255, 250, 244, 0.35);
    color: var(--sst-cream);
}

.btn-wizard-next,
.btn-submit-booking {
    background: var(--sst-coral);
    color: var(--sst-white);
}

.btn-wizard-next:hover,
.btn-submit-booking:hover {
    background: var(--sst-coral-deep);
    color: var(--sst-white);
}

.value-hint {
    margin-top: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--sst-radius);
    background: rgba(240, 163, 94, 0.15);
    color: var(--sst-cream);
    font-size: 0.92rem;
}

.price-calculator,
.booking-notes-card,
.booking-price {
    color: rgba(255, 250, 244, 0.88);
}

.price-calculator,
.booking-notes-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 250, 244, 0.14);
    border-radius: var(--sst-radius);
    padding: 1.15rem 1.2rem;
    margin-bottom: 1rem;
}

.price-calculator__title,
.booking-notes-card h3,
.booking-price__title {
    font-family: var(--sst-display);
    margin: 0 0 0.85rem;
}

.price-calculator__title,
.booking-notes-card h3 {
    font-size: 1.15rem;
    color: var(--sst-cream);
}

.price-calculator__placeholder {
    margin: 0;
    color: rgba(255, 250, 244, 0.65);
}

.price-lines {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-lines li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.price-lines__total {
    font-size: 1.05rem;
    margin-top: 0.35rem;
}

.booking-notes-card ul {
    padding-left: 1.1rem;
    margin: 0 0 1rem;
}

.booking-notes-card a {
    color: var(--sst-amber);
}

.booking-form .text-link {
    color: var(--sst-amber);
}

/* Legacy booking panel (if any) */
.booking-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 250, 244, 0.15);
    border-radius: var(--sst-radius);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    max-width: 40rem;
}

/* FAQ */

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--sst-border);
}

.faq-item h3 {
    margin: 0;
    font-size: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 1rem 2rem 1rem 0;
    font: inherit;
    font-weight: 600;
    color: var(--sst-ink);
    position: relative;
    cursor: pointer;
}

.faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid var(--sst-coral);
    border-bottom: 2px solid var(--sst-coral);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
    padding: 0 0 1rem;
    color: var(--sst-muted);
}

.faq-answer p {
    margin: 0;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--sst-radius);
    aspect-ratio: 4 / 3;
}

.gallery-item__link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    cursor: zoom-in;
}

.gallery-item__link picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item__link:focus-visible {
    outline: 3px solid var(--sst-amber);
    outline-offset: 2px;
}

/* Footer */

.site-footer {
    background: var(--sst-ink);
    color: rgba(255, 250, 244, 0.82);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: var(--sst-display);
    font-size: 1.05rem;
    color: var(--sst-cream);
    margin: 0 0 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 250, 244, 0.75);
    text-decoration: none;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--sst-amber);
}

.footer-copy {
    margin: 2.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 250, 244, 0.55);
}

/* Legal pages */

.legal-page {
    padding: 4rem 0 5rem;
}

.legal-page h1 {
    font-family: var(--sst-display);
}

.legal-page .legal-body {
    max-width: 42rem;
    color: var(--sst-muted);
}

/* Motion */

@keyframes hero-rise {
    from {
        transform: scale(1.06);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes content-fade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Responsive */

@media (max-width: 991px) {
    .overview-grid,
    .tour-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .overview-grid,
    .tour-grid,
    .price-grid,
    .gallery-grid,
    .footer-grid,
    .tour-price-cards__grid,
    .booking-guests {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 85vh;
        align-items: flex-end;
    }

    .site-header .navbar-collapse {
        padding-top: 0.75rem;
    }

    .btn-nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
    }

    .other-tour-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

/* Related / other popular tours (card layout) */

.other-tours-section {
    background: linear-gradient(180deg, rgba(235, 224, 210, 0.55), rgba(246, 239, 230, 0.9));
}

.other-tours-section h2 {
    margin-bottom: 0.85rem;
}

.other-tours-section__intro {
    color: var(--sst-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 0.25rem;
}

.other-tours-grid {
    margin-top: 1.75rem;
}

.other-tours-grid__col {
    margin-bottom: 1.5rem;
    display: flex;
}

.other-tour-card {
    width: 100%;
    height: 100%;
}

.other-tour-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--sst-white);
    border: 1px solid var(--sst-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 18, 16, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.other-tour-card__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 18, 16, 0.08);
    border-color: rgba(224, 122, 69, 0.35);
    text-decoration: none;
    color: inherit;
}

.other-tour-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.other-tour-card__media picture,
.other-tour-card__media img,
.other-tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.other-tour-card__media img {
    transition: transform 0.35s ease;
}

.other-tour-card__link:hover .other-tour-card__media img {
    transform: scale(1.03);
}

.other-tour-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    background: var(--sst-coral);
    color: var(--sst-white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(26, 18, 16, 0.15);
}

.other-tour-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.5rem 1.5rem;
}

.other-tour-card__title {
    font-family: var(--sst-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sst-ink);
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

.other-tour-card__text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--sst-muted);
    margin: 0 0 1rem;
    flex: 1;
}

.other-tour-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.85rem;
    margin-bottom: 0.85rem;
    border-top: 1px solid rgba(42, 34, 30, 0.1);
    font-size: 0.9rem;
}

.other-tour-card__duration {
    color: var(--sst-muted);
    white-space: nowrap;
}

.other-tour-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sst-coral-deep);
    white-space: nowrap;
}

.other-tour-card__cta {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--sst-ink);
}

.other-tour-card__link:hover .other-tour-card__cta {
    color: var(--sst-coral-deep);
}
