/*
Theme Name: Boatman Lovina
Theme URI: https://boatmanlovina.com
Author: Boatman Lovina
Author URI: https://boatmanlovina.com
Description: Custom lightweight WordPress theme for Boatman Lovina, featuring tour management, responsive layouts, accessibility, and ocean adventure experiences in Lovina, Bali.
Version: 1.4.4
Text Domain: boatmanlovina
Requires at least: 6.5
Requires PHP: 8.0
*/


/* =========================================================
   DESIGN SYSTEM
   ========================================================= */

:root {
    --color-primary: #0b3d4a;
    --color-primary-dark: #072b34;
    --color-accent: #06798c;

    --color-text: #1f2933;
    --color-text-light: #667085;

    --color-background: #ffffff;
    --color-background-soft: #f5f7f8;
    --color-border: #e5e7eb;

    --color-white: #ffffff;

    --font-family-base:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    --font-size-base: 16px;
    --line-height-base: 1.6;

    --container-width: 1200px;
    --container-padding: 24px;

    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 6rem;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background-color: var(--color-background);
    color: var(--color-text);

    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: var(--space-md);

    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: var(--space-md);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(
        100% - (var(--container-padding) * 2),
        var(--container-width)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    width: 100%;

    background-color: var(--color-white);

    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.site-header__branding {
    flex-shrink: 0;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;

    color: var(--color-primary);

    font-size: 1.32rem;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}

.site-header__logo:hover {
    color: var(--color-primary);
}

.site-header__logo img {
    display: block;

    width: auto;
    max-height: 52px;
}


/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */

.site-header__navigation {
    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;

    gap: 38px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: #18323d;

    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;

    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.primary-menu a:hover {
    color: var(--color-accent);
}


/* =========================================================
   HOMEPAGE TRANSPARENT HEADER
   ========================================================= */

.home .site-header {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 50;

    background-color: transparent;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.14);
}

.home .site-header__logo,
.home .site-header__logo:hover {
    color: var(--color-white);
}

.home .primary-menu a {
    position: relative;

    color: rgba(255, 255, 255, 0.90);

    font-size: 0.92rem;
    font-weight: 600;
}

.home .primary-menu a:hover {
    color: var(--color-white);
}


/* Desktop menu underline */

.home .primary-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 1px;

    height: 1px;

    background-color: var(--color-white);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 180ms ease;
}

.home .primary-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.site-header__toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    color: var(--color-primary);
    background: transparent;

    cursor: pointer;
}

.site-header__toggle span {
    display: block;

    width: 26px;
    height: 2px;

    margin: 5px auto;

    border-radius: 999px;

    background-color: currentColor;

    transition:
        transform 200ms ease,
        opacity 200ms ease;
}

.home .site-header__toggle {
    color: var(--color-white);
}

.site-header__toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    width: 100%;
    min-height: 60vh;
}


/* =========================================================
   CINEMATIC HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100svh;

    min-height: 720px;
    max-height: 920px;

    padding: 0 !important;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #102732;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero__media {
    position: absolute;

    inset: 0;

    z-index: 0;
}

.hero__media img,
.hero__image {
    display: block;

    width: 100%;
    max-width: none;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* Hero fallback */

.hero__image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #173745,
            #0d5f72
        );

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =========================================================
   CINEMATIC OVERLAY
   ========================================================= */

.hero__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 18, 28, 0.76) 0%,
            rgba(5, 18, 28, 0.58) 28%,
            rgba(5, 18, 28, 0.28) 52%,
            rgba(5, 18, 28, 0.08) 76%,
            rgba(5, 18, 28, 0.02) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 15, 24, 0.24) 0%,
            rgba(4, 15, 24, 0) 30%,
            rgba(4, 15, 24, 0) 65%,
            rgba(4, 15, 24, 0.35) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero__inner {
    position: relative;

    z-index: 2;

    padding-top: 72px;

    transform: translateY(-18px);
}

.hero__content {
    width: 100%;
    max-width: 860px;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.hero__eyebrow {
    margin: 0 0 20px;

    color: #69d9e8;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.22em;
    line-height: 1.4;
}


/* =========================================================
   HERO HEADING
   ========================================================= */

.hero__title {
    max-width: 860px;

    margin: 0 0 30px;

    color: var(--color-white);

    font-size: clamp(
        3.6rem,
        4vw,
        4.4rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;
    line-height: 0.92;

    /* Keep each Customizer title line intact on desktop. */
    white-space: nowrap;
}

.hero__title span {
    display: block;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero__description {
    max-width: 560px;

    margin: 0 0 36px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.04rem;
    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 30px;
}


/* =========================================================
   HERO PRIMARY CTA
   ========================================================= */

.hero__button {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 0 30px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.hero__button--primary {
    color: var(--color-white);

    background-color: var(--color-accent);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.12);
}

.hero__button--primary:hover {
    color: var(--color-white);

    background-color: #056f81;

    transform: translateY(-2px);

    box-shadow:
        0 14px 36px
        rgba(0, 0, 0, 0.18);
}


/* =========================================================
   HERO SECONDARY CTA
   ========================================================= */

.hero__link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 10px 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 0.9rem;
    font-weight: 600;
}

.hero__link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 4px;

    width: calc(100% - 28px);
    height: 1px;

    background-color:
        rgba(255, 255, 255, 0.45);

    transition: width 180ms ease;
}

.hero__link:hover {
    color: var(--color-white);
}

.hero__link:hover::after {
    width: 0;
}


/* =========================================================
   HERO CAPTAIN EXPERIENCE
   ========================================================= */

.hero__experience {
    width: fit-content;
    min-width: 310px;

    display: inline-flex;
    align-items: center;

    gap: 18px;

    margin-top: 34px;
    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.22);
}

.hero__experience-number {
    color: var(--color-white);

    font-size: clamp(
        2.6rem,
        4vw,
        3.8rem
    );

    font-weight: 700;

    letter-spacing: -0.065em;
    line-height: 0.9;
}

.hero__experience-divider {
    width: 1px;
    height: 44px;

    flex-shrink: 0;

    background:
        rgba(255, 255, 255, 0.28);
}

.hero__experience-copy {
    display: flex;
    flex-direction: column;

    gap: 4px;

    text-align: left;
}

.hero__experience-copy strong {
    color: var(--color-white);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__experience-copy span {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.74rem;
    line-height: 1.4;
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.hero__scroll {
    position: absolute;

    z-index: 2;

    left: 50%;
    bottom: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.25em;
    text-transform: uppercase;

    transform: translateX(-50%);
}

.hero__scroll-icon {
    position: relative;

    width: 24px;
    height: 38px;

    border:
        2px solid
        rgba(255, 255, 255, 0.80);

    border-radius: 20px;
}

.hero__scroll-icon::before {
    content: "";

    position: absolute;

    top: 7px;
    left: 50%;

    width: 3px;
    height: 7px;

    border-radius: 4px;

    background-color: var(--color-white);

    transform: translateX(-50%);

    animation:
        boatman-scroll-wheel
        1.8s ease-in-out infinite;
}


/* Lightweight scroll animation */

@keyframes boatman-scroll-wheel {

    0% {
        opacity: 0;

        transform:
            translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, 10px);
    }
}


/* =========================================================
   GENERAL HOMEPAGE SECTIONS
   ========================================================= */

.tours,
.about,
.gallery,
.contact {
    padding: 100px 0;

    border-top:
        1px solid var(--color-border);
}

.site-main h2 {
    margin: 0 0 20px;

    font-size:
        clamp(2rem, 4vw, 3.5rem);

    line-height: 1.1;
}

.tours p,
.about p,
.gallery p,
.contact p {
    max-width: 650px;

    margin: 0;

    color: var(--color-text-light);

    line-height: 1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: var(--space-lg) 0;

    background-color: var(--color-primary);

    color: var(--color-white);
}

.site-footer p {
    margin: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --container-padding: 28px;
    }

    .primary-menu {
        gap: 28px;
    }

    .hero__content {
        max-width: 800px;
    }

    .hero__title {
        max-width: 800px;

        font-size: clamp(
            3.25rem,
            5.6vw,
            4.1rem
        );
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: 700px;
        max-height: none;
    }

    .hero__inner {
        padding-top: 100px;

        transform: translateY(-8px);
    }

    .hero__content {
        max-width: 640px;
    }

    .hero__title {
        max-width: 640px;

        font-size: clamp(
            3.15rem,
            7vw,
            4rem
        );

        white-space: normal;
    }

    .hero__description {
        max-width: 520px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --container-padding: 18px;
    }


    /* =====================================================
       MOBILE HEADER
       ===================================================== */

    .site-header__inner {
        min-height: 72px;

        gap: 20px;
    }

    .site-header__logo {
        position: relative;

        z-index: 60;

        font-size: 1.15rem;
    }


    /* Hamburger appears */

    .site-header__toggle {
        position: relative;

        z-index: 60;

        display: block;

        flex-shrink: 0;
    }


    /* =====================================================
   PREMIUM MOBILE NAVIGATION
   ===================================================== */

.site-header__navigation {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 45;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    margin: 0;

    padding:
        110px
        var(--container-padding)
        70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(10, 135, 158, 0.18) 0%,
            rgba(10, 135, 158, 0) 34%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(38, 111, 128, 0.12) 0%,
            rgba(38, 111, 128, 0) 38%
        ),
        #061923;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transform: translateY(-16px);

    transition:
        opacity 240ms ease,
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 300ms ease;
}


/* Decorative label */

.site-header__navigation::before {
    content: "EXPLORE LOVINA";

    position: absolute;

    top: 104px;
    left: var(--container-padding);

    color: #69d9e8;

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.22em;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 250ms ease 100ms,
        transform 250ms ease 100ms;
}


/* Bottom location */

.site-header__navigation::after {
    content: "BALI  •  INDONESIA";

    position: absolute;

    left: var(--container-padding);
    bottom: 30px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 0.20em;

    opacity: 0;

    transition:
        opacity 250ms ease 300ms;
}


/* =====================================================
   OPEN STATE
   ===================================================== */

.nav-open .site-header__navigation {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;

    transform: translateY(0);
}

.nav-open .site-header__navigation::before,
.nav-open .site-header__navigation::after {
    opacity: 1;
}

.nav-open .site-header__navigation::before {
    transform: translateY(0);
}


/* Header remains above panel */

.nav-open .site-header {
    background-color: transparent;

    border-bottom-color:
        rgba(255, 255, 255, 0.10);
}

.nav-open .site-header__logo,
.nav-open .site-header__toggle {
    color: #ffffff;
}


/* Prevent page scrolling */

body.nav-open {
    overflow: hidden;
}


/* =====================================================
   MENU LIST
   ===================================================== */

.primary-menu {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    margin-top: clamp(140px, 22vh, 190px);

    counter-reset: boatman-menu;
}

.primary-menu li {
    position: relative;

    width: 100%;

    counter-increment: boatman-menu;

    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 300ms ease,
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* Staggered reveal */

.nav-open .primary-menu li {
    opacity: 1;

    transform: translateY(0);
}

.nav-open .primary-menu li:nth-child(1) {
    transition-delay: 100ms;
}

.nav-open .primary-menu li:nth-child(2) {
    transition-delay: 140ms;
}

.nav-open .primary-menu li:nth-child(3) {
    transition-delay: 180ms;
}

.nav-open .primary-menu li:nth-child(4) {
    transition-delay: 220ms;
}

.nav-open .primary-menu li:nth-child(5) {
    transition-delay: 260ms;
}


/* =====================================================
   MENU LINKS
   ===================================================== */

.home .primary-menu a,
.primary-menu a {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;

    padding: 15px 0 15px 44px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.94);

    font-size:
        clamp(
            1.8rem,
            8vw,
            2.5rem
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.045em;

    transition:
        color 180ms ease,
        padding-left 220ms ease;
}


/* 01 / 02 / 03 */

.home .primary-menu a::before,
.primary-menu a::before {
    content:
        "0"
        counter(boatman-menu);

    position: absolute;

    left: 0;
    top: 50%;

    color: rgba(105, 217, 232, 0.65);

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.10em;

    transform: translateY(-50%);
}


/* Arrow */

.home .primary-menu a::after,
.primary-menu a::after {
    content: "↗";

    position: absolute;

    right: 2px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 0.9rem;

    transform:
        translate(-8px, 8px);

    opacity: 0;

    transition:
        transform 200ms ease,
        opacity 200ms ease,
        color 200ms ease;
}


/* Hover / tap feedback */

.home .primary-menu a:hover,
.primary-menu a:hover {
    padding-left: 50px;

    color: #69d9e8;
}

.home .primary-menu a:hover::after,
.primary-menu a:hover::after {
    color: #69d9e8;

    opacity: 1;

    transform:
        translate(0, 0);
}


/* =====================================================
   HAMBURGER → PREMIUM X
   ===================================================== */

.site-header__toggle {
    position: relative;

    z-index: 60;
}

.nav-open
.site-header__toggle
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.nav-open
.site-header__toggle
span:nth-child(2) {
    opacity: 0;
}

.nav-open
.site-header__toggle
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =====================================================
   MOBILE MENU — REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

    .site-header__navigation,
    .site-header__navigation::before,
    .site-header__navigation::after,
    .primary-menu li,
    .primary-menu a,
    .primary-menu a::after {
        transition: none;
    }
}


    
    /* =====================================================
       MOBILE HERO
       ===================================================== */

    .hero {
        height: 100svh;
        min-height: 680px;
        max-height: none;

        align-items: flex-end;
    }


    /* Hero image crop */

    .hero__media img,
    .hero__image {
        object-position: 66% center;
    }


    /* Mobile cinematic overlay */

    .hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(4, 15, 24, 0.94) 0%,
                rgba(4, 15, 24, 0.82) 24%,
                rgba(4, 15, 24, 0.55) 47%,
                rgba(4, 15, 24, 0.24) 70%,
                rgba(4, 15, 24, 0.08) 100%
            ),
            linear-gradient(
                90deg,
                rgba(4, 15, 24, 0.18) 0%,
                rgba(4, 15, 24, 0) 100%
            );
    }


    /* Hero content position */

    .hero__inner {
        padding-top: 120px;
        padding-bottom: 68px;

        transform: none;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
    }


    /* Hero eyebrow */

    .hero__eyebrow {
        margin-bottom: 14px;

        color: #69d9e8;

        font-size: 0.70rem;
        font-weight: 700;

        letter-spacing: 0.20em;
    }


    /* Hero heading */

    .hero__title {
        max-width: 100%;

        margin-bottom: 20px;

        font-size: clamp(
            2.75rem,
            10.8vw,
            3.6rem
        );

        line-height: 0.94;
        letter-spacing: -0.055em;

        white-space: normal;
    }


    /* Hero description */

    .hero__description {
        max-width: 350px;

        margin-bottom: 26px;

        color: rgba(255, 255, 255, 0.84);

        font-size: 0.92rem;
        line-height: 1.6;
    }


    /* Hero actions */

    .hero__actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;

        gap: 12px 22px;
    }

    .hero__button {
        min-height: 50px;

        padding: 0 22px;

        font-size: 0.84rem;
    }

    .hero__link {
        padding: 8px 0;

        font-size: 0.84rem;
    }


    /* Captain experience proof */

    .hero__experience {
        min-width: 0;

        margin-top: 28px;
        padding-top: 18px;

        gap: 14px;
    }

    .hero__experience-number {
        font-size: 2.7rem;
    }

    .hero__experience-divider {
        height: 38px;
    }

    .hero__experience-copy strong {
        font-size: 0.66rem;
    }

    .hero__experience-copy span {
        font-size: 0.70rem;
    }


    /* Scroll indicator not needed on phone */

    .hero__scroll {
        display: none;
    }


    /* Sections */

    .tours,
    .about,
    .gallery,
    .contact {
        padding: 72px 0;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 650px;
    }

    .hero__inner {
        padding-bottom: 48px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        max-width: 100%;

        font-size: clamp(
            2.55rem,
            11vw,
            3.35rem
        );
    }

    .hero__description {
        max-width: 320px;

        font-size: 0.90rem;
    }

}


/* Very small phones */

@media (max-width: 389px) {

    .hero__title {
        max-width: 100%;

        font-size: clamp(
            2.35rem,
            11vw,
            2.9rem
        );
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;
    }

}


/* =========================================================
   ACCESSIBILITY
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero__button,
    .hero__link::after,
    .home .primary-menu a::after,
    .site-header__toggle span,
    .site-header__navigation {
        transition: none;
    }

    .hero__scroll-icon::before {
        animation: none;
    }
}

/* =========================================================
   TOURS SECTION
   ========================================================= */

.tours {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background-color: #ffffff;
}


/* =========================================================
   TOURS — SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 760px;

    margin:
        0 auto
        64px;

    text-align: center;
}


.section-heading__eyebrow {
    margin:
        0 0
        14px !important;

    color:
        var(--color-accent) !important;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.20em;
    line-height: 1.4;

    text-transform: uppercase;
}


.section-heading__title {
    max-width: 720px;

    margin:
        0 auto
        20px;

    color:
        var(--color-text);

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.5rem
        );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.98;
}


.section-heading__description {
    max-width: 640px !important;

    margin:
        0 auto !important;

    color:
        var(--color-text-light) !important;

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================================================
   TOUR GRID
   ========================================================= */

.tour-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: stretch;

    gap: 24px;
}


/* =========================================================
   TOUR CARD
   ========================================================= */

.tour-card {
    position: relative;

    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background-color:
        #ffffff;

    border:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-radius: 18px;

    box-shadow:
        0 8px 30px
        rgba(9, 42, 52, 0.05);

    transition:
        transform 300ms
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 300ms ease;
}


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

    box-shadow:
        0 22px 50px
        rgba(9, 42, 52, 0.12);
}


/* =========================================================
   TOUR CARD IMAGE
   ========================================================= */

.tour-card__image {
    position: relative;

    width: 100%;

    display: block;

    flex-shrink: 0;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background-color:
        var(--color-background-soft);
}


.tour-card__thumbnail {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 650ms
        cubic-bezier(0.22, 1, 0.36, 1);
}


.tour-card:hover
.tour-card__thumbnail {
    transform:
        scale(1.045);
}


/* Image overlay */

.tour-card__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 25, 34, 0) 55%,
            rgba(5, 25, 34, 0.20) 100%
        );

    pointer-events: none;
}


/* =========================================================
   TOUR IMAGE PLACEHOLDER
   ========================================================= */

.tour-card__placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #dcebed,
            #a9ced4
        );

    color:
        var(--color-primary);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* =========================================================
   TOUR CARD CONTENT
   ========================================================= */

.tour-card__content {
    padding:
        28px
        28px
        30px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


/* =========================================================
   TOUR CARD TITLE
   ========================================================= */

.tour-card__title {
    margin:
        0 0
        14px;

    color:
        var(--color-text);

    font-size:
        clamp(
            1.45rem,
            2vw,
            1.9rem
        );

    font-weight: 700;

    letter-spacing: -0.035em;

    line-height: 1.1;
}


.tour-card__title a {
    transition:
        color 180ms ease;
}


.tour-card__title a:hover {
    color:
        var(--color-accent);
}


/* =========================================================
   TOUR CARD FACTS
   ========================================================= */

.tour-card__facts {
    display: flex;
    align-items: flex-start;

    gap: 28px;

    margin:
        18px 0
        22px;

    padding:
        18px 0;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.tour-card__fact {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.tour-card__fact span,
.tour-card__price > span {
    color:
        var(--color-text-light);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    line-height: 1.4;

    text-transform: uppercase;
}


.tour-card__fact strong {
    color:
        var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   TOUR CARD EXCERPT
   ========================================================= */

.tour-card__excerpt {
    flex: 1;

    margin-bottom: 0;

    color:
        var(--color-text-light);

    font-size: 0.92rem;

    line-height: 1.7;
}


.tour-card__excerpt p {
    margin: 0;

    color: inherit;
}


/* =========================================================
   TOUR CARD FOOTER
   ========================================================= */

.tour-card__footer {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-top: 26px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.08);
}


/* =========================================================
   TOUR CARD PRICE
   ========================================================= */

.tour-card__price {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.tour-card__price strong {
    color:
        var(--color-primary);

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.25;

    overflow-wrap: anywhere;
}

.tour-card__price-note {
    display: block;

    margin-top: 5px;

    color: var(--color-text-light);

    font-size: 0.68rem;
    font-weight: 500;

    line-height: 1.4;
}


/* =========================================================
   TOUR CARD LINK
   ========================================================= */

.tour-card__link {
    position: relative;

    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    gap: 10px;

    color:
        var(--color-primary);

    font-size: 0.84rem;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.tour-card__link span {
    transition:
        transform 180ms ease;
}


.tour-card__link:hover {
    color:
        var(--color-accent);

    gap: 14px;
}


.tour-card__link:hover span {
    transform:
        translateX(2px);
}


/* =========================================================
   EMPTY TOURS
   ========================================================= */

.tours__empty {
    max-width: 520px;

    margin:
        0 auto;

    color:
        var(--color-text-light);

    text-align: center;

    line-height: 1.7;
}


/* =========================================================
   TOUR SECTION — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .tours {
        padding:
            100px 0;
    }


    .section-heading {
        margin-bottom:
            52px;
    }


    .tour-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 20px;
    }

}


/* =========================================================
   TOUR SECTION — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tours {
        padding:
            80px 0;
    }


    /* Heading */

    .section-heading {
        max-width: 520px;

        margin:
            0 0
            38px;

        text-align: left;
    }


    .section-heading__eyebrow {
        margin-bottom:
            12px !important;

        font-size: 0.68rem;
    }


    .section-heading__title {
        max-width: 380px;

        margin:
            0 0
            16px;

        font-size:
            clamp(
                2.45rem,
                11vw,
                3.35rem
            );

        line-height: 0.98;
    }


    .section-heading__description {
        max-width: 440px !important;

        margin-left:
            0 !important;

        font-size: 0.92rem;

        line-height: 1.65;
    }


    /* Horizontal swipe */

    .tour-grid {
        width:
            calc(
                100% +
                var(--container-padding)
            );

        display: flex;

        align-items: stretch;

        gap: 16px;

        overflow-x: auto;

        padding-right:
            var(--container-padding);

        padding-bottom: 18px;

        scroll-snap-type:
            x mandatory;

        scroll-padding-inline:
            0 var(--container-padding);

        overscroll-behavior-inline:
            contain;

        -webkit-overflow-scrolling:
            touch;

        scrollbar-width: none;
    }


    .tour-grid::-webkit-scrollbar {
        display: none;
    }


    /* Card */

    .tour-card {
        flex:
            0 0
            min(
                82vw,
                330px
            );

        height: auto;

        scroll-snap-align:
            start;

        border-radius:
            16px;
    }


    .tour-card:hover {
        transform: none;
    }


    .tour-card__image {
        aspect-ratio:
            4 / 5;
    }


    /* Content */

    .tour-card__content {
        padding:
            23px
            22px
            25px;
    }


    .tour-card__title {
        font-size:
            1.45rem;
    }


    /* Facts */

    .tour-card__facts {
        gap: 20px;

        margin:
            16px 0
            20px;

        padding:
            15px 0;
    }


    .tour-card__fact strong {
        font-size:
            0.80rem;
    }


    /* Description */

    .tour-card__excerpt {
        font-size:
            0.88rem;
    }


    /* Footer */

    .tour-card__footer {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 16px;

        margin-top:
            22px;

        padding-top:
            18px;
    }


    .tour-card__price strong {
        font-size:
            0.95rem;
    }

}


/* =========================================================
   TOUR SECTION — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .tours {
        padding:
            72px 0;
    }


    .section-heading__title {
        max-width:
            340px;

        font-size:
            clamp(
                2.3rem,
                10.5vw,
                3rem
            );
    }


    .tour-card {
        flex-basis:
            min(
                84vw,
                320px
            );
    }


    .tour-card__content {
        padding:
            22px
            20px
            23px;
    }


    .tour-card__facts {
        gap:
            16px;
    }

}


/* =========================================================
   TOUR SECTION — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tour-card,
    .tour-card__thumbnail,
    .tour-card__title a,
    .tour-card__link,
    .tour-card__link span {
        transition: none;
    }


    .tour-card:hover {
        transform: none;
    }


    .tour-card:hover
    .tour-card__thumbnail {
        transform: none;
    }

}

/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about {
    position: relative;
    padding: 120px 0;
    background-color: #f7fafb;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 80px;
}


/* =========================================================
   ABOUT VISUAL
   ========================================================= */

.about__visual {
    position: relative;
}

.about__image {
    display: block;

    width: 100%;
    height: 620px;

    object-fit: cover;
    object-position: center;

    border-radius: 20px;
}

.about__image-placeholder {
    width: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #d7e8eb,
            #9fc4ca
        );

    color: var(--color-primary);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =========================================================
   ABOUT BADGE
   ========================================================= */

.about__badge {
    position: absolute;

    right: -34px;
    bottom: 42px;

    width: 170px;
    min-height: 150px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 16px;

    background-color: #ffffff;

    box-shadow:
        0 20px 50px
        rgba(7, 44, 55, 0.14);
}

.about__badge strong {
    display: block;

    margin-bottom: 8px;

    color: var(--color-primary);

    font-size: 2.5rem;
    font-weight: 700;

    letter-spacing: -0.05em;
    line-height: 1;
}

.about__badge span {
    color: var(--color-text-light);

    font-size: 0.76rem;
    font-weight: 600;

    line-height: 1.5;
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.about__content {
    max-width: 640px;
}

.about__eyebrow {
    margin: 0 0 18px !important;

    color: var(--color-accent) !important;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.20em;

    text-transform: uppercase;
}

.about__title {
    margin: 0 0 28px;

    max-width: 620px;

    color: var(--color-text);

    font-size: clamp(
        3rem,
        5vw,
        5rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.96;
}

.about__title span {
    display: block;
}

.about__description {
    max-width: 560px;

    margin: 0 0 18px !important;

    color: var(--color-text-light) !important;

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   ABOUT HIGHLIGHTS
   ========================================================= */

.about__highlights {
    margin-top: 38px;
    margin-bottom: 36px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    padding-top: 26px;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.12);
}

.about__highlight {
    min-width: 0;
}

.about__highlight strong {
    display: block;

    margin-bottom: 6px;

    color: var(--color-primary);

    font-size: 1rem;
    font-weight: 700;
}

.about__highlight span {
    display: block;

    color: var(--color-text-light);

    font-size: 0.78rem;

    line-height: 1.5;
}


/* =========================================================
   ABOUT LINK
   ========================================================= */

.about__link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--color-primary);

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.about__link:hover {
    color: var(--color-accent);

    gap: 14px;
}


/* =========================================================
   ABOUT TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about {
        padding: 96px 0;
    }

    .about__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 52px;
    }

    .about__image {
    height: 520px;
}

    .about__image-placeholder {
        min-height: 520px;
    }

    .about__badge {
        right: -20px;
        bottom: 28px;

        width: 150px;
        min-height: 132px;
    }

}


/* =========================================================
   ABOUT MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .about {
        padding: 80px 0;
    }

    .about__grid {
        display: flex;
        flex-direction: column;

        gap: 48px;
    }

    .about__visual,
    .about__content {
        width: 100%;
    }

    .about__image {
    height: 440px;

    border-radius: 16px;
}

    .about__image-placeholder {
        min-height: 440px;

        border-radius: 16px;
    }

    .about__badge {
        right: 16px;
        bottom: 16px;

        width: 145px;
        min-height: 120px;

        padding: 18px;
    }

    .about__badge strong {
        font-size: 2rem;
    }

    .about__eyebrow {
        margin-bottom: 14px !important;

        font-size: 0.68rem;
    }

    .about__title {
        max-width: 390px;

        margin-bottom: 22px;

        font-size: clamp(
            2.6rem,
            11vw,
            3.6rem
        );
    }

    .about__description {
        font-size: 0.92rem;

        line-height: 1.7;
    }

    .about__highlights {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 12px;

        margin-top: 30px;
        margin-bottom: 30px;

        padding-top: 22px;
    }

    .about__highlight strong {
        font-size: 0.92rem;
    }

    .about__highlight span {
        font-size: 0.72rem;
    }

}


/* =========================================================
   ABOUT SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .about__image {
    height: 390px;
}
    
    .about__image-placeholder {
        min-height: 390px;
    }

    .about__highlights {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .about__highlight {
        padding-bottom: 14px;

        border-bottom:
            1px solid
            rgba(12, 54, 67, 0.08);
    }

    .about__highlight:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   GALLERY SECTION
   ========================================================= */

.gallery {
    position: relative;

    padding: 88px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GALLERY HEADING
   ========================================================= */

.gallery__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.65fr);

    align-items: end;

    gap: 60px;

    margin-bottom: 40px;
}

.gallery__eyebrow {
    margin: 0 0 14px !important;

    color: var(--color-accent) !important;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.20em;

    text-transform: uppercase;
}

.gallery__title {
    max-width: 720px;

    margin: 0;

    color: var(--color-text);

    font-size: clamp(
        3rem,
        5vw,
        4.8rem
    );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.98;
}

.gallery__description {
    max-width: 520px;

    margin: 0 !important;

    color: var(--color-text-light) !important;

    font-size: 0.98rem;

    line-height: 1.75;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(320px, 0.8fr);

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    height: clamp(520px, 62vh, 620px);
    min-height: 0;
}


/* Large image */

.gallery__item--large {
    grid-column: 1;
    grid-row: 1 / 3;
}


/* Small images */

.gallery__item--small {
    min-height: 0;
}


/* =========================================================
   GALLERY ITEM
   ========================================================= */

.gallery__item {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background-color: var(--color-background-soft);
}

.gallery__item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item:hover img {
    transform: scale(1.035);
}


/* Subtle cinematic overlay */

.gallery__item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 18, 28, 0) 65%,
            rgba(4, 18, 28, 0.12) 100%
        );

    pointer-events: none;
}


/* =========================================================
   GALLERY PLACEHOLDER
   ========================================================= */

.gallery__placeholder {
    width: 100%;
    height: 100%;

    min-height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #dbeaec,
            #aacdd3
        );

    color: var(--color-primary);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* =========================================================
   GALLERY FOOTER
   ========================================================= */

.gallery__footer {
    margin-top: 26px;

    display: flex;
    justify-content: flex-end;
}

.gallery__link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--color-primary);

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        color 180ms ease,
        gap 180ms ease;
}

.gallery__link:hover {
    color: var(--color-accent);

    gap: 14px;
}


/* =========================================================
   GALLERY TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .gallery {
        padding: 96px 0;
    }

    .gallery__heading {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, 0.7fr);

        gap: 40px;
    }

    .gallery__grid {
        min-height: 620px;

        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(260px, 0.8fr);
    }

}


/* =========================================================
   GALLERY MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .gallery {
        padding: 80px 0;
    }

    .gallery__heading {
        display: block;

        margin-bottom: 36px;
    }

    .gallery__eyebrow {
        margin-bottom: 12px !important;

        font-size: 0.68rem;
    }

    .gallery__title {
        max-width: 390px;

        margin-bottom: 18px;

        font-size: clamp(
            2.6rem,
            11vw,
            3.6rem
        );
    }

    .gallery__description {
        max-width: 420px;

        font-size: 0.92rem;

        line-height: 1.65;
    }


    /* Mobile editorial stack */

    .gallery__grid {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            auto;

        gap: 12px;

        min-height: 0;
    }

    .gallery__item--large {
        grid-column: 1 / 3;
        grid-row: auto;

        aspect-ratio: 4 / 5;
    }

    .gallery__item--small {
        aspect-ratio: 1 / 1;
    }

    .gallery__item {
        border-radius: 14px;
    }

    .gallery__footer {
        margin-top: 26px;

        justify-content: flex-start;
    }

}


/* =========================================================
   GALLERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .gallery__grid {
        gap: 10px;
    }

    .gallery__item--large {
        aspect-ratio: 4 / 4.8;
    }

}

/* =========================================================
   CONTACT / BOOKING CTA
   ========================================================= */

.contact {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(19, 151, 172, 0.18) 0%,
            rgba(19, 151, 172, 0) 34%
        ),
        radial-gradient(
            circle at 12% 90%,
            rgba(39, 111, 128, 0.14) 0%,
            rgba(39, 111, 128, 0) 38%
        ),
        #061923;

    color: #ffffff;
}

.contact__inner {
    position: relative;

    min-height: 470px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.55fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   CONTACT CONTENT
   ========================================================= */

.contact__content {
    position: relative;

    z-index: 2;

    max-width: 760px;
}

.contact__eyebrow {
    margin: 0 0 18px !important;

    color: #69d9e8 !important;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.contact__title {
    max-width: 760px;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(
        3.4rem,
        6vw,
        6rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.92;
}

.contact__title span {
    display: block;
}

.contact__description {
    max-width: 560px;

    margin: 0 0 36px !important;

    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================================================
   CONTACT ACTIONS
   ========================================================= */

.contact__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;
}


/* WhatsApp CTA */

.contact__button {
    min-height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 30px;

    border-radius: 999px;

    color: #ffffff;

    background-color: #07879c;

    font-size: 0.9rem;
    font-weight: 700;

    box-shadow:
        0 12px 32px
        rgba(0, 0, 0, 0.16);

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.contact__button:hover {
    color: #ffffff;

    background-color: #0696ad;

    transform: translateY(-2px);

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.22);
}


/* Secondary contact */

.contact__link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 10px 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 0.9rem;
    font-weight: 600;
}

.contact__link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 4px;

    width: calc(100% - 26px);
    height: 1px;

    background-color:
        rgba(255, 255, 255, 0.35);

    transition: width 180ms ease;
}

.contact__link:hover {
    color: #69d9e8;
}

.contact__link:hover::after {
    width: 0;
}


/* =========================================================
   CONTACT VISUAL
   ========================================================= */

.contact__visual {
    position: relative;

    min-height: 340px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.contact__visual::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: min(32vw, 420px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(105, 217, 232, 0.15);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

.contact__visual::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: min(22vw, 290px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(105, 217, 232, 0.11);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

.contact__visual-line {
    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(105, 217, 232, 0),
            rgba(105, 217, 232, 0.32),
            rgba(105, 217, 232, 0)
        );
}

.contact__visual-label {
    position: relative;

    z-index: 2;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


/* =========================================================
   CONTACT TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .contact {
        padding: 100px 0;
    }

    .contact__inner {
        min-height: 420px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(220px, 0.45fr);

        gap: 48px;
    }

    .contact__title {
        font-size: clamp(
            3.2rem,
            7vw,
            5rem
        );
    }
}


/* =========================================================
   CONTACT MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .contact {
        padding: 86px 0;
    }

    .contact__inner {
        min-height: 0;

        display: block;
    }

    .contact__content {
        max-width: 520px;
    }

    .contact__eyebrow {
        margin-bottom: 14px !important;

        font-size: 0.68rem;
    }

    .contact__title {
        max-width: 400px;

        margin-bottom: 22px;

        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );
    }

    .contact__description {
        max-width: 430px;

        margin-bottom: 30px !important;

        font-size: 0.92rem;

        line-height: 1.65;
    }

    .contact__actions {
        gap: 18px;
    }

    .contact__button {
        min-height: 52px;

        padding: 0 23px;

        font-size: 0.84rem;
    }

    .contact__link {
        font-size: 0.84rem;
    }

    .contact__visual {
        min-height: 190px;

        margin-top: 48px;
    }

    .contact__visual::before {
        width: 250px;
    }

    .contact__visual::after {
        width: 170px;
    }
}


/* =========================================================
   CONTACT SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .contact__actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }
}

/* =========================================================
   PREMIUM FOOTER
   ========================================================= */

.site-footer {
    padding: 0;

    background-color: #041219;
    color: #ffffff;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.site-footer__main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(160px, 0.55fr)
        minmax(220px, 0.75fr);

    gap: 80px;

    padding: 84px 0 72px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.site-footer__brand {
    max-width: 430px;
}

.site-footer__logo {
    display: inline-block;

    margin-bottom: 22px;

    color: #ffffff;

    font-size: 1.65rem;
    font-weight: 700;

    letter-spacing: -0.035em;

    line-height: 1;
}

.site-footer__logo:hover {
    color: #69d9e8;
}

.site-footer__tagline {
    max-width: 390px;

    margin: 0 0 30px !important;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.94rem;

    line-height: 1.75;
}

.site-footer__location {
    margin: 0 !important;

    color: #69d9e8;

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}


/* =========================================================
   FOOTER LABEL
   ========================================================= */

.site-footer__label {
    margin: 0 0 22px !important;

    color: rgba(255, 255, 255, 0.38);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}


/* =========================================================
   FOOTER NAV
   ========================================================= */

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}

.site-footer__nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;
    font-weight: 500;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.site-footer__nav a:hover {
    color: #69d9e8;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.site-footer__contact {
    display: flex;
    align-items: center;

    width: fit-content;

    gap: 10px;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;
    font-weight: 500;

    transition: color 160ms ease;
}

.site-footer__contact:hover {
    color: #69d9e8;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.site-footer__bottom {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.38);

    font-size: 0.72rem;
}

.site-footer__back-top {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.72rem;
    font-weight: 600;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.site-footer__back-top:hover {
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER TABLET
   ========================================================= */

@media (max-width: 900px) {

    .site-footer__main {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(130px, 0.6fr)
            minmax(190px, 0.8fr);

        gap: 40px;

        padding: 72px 0 60px;
    }
}


/* =========================================================
   FOOTER MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .site-footer__main {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 46px 30px;

        padding: 68px 0 54px;
    }

    .site-footer__brand {
        grid-column: 1 / 3;

        max-width: 340px;
    }

    .site-footer__logo {
        margin-bottom: 18px;

        font-size: 1.45rem;
    }

    .site-footer__tagline {
        max-width: 330px;

        margin-bottom: 24px !important;

        font-size: 0.88rem;
    }

    .site-footer__bottom {
        min-height: 0;

        padding: 24px 0 28px;

        flex-direction: column;
        align-items: flex-start;

        gap: 14px;
    }
}


/* =========================================================
   FOOTER SMALL PHONE
   ========================================================= */

@media (max-width: 390px) {

    .site-footer__main {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .site-footer__brand {
        grid-column: auto;
    }
}

/* =========================================================
   SINGLE TOUR
   ========================================================= */

body.single-tour {
    background-color: #ffffff;
}


/* =========================================================
   SINGLE TOUR TRANSPARENT HEADER
   ========================================================= */

body.single-tour .site-header {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 50;

    background-color: transparent;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.14);
}

body.single-tour .site-header__logo,
body.single-tour .site-header__logo:hover {
    color: #ffffff;
}

body.single-tour .primary-menu a {
    color: rgba(255, 255, 255, 0.9);

    font-weight: 600;
}

body.single-tour .primary-menu a:hover {
    color: #ffffff;
}


/* =========================================================
   TOUR HERO
   ========================================================= */

.single-tour__hero {
    position: relative;

    width: 100%;

    height: 82svh;
    min-height: 680px;
    max-height: 880px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background-color: #071b25;
}


/* Hero image */

.single-tour__hero-media {
    position: absolute;

    inset: 0;

    z-index: 0;
}

.single-tour__hero-image {
    display: block;

    width: 100%;
    max-width: none;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* Cinematic overlay */

.single-tour__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 17, 26, 0.78) 0%,
            rgba(4, 17, 26, 0.52) 35%,
            rgba(4, 17, 26, 0.16) 72%,
            rgba(4, 17, 26, 0.02) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 17, 26, 0.72) 0%,
            rgba(4, 17, 26, 0.18) 48%,
            rgba(4, 17, 26, 0.08) 100%
        );
}


/* Hero content */

.single-tour__hero-inner {
    position: relative;

    z-index: 2;

    padding-bottom: 82px;
}

.single-tour__hero-content {
    max-width: 800px;
}


/* Back link */

.single-tour__back {
    display: inline-flex;

    margin-bottom: 26px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.82rem;
    font-weight: 600;

    transition:
        color 160ms ease,
        transform 160ms ease;
}

.single-tour__back:hover {
    color: #ffffff;

    transform: translateX(-3px);
}


/* Eyebrow */

.single-tour__eyebrow {
    margin: 0 0 18px !important;

    color: #69d9e8 !important;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


/* Tour title */

.single-tour__title {
    max-width: 850px;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(
        4rem,
        7vw,
        7rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.9;
}


/* Tour excerpt */

.single-tour__intro {
    max-width: 590px;

    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.04rem;

    line-height: 1.7;
}

.single-tour__intro p {
    margin: 0;

    color: inherit;
}


/* Hero button */

.single-tour__button {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 28px;

    border-radius: 999px;

    color: #ffffff;

    background-color: var(--color-accent);

    font-size: 0.9rem;
    font-weight: 700;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.18);

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.single-tour__button:hover {
    color: #ffffff;

    background-color: #0697ad;

    transform: translateY(-2px);

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.24);
}


/* =========================================================
   TOUR BODY
   ========================================================= */

.single-tour__body {
    padding: 110px 0 130px;

    background-color: #ffffff;
}

.single-tour__body-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    align-items: start;

    gap: 90px;
}


/* =========================================================
   TOUR CONTENT
   ========================================================= */

.single-tour__content {
    max-width: 760px;
}

.single-tour__section-label {
    margin: 0 0 16px !important;

    color: var(--color-accent) !important;

    font-size: 0.70rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.single-tour__content > h2 {
    max-width: 720px;

    margin: 0 0 34px;

    color: var(--color-text);

    font-size: clamp(
        3rem,
        5vw,
        4.8rem
    );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.97;
}


/* WordPress editor content */

.single-tour__entry {
    color: var(--color-text-light);

    font-size: 1rem;

    line-height: 1.85;
}

.single-tour__entry p {
    margin: 0 0 24px;
}

.single-tour__entry h2,
.single-tour__entry h3,
.single-tour__entry h4 {
    margin-top: 46px;
    margin-bottom: 18px;

    color: var(--color-text);
}

.single-tour__entry h3 {
    font-size: 1.8rem;

    letter-spacing: -0.035em;
}

.single-tour__entry ul,
.single-tour__entry ol {
    margin: 0 0 26px;

    padding-left: 22px;
}

.single-tour__entry li {
    margin-bottom: 9px;
}

.single-tour__entry img {
    margin: 38px 0;

    border-radius: 16px;
}

/* =========================================================
   SINGLE TOUR — EXPERIENCE VALUE
   ========================================================= */

.single-tour__value {
    margin-top: 64px;

    padding-top: 54px;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.12);
}


.single-tour__value-heading {
    max-width: 620px;

    margin-bottom: 38px;
}


.single-tour__value-heading h2 {
    max-width: 540px;

    margin: 0;

    color:
        var(--color-text);

    font-size:
        clamp(
            2.35rem,
            3.6vw,
            3.45rem
        );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.98;
}


/* =========================================================
   VALUE LIST
   ========================================================= */

.single-tour__value-list {
    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-bottom: none;
}


.single-tour__value-item {
    display: grid;

    grid-template-columns:
        54px minmax(0, 1fr);

    gap: 22px;

    padding:
        30px 0;

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.10);
}

.single-tour__value-item:last-child {
    border-bottom: none;
}


.single-tour__value-number {
    padding-top: 4px;

    color:
        var(--color-accent);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.single-tour__value-copy {
    max-width: 620px;
}


.single-tour__value-copy h3 {
    margin:
        0 0
        10px;

    color:
        var(--color-primary);

    font-size: 1.15rem;
    font-weight: 700;

    letter-spacing: -0.02em;

    line-height: 1.3;
}


.single-tour__value-copy p {
    max-width: 590px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.94rem;

    line-height: 1.75;
}


/* =========================================================
   EXPERIENCE VALUE — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__value {
        margin-top: 48px;

        padding-top: 42px;
    }


    .single-tour__value-heading {
        margin-bottom: 30px;
    }


    .single-tour__value-heading h2 {
        max-width: 360px;

        font-size:
            clamp(
                2.25rem,
                10vw,
                3rem
            );
    }


    .single-tour__value-item {
        grid-template-columns:
            38px minmax(0, 1fr);

        gap: 14px;

        padding:
            24px 0;
    }


    .single-tour__value-copy h3 {
        font-size: 1.05rem;
    }


    .single-tour__value-copy p {
        font-size: 0.9rem;

        line-height: 1.7;
    }

}


/* =========================================================
   BOOKING CARD
   ========================================================= */

.single-tour__booking {
    position: sticky;

    top: 120px;

    padding: 34px;

    border:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-radius: 20px;

    background-color: #f6fafb;

    box-shadow:
        0 18px 50px
        rgba(9, 42, 52, 0.08);
}

.single-tour__booking-label {
    margin: 0 0 14px !important;

    color: var(--color-accent) !important;

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.single-tour__booking h3 {
    margin: 0 0 18px;

    color: var(--color-text);

    font-size: 2rem;
    font-weight: 700;

    letter-spacing: -0.045em;

    line-height: 1.05;
}

.single-tour__booking p {
    margin: 0 0 26px;

    color: var(--color-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* Booking CTA */

.single-tour__booking-button {
    width: 100%;
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 18px;

    padding: 0 20px;

    border-radius: 999px;

    color: #ffffff;

    background-color: var(--color-accent);

    font-size: 0.86rem;
    font-weight: 700;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.single-tour__booking-button:hover {
    color: #ffffff;

    background-color: #066f81;

    transform: translateY(-2px);
}


/* All Tours link */

.single-tour__booking-back {
    display: block;

    text-align: center;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 600;
}

.single-tour__booking-back:hover {
    color: var(--color-accent);
}


/* =========================================================
   SINGLE TOUR TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .single-tour__hero {
        min-height: 640px;
    }

    .single-tour__body {
        padding: 90px 0 110px;
    }

    .single-tour__body-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.55fr);

        gap: 52px;
    }

}


/* =========================================================
   SINGLE TOUR MOBILE
   ========================================================= */

@media (max-width: 767px) {

    body.single-tour .site-header__inner {
        min-height: 72px;
    }

    body.single-tour .site-header__toggle {
        color: #ffffff;
    }


    /* Hero */

    .single-tour__hero {
        height: 82svh;

        min-height: 620px;
        max-height: none;
    }

    .single-tour__hero-image {
        object-position: 58% center;
    }

    .single-tour__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(4, 17, 26, 0.90) 0%,
                rgba(4, 17, 26, 0.62) 45%,
                rgba(4, 17, 26, 0.16) 100%
            );
    }

    .single-tour__hero-inner {
        padding-bottom: 52px;
    }

    .single-tour__back {
        margin-bottom: 20px;

        font-size: 0.76rem;
    }

    .single-tour__eyebrow {
        margin-bottom: 13px !important;

        font-size: 0.68rem;
    }

    .single-tour__title {
        max-width: 390px;

        margin-bottom: 20px;

        font-size: clamp(
            3rem,
            14vw,
            4.4rem
        );
    }

    .single-tour__intro {
        max-width: 400px;

        margin-bottom: 26px;

        font-size: 0.92rem;
    }

    .single-tour__button {
        min-height: 50px;

        padding: 0 22px;

        font-size: 0.84rem;
    }


    /* Body */

    .single-tour__body {
        padding: 76px 0 90px;
    }

    .single-tour__body-grid {
        display: flex;
        flex-direction: column;

        gap: 52px;
    }

    .single-tour__content,
    .single-tour__booking {
        width: 100%;
    }

    .single-tour__content > h2 {
        margin-bottom: 26px;

        font-size: clamp(
            2.6rem,
            11vw,
            3.7rem
        );
    }

    .single-tour__entry {
        font-size: 0.94rem;

        line-height: 1.75;
    }


    /* Booking card no longer sticky */

    .single-tour__booking {
        position: static;

        padding: 28px;

        border-radius: 16px;
    }

}


/* =========================================================
   SINGLE TOUR SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .single-tour__hero {
        min-height: 600px;
    }

    .single-tour__booking {
        padding: 24px;
    }

}

/* =========================================================
   TOUR QUICK FACTS
   ========================================================= */

.single-tour__facts {
    position: relative;

    z-index: 5;

    background-color: #ffffff;

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.10);
}

.single-tour__facts-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.single-tour__fact {
    position: relative;

    min-height: 130px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 26px 30px;

    border-right:
        1px solid
        rgba(12, 54, 67, 0.10);
}

.single-tour__fact:first-child {
    padding-left: 0;
}

.single-tour__fact:last-child {
    border-right: 0;
}

.single-tour__fact span {
    display: block;

    margin-bottom: 8px;

    color: var(--color-accent);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.single-tour__fact strong {
    display: block;

    color: var(--color-text);

    font-size: 1.18rem;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   TOUR SMALL LABEL
   ========================================================= */

.single-tour__mini-label {
    margin: 0 0 14px !important;

    color: var(--color-accent) !important;

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}

/* =========================================================
   SINGLE TOUR — HONEST EXPECTATIONS
   ========================================================= */

.single-tour__expectations {
    margin-top: 72px;

    padding: 46px 38px;

    border-radius: 18px;

    background-color:
        var(--color-background-soft);
}


.single-tour__expectations-heading {
    max-width: 620px;

    margin-bottom: 38px;
}


.single-tour__expectations-heading h2 {
    max-width: 520px;

    margin:
        0 0
        20px;

    color:
        var(--color-text);

    font-size:
        clamp(
            2.35rem,
            3.6vw,
            3.45rem
        );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.98;
}


.single-tour__expectations-heading > p:last-child {
    max-width: 560px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.94rem;

    line-height: 1.75;
}


/* =========================================================
   EXPECTATION GRID
   ========================================================= */

.single-tour__expectations-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__expectation {
    min-width: 0;

    padding:
        28px
        20px
        4px
        0;
}


.single-tour__expectation + .single-tour__expectation {
    padding-left: 20px;

    border-left:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__expectation-label {
    display: block;

    margin-bottom: 14px;

    color:
        var(--color-accent);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.14em;

    line-height: 1.4;
}


.single-tour__expectation h3 {
    margin:
        0 0
        12px;

    color:
        var(--color-primary);

    font-size: 1.08rem;
    font-weight: 700;

    letter-spacing: -0.025em;

    line-height: 1.3;
}


.single-tour__expectation p {
    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.88rem;

    line-height: 1.7;
}


/* =========================================================
   HONEST EXPECTATIONS — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__expectations {
        margin-top: 56px;

        padding:
            34px
            24px;

        border-radius: 16px;
    }


    .single-tour__expectations-heading {
        margin-bottom: 28px;
    }


    .single-tour__expectations-heading h2 {
        max-width: 360px;

        font-size:
            clamp(
                2.15rem,
                10vw,
                2.9rem
            );
    }


    .single-tour__expectations-grid {
        display: block;
    }


    .single-tour__expectation {
        padding:
            24px 0;

        border-bottom:
            1px solid
            rgba(12, 54, 67, 0.10);
    }


    .single-tour__expectation + .single-tour__expectation {
        padding-left: 0;

        border-left: 0;
    }


    .single-tour__expectation:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }

}

/* =========================================================
   SINGLE TOUR — MEETING POINT
   ========================================================= */

.single-tour__meeting {
    margin-top: 64px;

    padding-top: 38px;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__meeting h3 {
    max-width: 520px;

    margin:
        0 0
        12px;

    color:
        var(--color-text);

    font-size:
        clamp(
            1.65rem,
            2.5vw,
            2.2rem
        );

    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.1;
}


.single-tour__meeting-description {
    max-width: 540px;

    margin:
        0 0
        20px;

    color:
        var(--color-text-light);

    font-size: 0.92rem;

    line-height: 1.7;
}


/* Small practical note */

.single-tour__meeting-note {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding:
        9px
        13px;

    border:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-radius: 999px;

    background-color:
        var(--color-background-soft);

    color:
        var(--color-primary);

    font-size: 0.72rem;
    font-weight: 600;

    line-height: 1.4;
}


.single-tour__meeting-note > span:first-child {
    color:
        var(--color-accent);

    font-size: 0.72rem;
}


/* =========================================================
   MEETING POINT — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__meeting {
        margin-top: 52px;

        padding-top: 32px;
    }


    .single-tour__meeting h3 {
        font-size: 1.65rem;
    }


    .single-tour__meeting-description {
        max-width: 100%;

        font-size: 0.9rem;
    }


    .single-tour__meeting-note {
        font-size: 0.7rem;
    }

}


/* =========================================================
   SINGLE TOUR — INCLUDED / WHAT TO BRING
   ========================================================= */

.single-tour__lists {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 46px;

    margin-top: 54px;

    padding-top: 38px;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__list {
    min-width: 0;
}


.single-tour__list
.single-tour__mini-label {
    margin-bottom: 20px;
}


/* =========================================================
   LIST RESET
   ========================================================= */

.single-tour__list ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.single-tour__list li {
    position: relative;

    min-height: 48px;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding:
        13px 0;

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.08);

    color:
        var(--color-text-light);

    font-size: 0.88rem;

    line-height: 1.55;
}


.single-tour__list li:first-child {
    border-top:
        1px solid
        rgba(12, 54, 67, 0.08);
}


/* =========================================================
   INCLUDED ICON
   ========================================================= */

.single-tour__list:first-child
li > span {
    width: 18px;

    flex-shrink: 0;

    color:
        var(--color-accent);

    font-size: 0.82rem;
    font-weight: 700;

    line-height: 1.55;
}


/* =========================================================
   WHAT TO BRING ICON
   ========================================================= */

.single-tour__list:last-child
li > span {
    width: 18px;

    flex-shrink: 0;

    color:
        var(--color-accent);

    font-size: 0.76rem;
    font-weight: 700;

    line-height: 1.6;
}


/* =========================================================
   INCLUDED / BRING — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__lists {
        grid-template-columns: 1fr;

        gap: 42px;

        margin-top: 48px;

        padding-top: 32px;
    }


    .single-tour__list
    .single-tour__mini-label {
        margin-bottom: 16px;
    }


    .single-tour__list li {
        min-height: 46px;

        padding:
            12px 0;

        font-size: 0.88rem;
    }

}

/* =========================================================
   SINGLE TOUR — BEFORE YOU GO
   ========================================================= */

.single-tour__prepare {
    margin-top: 58px;

    padding-top: 48px;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__prepare-heading {
    max-width: 650px;

    margin-bottom: 40px;
}


.single-tour__prepare-heading h2 {
    max-width: 590px;

    margin:
        0 0
        20px;

    color:
        var(--color-text);

    font-size:
        clamp(
            2.35rem,
            3.6vw,
            3.45rem
        );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.98;
}


.single-tour__prepare-heading > p:last-child {
    max-width: 560px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.94rem;

    line-height: 1.75;
}


/* =========================================================
   BEFORE YOU GO — LIST
   ========================================================= */

.single-tour__prepare-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__prepare-item {
    display: grid;

    grid-template-columns:
        38px minmax(0, 1fr);

    gap: 16px;

    padding:
        30px
        28px
        30px
        0;
}


.single-tour__prepare-item:nth-child(even) {
    padding-left: 28px;

    border-left:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__prepare-item:nth-child(n + 3) {
    border-top:
        1px solid
        rgba(12, 54, 67, 0.10);
}


.single-tour__prepare-number {
    padding-top: 3px;

    color:
        var(--color-accent);

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.single-tour__prepare-item h3 {
    margin:
        0 0
        10px;

    color:
        var(--color-primary);

    font-size: 1.05rem;
    font-weight: 700;

    letter-spacing: -0.025em;

    line-height: 1.3;
}


.single-tour__prepare-item p {
    max-width: 420px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.88rem;

    line-height: 1.7;
}


/* =========================================================
   PREPARATION NOTE
   ========================================================= */

.single-tour__prepare-note {
    margin-top: 30px;

    padding:
        22px
        24px;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    border-radius: 12px;

    background-color:
        var(--color-background-soft);
}


.single-tour__prepare-note-label {
    flex-shrink: 0;

    padding-top: 3px;

    color:
        var(--color-accent);

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.14em;
}


.single-tour__prepare-note p {
    max-width: 540px;

    margin: 0;

    color:
        var(--color-primary);

    font-size: 0.88rem;
    font-weight: 600;

    line-height: 1.6;
}


/* =========================================================
   BEFORE YOU GO — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__prepare {
        margin-top: 56px;

        padding-top: 42px;
    }


    .single-tour__prepare-heading {
        margin-bottom: 30px;
    }


    .single-tour__prepare-heading h2 {
    max-width: 350px;

    font-size:
        clamp(
            2rem,
            9vw,
            2.6rem
        );

    line-height: 1;
}


    .single-tour__prepare-list {
        display: block;
    }


    .single-tour__prepare-item,
    .single-tour__prepare-item:nth-child(even) {
        grid-template-columns:
            34px minmax(0, 1fr);

        gap: 12px;

        padding:
            24px 0;

        border-left: 0;

        border-top:
            1px solid
            rgba(12, 54, 67, 0.10);
    }


    .single-tour__prepare-item:first-child {
        border-top: 0;
    }


    .single-tour__prepare-note {
        padding:
            20px;

        flex-direction: column;

        gap: 8px;
    }

}

/* =========================================================
   SINGLE TOUR — FINAL CONVERSION CTA
   ========================================================= */

.single-tour__final-cta {
    width: 100%;
    max-width: 1120px;

    margin:
        84px auto
        0;

    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(6, 121, 140, 0.24) 0%,
            rgba(6, 121, 140, 0) 38%
        ),
        var(--color-primary-dark);

    color: #ffffff;
}


.single-tour__final-cta-inner {
    max-width: 680px;

    padding:
        56px
        52px;
}


/* =========================================================
   CTA EYEBROW
   ========================================================= */

.single-tour__final-cta-eyebrow {
    margin:
        0 0
        18px;

    color:
        #69d9e8;

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    line-height: 1.4;
}


/* =========================================================
   CTA TITLE
   ========================================================= */

.single-tour__final-cta h2 {
    max-width: 600px;

    margin:
        0 0
        22px;

    color:
        #ffffff;

    font-size:
        clamp(
            2.65rem,
            4vw,
            4rem
        );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.96;
}


/* =========================================================
   CTA DESCRIPTION
   ========================================================= */

.single-tour__final-cta-description {
    max-width: 560px;

    margin:
        0 0
        32px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.95rem;

    line-height: 1.75;
}


/* =========================================================
   CTA PRICE
   ========================================================= */

.single-tour__final-cta-price {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 4px;

    margin-bottom: 28px;

    padding-top: 26px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);
}


.single-tour__final-cta-price > span {
    color:
        #69d9e8;

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.14em;
}


.single-tour__final-cta-price strong {
    color:
        #ffffff;

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.7rem
        );

    font-weight: 700;

    letter-spacing: -0.035em;

    line-height: 1.2;
}


.single-tour__final-cta-price small {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.76rem;

    line-height: 1.5;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.single-tour__final-cta-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding:
        0 26px;

    border-radius: 999px;

    background-color:
        var(--color-accent);

    color:
        #ffffff;

    font-size: 0.86rem;
    font-weight: 700;

    transition:
        transform 180ms ease,
        background-color 180ms ease;
}


.single-tour__final-cta-button:hover {
    color: #ffffff;

    background-color: #056f81;

    transform:
        translateY(-2px);
}


.single-tour__final-cta-button span {
    transition:
        transform 180ms ease;
}


.single-tour__final-cta-button:hover span {
    transform:
        translateX(3px);
}


/* =========================================================
   CTA NOTE
   ========================================================= */

.single-tour__final-cta-note {
    max-width: 480px;

    margin:
        18px 0
        0;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.72rem;

    line-height: 1.6;
}


/* =========================================================
   FINAL CTA — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__final-cta {
        margin-top: 56px;

        border-radius: 16px;
    }


    .single-tour__final-cta-inner {
        padding:
            40px
            26px;
    }


    .single-tour__final-cta h2 {
        max-width: 390px;

        font-size:
            clamp(
                2.4rem,
                11vw,
                3.2rem
            );
    }


    .single-tour__final-cta-description {
        font-size: 0.9rem;

        line-height: 1.7;
    }


    .single-tour__final-cta-button {
        width: 100%;

        padding:
            0 20px;
    }

}


/* =========================================================
   BOOKING CARD PRICE
   ========================================================= */

.single-tour__booking-price {
    margin-bottom: 24px;

    padding-bottom: 22px;

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.10);
}

.single-tour__booking-price span {
    display: block;

    margin-bottom: 6px;

    color: var(--color-accent);

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.single-tour__booking-price strong {
    display: block;

    color: var(--color-primary);

    font-size: 1.4rem;
    font-weight: 700;

    letter-spacing: -0.035em;
}


/* =========================================================
   TOUR DETAILS TABLET
   ========================================================= */

@media (max-width: 900px) {

    .single-tour__facts-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .single-tour__fact {
        border-bottom:
            1px solid
            rgba(12, 54, 67, 0.10);
    }

    .single-tour__fact:nth-child(2) {
        border-right: 0;
    }

    .single-tour__fact:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

}


/* =========================================================
   TOUR DETAILS MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__facts-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .single-tour__fact {
        min-height: 105px;

        padding: 20px 16px;
    }

    .single-tour__fact:first-child {
        padding-left: 16px;
    }

    .single-tour__fact strong {
        font-size: 1rem;
    }

    .single-tour__meeting {
        margin-top: 48px;

        padding-top: 30px;
    }

    .single-tour__lists {
        grid-template-columns: 1fr;

        gap: 42px;

        margin-top: 48px;

        padding-top: 30px;
    }

}


/* =========================================================
   TOUR DETAILS SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .single-tour__facts-grid {
        grid-template-columns: 1fr;
    }

    .single-tour__fact {
        min-height: 90px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(12, 54, 67, 0.10);
    }

    .single-tour__fact:nth-last-child(-n + 2) {
        border-bottom:
            1px solid
            rgba(12, 54, 67, 0.10);
    }

    .single-tour__fact:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   TOUR ARCHIVE HERO
   ========================================================= */

.tour-archive-hero {
    position: relative;

    padding: 190px 0 110px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(7, 135, 156, 0.20),
            transparent 35%
        ),
        #061923;

    color: #ffffff;
}


.tour-archive-hero__inner {
    position: relative;

    max-width: 900px;
}


.tour-archive-hero__eyebrow {
    margin: 0 0 20px;

    color: #69d9e8;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.tour-archive-hero__title {
    max-width: 900px;

    margin: 0 0 30px;

    color: #ffffff;

    font-size: clamp(
        4rem,
        7vw,
        7rem
    );

    font-weight: 700;

    letter-spacing: -0.065em;

    line-height: 0.91;
}


.tour-archive-hero__title span {
    display: block;
}


.tour-archive-hero__description {
    max-width: 580px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1rem;

    line-height: 1.75;
}



/* =========================================================
   TOUR ARCHIVE
   ========================================================= */

.tour-archive {
    padding: 110px 0 130px;

    background-color: #ffffff;
}


.tour-archive__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.6fr);

    align-items: end;

    gap: 60px;

    margin-bottom: 58px;
}


.tour-archive__eyebrow {
    margin: 0 0 14px;

    color: var(--color-accent);

    font-size: 0.70rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}


.tour-archive__title {
    margin: 0;

    color: var(--color-text);

    font-size: clamp(
        2.8rem,
        5vw,
        4.6rem
    );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.98;
}


.tour-archive__intro {
    max-width: 480px;

    margin: 0;

    color: var(--color-text-light);

    font-size: 0.95rem;

    line-height: 1.75;
}



/* =========================================================
   ARCHIVE TOUR CARD META
   ========================================================= */

.tour-card__meta {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;

    margin: 24px 0;

    padding: 18px 0;

    border-top:
        1px solid
        rgba(12, 54, 67, 0.08);

    border-bottom:
        1px solid
        rgba(12, 54, 67, 0.08);
}


.tour-card__meta span {
    display: flex;
    flex-direction: column;

    gap: 5px;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    line-height: 1.4;
}


.tour-card__meta small {
    color: var(--color-accent);

    font-size: 0.54rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.tour-card__meta .tour-card__meta-note {
    margin-top: 2px;
    color: var(--color-text-light);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
}



/* =========================================================
   TOUR ARCHIVE PAGINATION
   ========================================================= */

.tour-archive__pagination {
    margin-top: 70px;

    padding-top: 36px;

    border-top:
        1px solid
        var(--color-border);
}


.tour-archive__pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}


.tour-archive__pagination .page-numbers {
    min-width: 42px;
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border:
        1px solid
        var(--color-border);

    border-radius: 999px;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 600;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}


.tour-archive__pagination .page-numbers:hover,
.tour-archive__pagination .page-numbers.current {
    border-color: var(--color-accent);

    background-color: var(--color-accent);

    color: #ffffff;
}



/* =========================================================
   EMPTY ARCHIVE
   ========================================================= */

.tour-archive__empty {
    padding: 80px 0;

    text-align: center;
}


.tour-archive__empty h2 {
    margin-bottom: 14px;
}


.tour-archive__empty p {
    color: var(--color-text-light);
}



/* =========================================================
   TOUR ARCHIVE TABLET
   ========================================================= */

@media (max-width: 900px) {

    .tour-archive-hero {
        padding:
            160px 0
            90px;
    }


    .tour-archive {
        padding:
            90px 0
            110px;
    }


    .tour-archive__heading {
        gap: 40px;
    }

}



/* =========================================================
   TOUR ARCHIVE MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .tour-archive-hero {
        padding:
            140px 0
            72px;
    }


    .tour-archive-hero__eyebrow {
        margin-bottom: 14px;

        font-size: 0.66rem;
    }


    .tour-archive-hero__title {
        max-width: 420px;

        margin-bottom: 22px;

        font-size: clamp(
            3rem,
            14vw,
            4.4rem
        );
    }


    .tour-archive-hero__description {
        max-width: 420px;

        font-size: 0.91rem;

        line-height: 1.65;
    }


    .tour-archive {
        padding:
            76px 0
            90px;
    }


    .tour-archive__heading {
        display: block;

        margin-bottom: 38px;
    }


    .tour-archive__title {
        margin-bottom: 18px;

        font-size: clamp(
            2.5rem,
            11vw,
            3.5rem
        );
    }


    .tour-archive__intro {
        max-width: 420px;

        font-size: 0.9rem;
    }


    .tour-card__meta {
        margin:
            20px 0;
    }


    .tour-archive__pagination {
        margin-top: 50px;
    }

}

/* =========================================================
   STANDARD PAGE
   ========================================================= */

.standard-page {
    background-color: #ffffff;
}


/* =========================================================
   STANDARD PAGE HERO
   ========================================================= */

.standard-page__hero {
    position: relative;

    padding: 120px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(7, 135, 156, 0.09),
            transparent 32%
        ),
        #f5f8f9;
}


.standard-page__back {
    display: inline-flex;

    margin-bottom: 42px;

    color: var(--color-text-light);

    font-size: 0.78rem;
    font-weight: 600;

    transition:
        color 180ms ease,
        transform 180ms ease;
}


.standard-page__back:hover {
    color: var(--color-accent);

    transform: translateX(-3px);
}


.standard-page__eyebrow {
    margin: 0 0 16px;

    color: var(--color-accent);

    font-size: 0.70rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.standard-page__title {
    max-width: 900px;

    margin: 0;

    color: var(--color-text);

    font-size: clamp(
        3.8rem,
        7vw,
        6.5rem
    );

    font-weight: 700;

    letter-spacing: -0.065em;

    line-height: 0.93;
}


.standard-page__intro {
    max-width: 650px;

    margin-top: 28px;

    color: var(--color-text-light);

    font-size: 1rem;

    line-height: 1.75;
}


.standard-page__intro p {
    margin: 0;
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.standard-page__featured {
    position: relative;

    padding-top: 60px;

    background-color: #ffffff;
}


.standard-page__featured-inner {
    overflow: hidden;

    border-radius: 20px;
}


.standard-page__featured-image {
    display: block;

    width: 100%;
    height: clamp(
        360px,
        48vw,
        620px
    );

    object-fit: cover;
}


/* =========================================================
   PAGE BODY
   ========================================================= */

.standard-page__body {
    padding: 90px 0 120px;
}


.standard-page__content {
    width: min(
        100%,
        780px
    );

    margin-inline: auto;

    color: var(--color-text-light);

    font-size: 1rem;

    line-height: 1.85;
}


.standard-page__content > *:first-child {
    margin-top: 0;
}


.standard-page__content > *:last-child {
    margin-bottom: 0;
}


.standard-page__content p {
    margin-bottom: 26px;
}


.standard-page__content h2,
.standard-page__content h3,
.standard-page__content h4 {
    color: var(--color-text);

    letter-spacing: -0.04em;
}


.standard-page__content h2 {
    margin:
        64px 0
        24px;

    font-size: clamp(
        2.2rem,
        4vw,
        3.2rem
    );

    line-height: 1.05;
}


.standard-page__content h3 {
    margin:
        46px 0
        18px;

    font-size: 1.75rem;

    line-height: 1.15;
}


.standard-page__content h4 {
    margin:
        36px 0
        16px;

    font-size: 1.25rem;
}


.standard-page__content ul,
.standard-page__content ol {
    margin:
        0 0
        30px;

    padding-left: 24px;
}


.standard-page__content li {
    margin-bottom: 10px;
}


.standard-page__content a {
    color: var(--color-accent);

    text-decoration: underline;

    text-underline-offset: 3px;
}


.standard-page__content blockquote {
    margin:
        44px 0;

    padding:
        8px 0
        8px 28px;

    border-left:
        3px solid
        var(--color-accent);

    color: var(--color-text);

    font-size: 1.25rem;
    font-weight: 500;

    line-height: 1.55;
}


.standard-page__content img {
    margin:
        40px auto;

    border-radius: 16px;
}



/* =========================================================
   STANDARD PAGE TABLET
   ========================================================= */

@media (max-width: 900px) {

    .standard-page__hero {
        padding:
            100px 0
            78px;
    }


    .standard-page__body {
        padding:
            78px 0
            100px;
    }

}



/* =========================================================
   STANDARD PAGE MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .standard-page__hero {
        padding:
            72px 0
            62px;
    }


    .standard-page__back {
        margin-bottom: 34px;

        font-size: 0.74rem;
    }


    .standard-page__eyebrow {
        margin-bottom: 12px;

        font-size: 0.64rem;
    }


    .standard-page__title {
        max-width: 420px;

        font-size: clamp(
            3rem,
            14vw,
            4.4rem
        );
    }


    .standard-page__intro {
        margin-top: 22px;

        font-size: 0.92rem;

        line-height: 1.65;
    }


    .standard-page__featured {
        padding-top: 32px;
    }


    .standard-page__featured-inner {
        border-radius: 14px;
    }


    .standard-page__featured-image {
        height: 62vw;

        min-height: 240px;
        max-height: 420px;
    }


    .standard-page__body {
        padding:
            64px 0
            82px;
    }


    .standard-page__content {
        font-size: 0.94rem;

        line-height: 1.78;
    }


    .standard-page__content h2 {
        margin-top: 50px;
    }


    .standard-page__content blockquote {
        margin: 34px 0;

        padding-left: 20px;

        font-size: 1.1rem;
    }

}

/* =========================================================
   404 ERROR PAGE
   ========================================================= */

.error-page {
    background-color: #ffffff;
}


.error-page__section {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    padding: 130px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(7, 135, 156, 0.12),
            transparent 32%
        ),
        #f5f8f9;
}


.error-page__inner {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.7fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   HUGE 404 BACKGROUND NUMBER
   ========================================================= */

.error-page__number {
    position: absolute;

    top: 50%;
    left: -40px;

    z-index: 0;

    margin: 0;

    color: rgba(11, 61, 74, 0.035);

    font-size: clamp(
        16rem,
        32vw,
        34rem
    );

    font-weight: 800;

    letter-spacing: -0.10em;

    line-height: 0.7;

    transform: translateY(-50%);

    user-select: none;

    pointer-events: none;
}


/* =========================================================
   404 CONTENT
   ========================================================= */

.error-page__content {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


.error-page__eyebrow {
    margin: 0 0 18px;

    color: var(--color-accent);

    font-size: 0.70rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.error-page__title {
    max-width: 720px;

    margin: 0 0 28px;

    color: var(--color-text);

    font-size: clamp(
        3.8rem,
        6.5vw,
        6.5rem
    );

    font-weight: 700;

    letter-spacing: -0.065em;

    line-height: 0.92;
}


.error-page__title span {
    display: block;
}


.error-page__description {
    max-width: 510px;

    margin: 0 0 36px;

    color: var(--color-text-light);

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================================================
   404 ACTIONS
   ========================================================= */

.error-page__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;
}


.error-page__button {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 28px;

    border-radius: 999px;

    color: #ffffff;

    background-color: var(--color-accent);

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}


.error-page__button:hover {
    color: #ffffff;

    background-color: #066f81;

    transform: translateY(-2px);

    box-shadow:
        0 14px 34px
        rgba(7, 61, 74, 0.14);
}


.error-page__link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--color-primary);

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.error-page__link:hover {
    color: var(--color-accent);

    gap: 14px;
}


/* =========================================================
   404 DECORATIVE VISUAL
   ========================================================= */

.error-page__visual {
    position: relative;

    z-index: 1;

    min-height: 420px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #d9eef2 0%,
            #b9dfe5 45%,
            #5f9eab 46%,
            #0b5669 100%
        );

    box-shadow:
        0 30px 70px
        rgba(7, 61, 74, 0.12);
}


.error-page__sun {
    position: absolute;

    top: 70px;
    right: 70px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.65);

    box-shadow:
        0 0 80px
        rgba(255, 255, 255, 0.65);
}


.error-page__wave {
    position: absolute;

    left: -10%;
    right: -10%;

    height: 80px;

    border-radius: 50%;

    border-top:
        2px solid
        rgba(255, 255, 255, 0.38);
}


.error-page__wave--one {
    bottom: 115px;
}


.error-page__wave--two {
    bottom: 75px;

    opacity: 0.6;
}


.error-page__wave--three {
    bottom: 35px;

    opacity: 0.35;
}


/* =========================================================
   404 TABLET
   ========================================================= */

@media (max-width: 900px) {

    .error-page__section {
        padding:
            100px 0;
    }


    .error-page__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, 0.6fr);

        gap: 50px;
    }


    .error-page__visual {
        min-height: 360px;
    }

}


/* =========================================================
   404 MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .error-page__section {
        min-height: 0;

        padding:
            80px 0
            90px;
    }


    .error-page__inner {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 54px;
    }


    .error-page__number {
        top: 100px;
        left: -15px;

        font-size: 14rem;

        transform: none;
    }


    .error-page__eyebrow {
        margin-bottom: 14px;

        font-size: 0.64rem;
    }


    .error-page__title {
        max-width: 410px;

        margin-bottom: 22px;

        font-size: clamp(
            3rem,
            13vw,
            4.2rem
        );
    }


    .error-page__description {
        max-width: 400px;

        margin-bottom: 30px;

        font-size: 0.92rem;

        line-height: 1.65;
    }


    .error-page__button {
        min-height: 52px;

        padding:
            0 22px;

        font-size: 0.84rem;
    }


    .error-page__link {
        font-size: 0.84rem;
    }


    .error-page__visual {
        min-height: 310px;

        border-radius: 18px;
    }


    .error-page__sun {
        top: 50px;
        right: 45px;

        width: 70px;
        height: 70px;
    }

}


/* =========================================================
   404 SMALL PHONE
   ========================================================= */

@media (max-width: 390px) {

    .error-page__actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }


    .error-page__visual {
        min-height: 270px;
    }

}

/* =========================================================
   ACCESSIBILITY UTILITY
   ========================================================= */

.screen-reader-text {
    position: absolute !important;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);

    white-space: nowrap;

    border: 0;
}

.screen-reader-text:focus {
    position: fixed !important;

    top: 10px;
    left: 10px;

    z-index: 100000;

    width: auto;
    height: auto;

    padding: 12px 18px;

    clip: auto;
    clip-path: none;

    background-color: #ffffff;
    color: var(--color-primary);

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.18);
}

/* =========================================================
   SEARCH PAGE
   ========================================================= */

.search-page {
    background-color: #ffffff;
}


/* =========================================================
   SEARCH HERO
   ========================================================= */

.search-page__hero {
    padding:
        150px 0
        90px;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(7, 135, 156, 0.10),
            transparent 34%
        ),
        #f5f8f9;
}


.search-page__eyebrow {
    margin: 0 0 16px;

    color: var(--color-accent);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.search-page__title {
    max-width: 900px;

    margin:
        0 0
        42px;

    color: var(--color-text);

    font-size: clamp(
        3.4rem,
        6vw,
        5.8rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.96;
}


.search-page__title span {
    display: block;

    margin-top: 8px;

    color: var(--color-text-light);

    font-size: 0.42em;
    font-weight: 500;

    letter-spacing: -0.03em;

    line-height: 1.2;
}


/* =========================================================
   SEARCH FORM
   ========================================================= */

.search-page__form {
    max-width: 720px;

    display: flex;

    gap: 10px;

    padding: 7px;

    border:
        1px solid
        rgba(12, 54, 67, 0.12);

    border-radius: 999px;

    background-color: #ffffff;

    box-shadow:
        0 12px 34px
        rgba(7, 61, 74, 0.06);
}


.search-page__input {
    min-width: 0;
    flex: 1;

    min-height: 54px;

    padding:
        0 22px;

    border: 0;
    outline: 0;

    border-radius: 999px;

    color: var(--color-text);

    background: transparent;

    font: inherit;
}


.search-page__input::placeholder {
    color: #98a2ab;
}


.search-page__button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding:
        0 26px;

    border: 0;
    border-radius: 999px;

    color: #ffffff;

    background-color: var(--color-accent);

    font-size: 0.86rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}


.search-page__button:hover {
    background-color: #066f81;

    transform: translateY(-1px);
}


/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.search-page__results {
    padding:
        100px 0
        130px;
}


.search-page__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   SEARCH CARD
   ========================================================= */

.search-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-radius: 18px;

    background-color: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(9, 42, 52, 0.05);

    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}


.search-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 44px
        rgba(9, 42, 52, 0.10);
}


.search-card__image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background-color:
        var(--color-background-soft);
}


.search-card__thumbnail {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms ease;
}


.search-card:hover
.search-card__thumbnail {
    transform: scale(1.035);
}


.search-card__content {
    padding:
        26px
        26px
        28px;
}


.search-card__type {
    margin:
        0 0
        10px;

    color: var(--color-accent);

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.search-card__title {
    margin:
        0 0
        14px;

    color: var(--color-text);

    font-size: 1.6rem;
    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.08;
}


.search-card__title a:hover {
    color: var(--color-accent);
}


.search-card__excerpt {
    margin-bottom: 22px;

    color: var(--color-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


.search-card__excerpt p {
    margin: 0;
}


.search-card__link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.search-card__link:hover {
    color: var(--color-accent);

    gap: 13px;
}


/* =========================================================
   SEARCH PAGINATION
   ========================================================= */

.search-page__pagination {
    margin-top: 70px;

    padding-top: 36px;

    border-top:
        1px solid
        var(--color-border);
}


.search-page__pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;
}


.search-page__pagination .page-numbers {
    min-width: 42px;
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 14px;

    border:
        1px solid
        var(--color-border);

    border-radius: 999px;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 600;
}


.search-page__pagination .page-numbers.current,
.search-page__pagination .page-numbers:hover {
    border-color: var(--color-accent);

    background-color: var(--color-accent);

    color: #ffffff;
}


/* =========================================================
   EMPTY SEARCH
   ========================================================= */

.search-page__empty {
    max-width: 650px;

    margin:
        40px auto;

    text-align: center;
}


.search-page__empty-label {
    margin:
        0 0
        14px;

    color: var(--color-accent);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}


.search-page__empty h2 {
    margin-bottom: 18px;

    font-size: clamp(
        2.8rem,
        5vw,
        4rem
    );

    letter-spacing: -0.05em;
}


.search-page__empty > p:not(.search-page__empty-label) {
    max-width: 480px;

    margin:
        0 auto
        30px;

    color: var(--color-text-light);

    line-height: 1.75;
}


.search-page__empty-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding:
        0 24px;

    border-radius: 999px;

    color: #ffffff;

    background-color: var(--color-accent);

    font-size: 0.84rem;
    font-weight: 700;
}


/* =========================================================
   SEARCH TABLET
   ========================================================= */

@media (max-width: 900px) {

    .search-page__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   SEARCH MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .search-page__hero {
        padding:
            92px 0
            68px;
    }


    .search-page__title {
        margin-bottom: 30px;

        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );
    }


    .search-page__form {
        max-width: none;
    }


    .search-page__results {
        padding:
            72px 0
            90px;
    }


    .search-page__grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


/* =========================================================
   SEARCH SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .search-page__form {
        display: block;

        padding: 6px;

        border-radius: 18px;
    }


    .search-page__input {
        width: 100%;

        min-height: 50px;
    }


    .search-page__button {
        width: 100%;

        min-height: 50px;

        margin-top: 5px;
    }

}

/* =========================================================
   GENERIC CONTENT ARCHIVE
   ========================================================= */

.content-archive {
    background-color: #ffffff;
}


/* =========================================================
   ARCHIVE HERO
   ========================================================= */

.content-archive__hero {
    padding:
        150px 0
        90px;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(7, 135, 156, 0.10),
            transparent 34%
        ),
        #f5f8f9;
}


.content-archive__eyebrow {
    margin: 0 0 16px;

    color: var(--color-accent);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.content-archive__title {
    max-width: 900px;

    margin: 0;

    color: var(--color-text);

    font-size: clamp(
        3.6rem,
        6vw,
        5.8rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.96;
}


.content-archive__description {
    max-width: 620px;

    margin-top: 26px;

    color: var(--color-text-light);

    line-height: 1.75;
}


.content-archive__description p {
    margin: 0;
}


/* =========================================================
   ARCHIVE BODY
   ========================================================= */

.content-archive__body {
    padding:
        100px 0
        130px;
}


.content-archive__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   CONTENT CARD
   ========================================================= */

.content-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(12, 54, 67, 0.10);

    border-radius: 18px;

    background-color: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(9, 42, 52, 0.05);

    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}


.content-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 44px
        rgba(9, 42, 52, 0.10);
}


.content-card__image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background-color:
        var(--color-background-soft);
}


.content-card__thumbnail {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 500ms ease;
}


.content-card:hover
.content-card__thumbnail {
    transform: scale(1.035);
}


.content-card__content {
    padding:
        26px
        26px
        28px;
}


.content-card__meta {
    margin:
        0 0
        10px;

    color: var(--color-accent);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.content-card__title {
    margin:
        0 0
        14px;

    color: var(--color-text);

    font-size: 1.65rem;
    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.08;
}


.content-card__title a:hover {
    color: var(--color-accent);
}


.content-card__excerpt {
    margin-bottom: 22px;

    color: var(--color-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


.content-card__excerpt p {
    margin: 0;
}


.content-card__link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.content-card__link:hover {
    color: var(--color-accent);

    gap: 13px;
}


/* =========================================================
   ARCHIVE PAGINATION
   ========================================================= */

.content-archive__pagination {
    margin-top: 70px;

    padding-top: 36px;

    border-top:
        1px solid
        var(--color-border);
}


.content-archive__pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;
}


.content-archive__pagination .page-numbers {
    min-width: 42px;
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 14px;

    border:
        1px solid
        var(--color-border);

    border-radius: 999px;

    color: var(--color-primary);

    font-size: 0.82rem;
    font-weight: 600;
}


.content-archive__pagination
.page-numbers.current,

.content-archive__pagination
.page-numbers:hover {

    border-color:
        var(--color-accent);

    background-color:
        var(--color-accent);

    color: #ffffff;
}


/* =========================================================
   EMPTY ARCHIVE
   ========================================================= */

.content-archive__empty {
    max-width: 620px;

    margin:
        30px auto;

    text-align: center;
}


.content-archive__empty-label {
    margin-bottom: 12px;

    color: var(--color-accent);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.20em;
}


.content-archive__empty h2 {
    margin-bottom: 16px;

    font-size: clamp(
        2.5rem,
        5vw,
        4rem
    );

    letter-spacing: -0.05em;
}


.content-archive__empty > p:not(
    .content-archive__empty-label
) {
    color: var(--color-text-light);

    line-height: 1.75;
}


.content-archive__empty a {
    display: inline-block;

    margin-top: 18px;

    color: var(--color-primary);

    font-weight: 700;
}


/* =========================================================
   ARCHIVE TABLET
   ========================================================= */

@media (max-width: 900px) {

    .content-archive__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   ARCHIVE MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .content-archive__hero {
        padding:
            92px 0
            68px;
    }


    .content-archive__title {
        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );
    }


    .content-archive__body {
        padding:
            72px 0
            90px;
    }


    .content-archive__grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}

/* =========================================================
   SINGLE ARTICLE
   ========================================================= */

.article-single {
    background-color: #ffffff;
}


/* =========================================================
   ARTICLE HERO
   ========================================================= */

.article-single__hero {
    position: relative;

    padding:
        150px 0
        100px;

    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(7, 135, 156, 0.09),
            transparent 34%
        ),
        #f5f8f9;
}


.article-single__hero-inner {
    max-width: 1000px;
}


.article-single__back {
    display: inline-flex;

    margin-bottom: 44px;

    color: var(--color-text-light);

    font-size: 0.76rem;
    font-weight: 600;

    transition:
        color 180ms ease,
        transform 180ms ease;
}


.article-single__back:hover {
    color: var(--color-accent);

    transform: translateX(-3px);
}


.article-single__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 18px;

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.article-single__category {
    color: var(--color-accent);
}


.article-single__date {
    position: relative;

    padding-left: 18px;

    color: var(--color-text-light);
}


.article-single__date::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background-color: var(--color-border);

    transform: translateY(-50%);
}


.article-single__title {
    max-width: 980px;

    margin: 0;

    color: var(--color-text);

    font-size: clamp(
        3.6rem,
        7vw,
        6.4rem
    );

    font-weight: 700;

    letter-spacing: -0.065em;

    line-height: 0.94;
}


.article-single__excerpt {
    max-width: 700px;

    margin-top: 30px;

    color: var(--color-text-light);

    font-size: 1.05rem;

    line-height: 1.75;
}


.article-single__excerpt p {
    margin: 0;
}


/* =========================================================
   ARTICLE FEATURED IMAGE
   ========================================================= */

.article-single__featured {
    padding-top: 60px;

    background-color: #ffffff;
}


.article-single__featured-inner {
    overflow: hidden;

    border-radius: 22px;
}


.article-single__image {
    display: block;

    width: 100%;

    height: clamp(
        420px,
        52vw,
        680px
    );

    object-fit: cover;
}


/* =========================================================
   ARTICLE BODY
   ========================================================= */

.article-single__body {
    padding:
        90px 0
        120px;
}


.article-single__content {
    width: min(
        100%,
        780px
    );

    margin-inline: auto;

    color: var(--color-text-light);

    font-size: 1rem;

    line-height: 1.85;
}


.article-single__content > *:first-child {
    margin-top: 0;
}


.article-single__content > *:last-child {
    margin-bottom: 0;
}


.article-single__content p {
    margin:
        0 0
        27px;
}


.article-single__content h2,
.article-single__content h3,
.article-single__content h4 {
    color: var(--color-text);

    letter-spacing: -0.04em;
}


.article-single__content h2 {
    margin:
        64px 0
        24px;

    font-size: clamp(
        2.3rem,
        4vw,
        3.3rem
    );

    line-height: 1.05;
}


.article-single__content h3 {
    margin:
        48px 0
        20px;

    font-size: 1.8rem;

    line-height: 1.12;
}


.article-single__content h4 {
    margin:
        36px 0
        16px;

    font-size: 1.25rem;
}


.article-single__content ul,
.article-single__content ol {
    margin:
        0 0
        30px;

    padding-left: 24px;
}


.article-single__content li {
    margin-bottom: 10px;
}


.article-single__content a {
    color: var(--color-accent);

    text-decoration: underline;

    text-underline-offset: 3px;
}


.article-single__content blockquote {
    margin:
        46px 0;

    padding:
        8px 0
        8px 28px;

    border-left:
        3px solid
        var(--color-accent);

    color: var(--color-text);

    font-size: 1.3rem;
    font-weight: 500;

    line-height: 1.55;
}


.article-single__content img {
    height: auto;

    margin:
        42px auto;

    border-radius: 16px;
}


.article-single__content figure {
    margin:
        42px 0;
}


.article-single__content figcaption {
    margin-top: 10px;

    color: var(--color-text-light);

    font-size: 0.76rem;

    text-align: center;
}


/* =========================================================
   ARTICLE TAGS
   ========================================================= */

.article-single__tags {
    width: min(
        100%,
        780px
    );

    display: flex;
    align-items: flex-start;

    gap: 24px;

    margin:
        70px auto
        0;

    padding-top: 30px;

    border-top:
        1px solid
        var(--color-border);
}


.article-single__tags-label {
    padding-top: 8px;

    color: var(--color-text-light);

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.article-single__tags-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.article-single__tags-list a {
    min-height: 34px;

    display: inline-flex;
    align-items: center;

    padding:
        0 14px;

    border:
        1px solid
        var(--color-border);

    border-radius: 999px;

    color: var(--color-primary);

    font-size: 0.74rem;
    font-weight: 600;

    transition:
        border-color 180ms ease,
        color 180ms ease;
}


.article-single__tags-list a:hover {
    border-color: var(--color-accent);

    color: var(--color-accent);
}


/* =========================================================
   ARTICLE NAVIGATION
   ========================================================= */

.article-single__navigation {
    width: min(
        100%,
        1000px
    );

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 50px;

    margin:
        90px auto
        0;

    padding-top: 42px;

    border-top:
        1px solid
        var(--color-border);
}


.article-single__navigation span {
    display: block;

    margin-bottom: 10px;

    color: var(--color-accent);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.article-single__navigation a {
    color: var(--color-text);

    font-size: 1.35rem;
    font-weight: 700;

    letter-spacing: -0.035em;

    line-height: 1.2;

    transition:
        color 180ms ease;
}


.article-single__navigation a:hover {
    color: var(--color-accent);
}


.article-single__next {
    text-align: right;
}


/* =========================================================
   SINGLE ARTICLE TABLET
   ========================================================= */

@media (max-width: 900px) {

    .article-single__hero {
        padding:
            120px 0
            82px;
    }


    .article-single__body {
        padding:
            80px 0
            100px;
    }

}


/* =========================================================
   SINGLE ARTICLE MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .article-single__hero {
        padding:
            82px 0
            64px;
    }


    .article-single__back {
        margin-bottom: 34px;
    }


    .article-single__meta {
        gap: 12px;

        margin-bottom: 14px;

        font-size: 0.60rem;
    }


    .article-single__title {
        font-size: clamp(
            3rem,
            13vw,
            4.3rem
        );
    }


    .article-single__excerpt {
        margin-top: 22px;

        font-size: 0.94rem;

        line-height: 1.65;
    }


    .article-single__featured {
        padding-top: 30px;
    }


    .article-single__featured-inner {
        border-radius: 14px;
    }


    .article-single__image {
        height: 62vw;

        min-height: 250px;
        max-height: 420px;
    }


    .article-single__body {
        padding:
            64px 0
            82px;
    }


    .article-single__content {
        font-size: 0.94rem;

        line-height: 1.78;
    }


    .article-single__content h2 {
        margin-top: 50px;
    }


    .article-single__tags {
        margin-top: 55px;
    }


    .article-single__navigation {
        grid-template-columns: 1fr;

        gap: 34px;

        margin-top: 65px;
    }


    .article-single__next {
        text-align: left;
    }

}

/* =========================================================
   ACCESSIBILITY CONTRAST IMPROVEMENTS
   ========================================================= */

/*
 * Slightly darker turquoise.
 *
 * Keeps the Boatman Lovina visual identity,
 * while providing better contrast on white
 * backgrounds and with white button text.
 */



/* Footer secondary text */

.site-footer__tagline,
.site-footer__location,
.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.72);
}


/* Footer section labels */

.site-footer__label {
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #69d9e8;
    outline-offset: 4px;
}


.site-header__toggle:focus-visible {
    outline: 3px solid #69d9e8;
    outline-offset: 5px;
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
    position: relative;

    background-color: #061923;

    color: #ffffff;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}


.trust-bar__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.trust-bar__item {
    position: relative;

    min-width: 0;
    min-height: 126px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding:
        30px
        28px;
}


.trust-bar__item:not(:last-child) {
    border-right:
        1px solid
        rgba(255, 255, 255, 0.10);
}


.trust-bar__number {
    flex: 0 0 auto;

    color: rgba(105, 217, 232, 0.65);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.trust-bar__item > div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


.trust-bar__item strong {
    color: #ffffff;

    font-size: 0.92rem;
    font-weight: 700;

    line-height: 1.2;
}


.trust-bar__item div > span {
    color: rgba(255, 255, 255, 0.66);

    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.02em;

    line-height: 1.4;
}


/* =========================================================
   TRUST BAR TABLET
   ========================================================= */

@media (max-width: 900px) {

    .trust-bar__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .trust-bar__item:nth-child(2) {
        border-right: 0;
    }


    .trust-bar__item:nth-child(-n + 2) {
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.10);
    }

}


/* =========================================================
   TRUST BAR MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .trust-bar__item {
        min-height: 104px;

        gap: 13px;

        padding:
            24px
            16px;
    }


    .trust-bar__number {
        font-size: 0.52rem;
    }


    .trust-bar__item strong {
        font-size: 0.82rem;
    }


    .trust-bar__item div > span {
        font-size: 0.66rem;
    }

}


/* =========================================================
   TRUST BAR SMALL PHONE
   ========================================================= */

@media (max-width: 370px) {

    .trust-bar__grid {
        grid-template-columns: 1fr;
    }


    .trust-bar__item {
        min-height: 88px;

        border-right: 0 !important;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.10);
    }


    .trust-bar__item:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   WHY BOATMAN LOVINA
   ========================================================= */

.why-us {
    position: relative;

    padding:
        120px 0
        130px;

    overflow: hidden;

    background-color: #f4f7f8;
}


.why-us::before {
    content: "";

    position: absolute;

    top: -220px;
    left: -220px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(6, 121, 140, 0.08),
            transparent 68%
        );

    pointer-events: none;
}


.why-us__grid {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    align-items: start;

    gap: 100px;
}


/* =========================================================
   WHY INTRO
   ========================================================= */

.why-us__intro {
    position: sticky;

    top: 120px;

    max-width: 500px;
}


.why-us__eyebrow {
    margin:
        0 0
        18px;

    color: var(--color-accent);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.why-us__title {
    margin:
        0 0
        28px;

    color: var(--color-text);

    font-size: clamp(
        3.2rem,
        5vw,
        5rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.94;
}


.why-us__title span {
    display: block;
}


.why-us__description {
    max-width: 430px;

    margin:
        0 0
        34px;

    color: var(--color-text-light);

    font-size: 0.96rem;

    line-height: 1.75;
}


.why-us__link {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: var(--color-primary);

    font-size: 0.84rem;
    font-weight: 700;

    transition:
        gap 180ms ease,
        color 180ms ease;
}


.why-us__link:hover {
    gap: 15px;

    color: var(--color-accent);
}



/* =========================================================
   WHY FEATURES
   ========================================================= */

.why-us__features {
    border-top:
        1px solid
        rgba(11, 61, 74, 0.12);
}


.why-us__feature {
    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr);

    gap: 22px;

    padding:
        38px 0;

    border-bottom:
        1px solid
        rgba(11, 61, 74, 0.12);

    transition:
        padding-left 220ms ease;
}


.why-us__feature:hover {
    padding-left: 12px;
}


.why-us__number {
    padding-top: 6px;

    color: var(--color-accent);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.why-us__feature-content {
    max-width: 520px;
}


.why-us__feature h3 {
    margin:
        0 0
        12px;

    color: var(--color-text);

    font-size: clamp(
        1.6rem,
        2.5vw,
        2.15rem
    );

    font-weight: 700;

    letter-spacing: -0.045em;

    line-height: 1.05;
}


.why-us__feature p {
    max-width: 430px;

    margin: 0;

    color: var(--color-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}



/* =========================================================
   WHY TABLET
   ========================================================= */

@media (max-width: 900px) {

    .why-us {
        padding:
            100px 0
            110px;
    }


    .why-us__grid {
        grid-template-columns:
            minmax(0, 0.85fr)
            minmax(0, 1.15fr);

        gap: 60px;
    }

}



/* =========================================================
   WHY MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .why-us {
        padding:
            82px 0
            88px;
    }


    .why-us__grid {
        display: block;
    }


    .why-us__intro {
        position: static;

        max-width: 440px;

        margin-bottom: 54px;
    }


    .why-us__eyebrow {
        margin-bottom: 14px;

        font-size: 0.63rem;
    }


    .why-us__title {
        margin-bottom: 22px;

        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );
    }


    .why-us__description {
        margin-bottom: 28px;

        font-size: 0.91rem;

        line-height: 1.65;
    }


    .why-us__feature {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 14px;

        padding:
            28px 0;
    }


    .why-us__feature:hover {
        padding-left: 0;
    }


    .why-us__feature h3 {
        margin-bottom: 9px;

        font-size: 1.55rem;
    }


    .why-us__feature p {
        font-size: 0.86rem;
    }

}

/* =========================================================
   GUEST REVIEWS
   ========================================================= */

.guest-reviews {
    position: relative;

    padding:
        125px 0
        120px;

    overflow: hidden;

    background:
        var(--color-primary-dark);

    color:
        var(--color-white);
}


/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

.guest-reviews__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, 0.55fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 64px;
}


.guest-reviews__eyebrow {
    margin:
        0 0
        18px;

    color: #69d9e8;

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.guest-reviews__title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(
        3rem,
        5.5vw,
        5.2rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.94;
}


.guest-reviews__title span {
    display: block;

    color:
        rgba(255, 255, 255, 0.58);
}


.guest-reviews__intro {
    max-width: 390px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.92rem;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   Grid
   --------------------------------------------------------- */

.guest-reviews__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}


/* ---------------------------------------------------------
   Review
   --------------------------------------------------------- */

.guest-review {
    min-width: 0;

    display: flex;
    flex-direction: column;

    min-height: 390px;

    padding:
        42px 34px
        36px;
}


.guest-review:not(:last-child) {
    border-right:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.guest-review__stars {
    margin-bottom: 34px;

    color: #69d9e8;

    font-size: 0.72rem;

    letter-spacing: 0.15em;
}


.guest-review blockquote {
    flex: 1;

    margin: 0;

    color: #ffffff;

    font-size: clamp(
        1.3rem,
        2vw,
        1.65rem
    );

    font-weight: 500;

    letter-spacing: -0.035em;

    line-height: 1.42;
}


.guest-review__author {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 20px;

    margin-top: 44px;
}


.guest-review__author > div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.guest-review__author strong {
    color: #ffffff;

    font-size: 0.78rem;
}


.guest-review__author span {
    color:
        rgba(255, 255, 255, 0.58);

    font-size: 0.68rem;
}


.guest-review__source {
    text-align: right;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.guest-reviews__footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 34px;
}


.guest-reviews__footer p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.8rem;
}


.guest-reviews__link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;

    transition:
        gap 180ms ease,
        color 180ms ease;
}


.guest-reviews__link:hover {
    gap: 15px;

    color: #69d9e8;
}


/* =========================================================
   GUEST REVIEWS TABLET
   ========================================================= */

@media (max-width: 900px) {

    .guest-reviews {
        padding:
            100px 0
            105px;
    }


    .guest-reviews__header {
        grid-template-columns: 1fr;

        gap: 28px;

        margin-bottom: 52px;
    }


    .guest-reviews__intro {
        max-width: 520px;
    }


    .guest-review {
        padding:
            34px 24px
            32px;
    }

}


/* =========================================================
   GUEST REVIEWS MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .guest-reviews {
        padding:
            82px 0
            86px;
    }


    .guest-reviews__header {
        margin-bottom: 42px;
    }


    .guest-reviews__title {
        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );
    }


    .guest-reviews__grid {
        display: flex;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        margin-right:
            calc(
                var(--container-padding) * -1
            );
    }


    .guest-reviews__grid::-webkit-scrollbar {
        display: none;
    }


    .guest-review {
        flex:
            0 0
            min(82vw, 360px);

        min-height: 380px;

        scroll-snap-align: start;

        padding:
            32px 24px;

        border-right:
            1px solid
            rgba(255, 255, 255, 0.12);
    }


    .guest-review blockquote {
        font-size: 1.35rem;
    }


    .guest-reviews__footer {
        align-items: flex-start;

        flex-direction: column;

        padding-top: 28px;
    }

}

/* =========================================================
   HOME FAQ
   ========================================================= */

.home-faq {
    position: relative;

    padding:
        125px 0
        130px;

    background:
        var(--color-background);
}


.home-faq__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);

    align-items: start;

    gap: 100px;
}


/* ---------------------------------------------------------
   Intro
   --------------------------------------------------------- */

.home-faq__intro {
    position: sticky;

    top: 120px;

    max-width: 470px;
}


.home-faq__eyebrow {
    margin:
        0 0
        18px;

    color:
        var(--color-accent);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.home-faq__title {
    margin:
        0 0
        28px;

    color:
        var(--color-text);

    font-size: clamp(
        3rem,
        5vw,
        5rem
    );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.94;
}


.home-faq__title span {
    display: block;
}


.home-faq__description {
    max-width: 390px;

    margin:
        0 0
        30px;

    color:
        var(--color-text-light);

    font-size: 0.94rem;

    line-height: 1.75;
}


.home-faq__contact {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    transition:
        gap 180ms ease,
        color 180ms ease;
}


.home-faq__contact:hover {
    gap: 15px;

    color:
        var(--color-accent);
}


/* ---------------------------------------------------------
   Questions
   --------------------------------------------------------- */

.home-faq__questions {
    border-top:
        1px solid
        var(--color-border);
}


.home-faq__item {
    border-bottom:
        1px solid
        var(--color-border);
}


.home-faq__item summary {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;

    min-height: 94px;

    padding:
        26px 0;

    cursor: pointer;

    color:
        var(--color-text);

    font-size: clamp(
        1.1rem,
        1.8vw,
        1.4rem
    );

    font-weight: 650;

    letter-spacing: -0.025em;

    line-height: 1.35;

    list-style: none;
}


.home-faq__item summary::-webkit-details-marker {
    display: none;
}


.home-faq__icon {
    flex: 0 0 auto;

    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(11, 61, 74, 0.16);

    border-radius: 50%;

    color:
        var(--color-primary);

    font-size: 1rem;
    font-weight: 400;

    transition:
        transform 200ms ease,
        background-color 200ms ease,
        color 200ms ease;
}


.home-faq__item[open]
.home-faq__icon {
    transform: rotate(45deg);

    background:
        var(--color-primary);

    color:
        #ffffff;
}


.home-faq__answer {
    max-width: 630px;

    padding:
        0 64px
        30px 0;
}


.home-faq__answer p {
    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.9rem;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   Focus
   --------------------------------------------------------- */

.home-faq__item summary:focus-visible {
    outline:
        3px solid
        #69d9e8;

    outline-offset: 5px;
}


/* =========================================================
   HOME FAQ TABLET
   ========================================================= */

@media (max-width: 900px) {

    .home-faq {
        padding:
            100px 0
            105px;
    }


    .home-faq__grid {
        gap: 60px;

        grid-template-columns:
            minmax(0, 0.8fr)
            minmax(0, 1.2fr);
    }

}


/* =========================================================
   HOME FAQ MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .home-faq {
        padding:
            82px 0
            88px;
    }


    .home-faq__grid {
        display: block;
    }


    .home-faq__intro {
        position: static;

        margin-bottom: 52px;
    }


    .home-faq__title {
        margin-bottom: 22px;

        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );
    }


    .home-faq__description {
        font-size: 0.9rem;
    }


    .home-faq__item summary {
        min-height: 82px;

        padding:
            22px 0;

        gap: 20px;

        font-size: 1.05rem;
    }


    .home-faq__icon {
        width: 30px;
        height: 30px;

        font-size: 0.9rem;
    }


    .home-faq__answer {
        padding:
            0 40px
            24px 0;
    }


    .home-faq__answer p {
        font-size: 0.86rem;
    }

}

/* =========================================================
   ABOUT STORY PAGE
   ========================================================= */

.about-story {
    background: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.about-story__hero {
    padding:
        170px 0
        110px;

    background:
        var(--color-background-soft);
}


.about-story__hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.82fr);

    align-items: center;

    gap: 90px;
}


.about-story__eyebrow,
.about-story__section-label {
    margin:
        0 0
        20px;

    color:
        var(--color-accent);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.about-story__hero-title {
    max-width: 720px;

    margin:
        0 0
        30px;

    color:
        var(--color-text);

    font-size:
        clamp(
            3.8rem,
            7vw,
            7rem
        );

    font-weight: 700;

    letter-spacing: -0.07em;

    line-height: 0.9;
}


.about-story__hero-title span {
    display: block;

    color:
        var(--color-primary);
}


.about-story__hero-intro {
    max-width: 570px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 1rem;

    line-height: 1.8;
}


.about-story__hero-image {
    margin: 0;

    overflow: hidden;

    border-radius: 18px;

    aspect-ratio: 4 / 5;

    background:
        var(--color-border);
}


.about-story__hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.about-story__section {
    padding:
        125px 0;
}


.about-story__narrow {
    max-width: 820px;
}


.about-story__section h2,
.about-story__dolphins h2,
.about-story__ending h2 {
    margin:
        0 0
        32px;

    color:
        var(--color-text);

    font-size:
        clamp(
            2.6rem,
            5vw,
            4.8rem
        );

    font-weight: 700;

    letter-spacing: -0.06em;

    line-height: 0.98;
}


.about-story__section p,
.about-story__dolphins p {
    color:
        var(--color-text-light);

    font-size: 0.98rem;

    line-height: 1.85;
}


.about-story__lead {
    color:
        var(--color-primary) !important;

    font-size: 1.4rem !important;

    font-weight: 700;
}


.about-story__two-column {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 100px;
}


.about-story__copy {
    max-width: 620px;
}


.about-story__copy > p:first-child {
    margin-top: 0;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.about-story__statement {
    padding:
        120px 0;

    background:
        var(--color-primary-dark);

    text-align: center;
}


.about-story__statement p {
    max-width: 1100px;

    margin:
        0 auto;

    color:
        rgba(255,255,255,.55);

    font-size:
        clamp(
            3rem,
            7vw,
            7rem
        );

    font-weight: 700;

    letter-spacing: -0.07em;

    line-height: 0.93;
}


.about-story__statement span {
    display: block;

    color: #ffffff;
}


/* =========================================================
   CAPTAIN
   ========================================================= */

.about-story__captain {
    background:
        var(--color-background-soft);
}


.about-story__stat {
    display: flex;

    align-items: end;

    gap: 20px;

    margin-top: 50px;
}


.about-story__stat strong {
    color:
        var(--color-primary);

    font-size:
        clamp(
            5rem,
            10vw,
            9rem
        );

    letter-spacing: -0.08em;

    line-height: 0.8;
}


.about-story__stat span {
    color:
        var(--color-text-light);

    font-size: 0.8rem;

    line-height: 1.4;
}


/* =========================================================
   DOLPHINS
   ========================================================= */

.about-story__dolphins {
    padding:
        135px 0;

    background:
        #ffffff;
}


.about-story__dolphins blockquote {
    margin:
        60px 0;

    padding:
        0 0
        0 34px;

    border-left:
        3px solid
        var(--color-accent);

    color:
        var(--color-primary);

    font-size:
        clamp(
            2rem,
            4vw,
            3.7rem
        );

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 1.05;
}


/* =========================================================
   PARTNERSHIP
   ========================================================= */

.about-story__partnership {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    margin:
        44px 0;
}


.about-story__partnership p {
    margin: 0;

    padding:
        24px;

    border:
        1px solid
        var(--color-border);

    color:
        var(--color-primary);

    font-weight: 650;

    line-height: 1.55;
}


.about-story__copy h3 {
    margin:
        38px 0
        0;

    color:
        var(--color-primary);

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.6rem
        );

    letter-spacing: -0.045em;

    line-height: 1.1;
}


/* =========================================================
   VALUES
   ========================================================= */

.about-values {
    padding:
        125px 0;

    background:
        var(--color-primary-dark);

    color:
        #ffffff;
}


.about-values__header {
    margin-bottom: 70px;
}


.about-values__header h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );

    letter-spacing: -0.065em;

    line-height: 0.95;
}


.about-values__header h2 span {
    display: block;

    color:
        rgba(255,255,255,.55);
}


.about-values__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(255,255,255,.12);

    border-bottom:
        1px solid
        rgba(255,255,255,.12);
}


.about-values article {
    padding:
        36px 28px
        40px;

    min-height: 260px;
}


.about-values article:not(:last-child) {
    border-right:
        1px solid
        rgba(255,255,255,.12);
}


.about-values article > span {
    color:
        #69d9e8;

    font-size: 0.62rem;

    letter-spacing: 0.15em;
}


.about-values h3 {
    margin:
        55px 0
        16px;

    color: #ffffff;

    font-size: 1.5rem;
}


.about-values p {
    margin: 0;

    color:
        rgba(255,255,255,.66);

    font-size: 0.85rem;

    line-height: 1.7;
}


/* =========================================================
   ENDING CTA
   ========================================================= */

.about-story__ending {
    padding:
        140px 0;

    background:
        var(--color-background-soft);
}


.about-story__ending-inner {
    max-width: 920px;

    text-align: center;
}


.about-story__ending h2 span {
    display: block;

    color:
        var(--color-primary);
}


.about-story__ending > .container > p:not(
    .about-story__section-label
) {
    max-width: 600px;

    margin:
        0 auto;

    color:
        var(--color-text-light);

    line-height: 1.8;
}


.about-story__actions {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 28px;

    margin-top: 44px;
}


.about-story__button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        17px 24px;

    background:
        var(--color-primary);

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 700;
}


.about-story__text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-story__hero-grid,
    .about-story__two-column {
        gap: 55px;
    }


    .about-values__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-values article:nth-child(2) {
        border-right: 0;
    }


    .about-values article:nth-child(-n + 2) {
        border-bottom:
            1px solid
            rgba(255,255,255,.12);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .about-story__hero {
        padding:
            125px 0
            80px;
    }


    .about-story__hero-grid,
    .about-story__two-column {
        display: block;
    }


    .about-story__hero-content {
        margin-bottom: 48px;
    }


    .about-story__hero-title {
        font-size:
            clamp(
                3.3rem,
                15vw,
                5rem
            );
    }


    .about-story__section,
    .about-story__dolphins {
        padding:
            85px 0;
    }


    .about-story__two-column > div:first-child {
        margin-bottom: 48px;
    }


    .about-story__statement {
        padding:
            85px 0;
    }


    .about-story__statement p {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4.5rem
            );
    }


    .about-story__partnership {
        grid-template-columns: 1fr;
    }


    .about-values {
        padding:
            85px 0;
    }


    .about-values__grid {
        grid-template-columns: 1fr;
    }


    .about-values article {
        min-height: auto;

        border-right: 0 !important;

        border-bottom:
            1px solid
            rgba(255,255,255,.12);
    }


    .about-values article:last-child {
        border-bottom: 0;
    }


    .about-values h3 {
        margin-top: 34px;
    }


    .about-story__ending {
        padding:
            95px 0;
    }


    .about-story__actions {
        flex-direction: column;

        gap: 20px;
    }

}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-it-works {
    position: relative;

    padding:
        125px 0
        120px;

    overflow: hidden;

    background:
        var(--color-background-soft);
}


/* =========================================================
   HEADER
   ========================================================= */

.how-it-works__header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, 0.55fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 72px;
}


.how-it-works__eyebrow {
    margin:
        0 0
        18px;

    color:
        var(--color-accent);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.how-it-works__title {
    margin: 0;

    color:
        var(--color-text);

    font-size:
        clamp(
            3rem,
            5.5vw,
            5.3rem
        );

    font-weight: 700;

    letter-spacing: -0.065em;

    line-height: 0.94;
}


.how-it-works__title span {
    display: block;

    color:
        var(--color-primary);
}


.how-it-works__intro {
    max-width: 390px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.92rem;

    line-height: 1.75;
}


/* =========================================================
   STEPS
   ========================================================= */

.how-it-works__steps {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(11, 61, 74, 0.14);

    border-bottom:
        1px solid
        rgba(11, 61, 74, 0.14);
}


.how-it-works__step {
    min-width: 0;

    min-height: 320px;

    display: flex;
    flex-direction: column;

    padding:
        34px 28px
        38px;
}


.how-it-works__step:not(:last-child) {
    border-right:
        1px solid
        rgba(11, 61, 74, 0.14);
}


.how-it-works__number {
    display: block;

    margin-bottom: 70px;

    color:
        var(--color-accent);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.how-it-works__step > div {
    margin-top: auto;
}


.how-it-works__step h3 {
    margin:
        0 0
        14px;

    color:
        var(--color-text);

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.75rem
        );

    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.08;
}


.how-it-works__step p {
    max-width: 250px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.84rem;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
   ========================================================= */

.how-it-works__footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 32px;
}


.how-it-works__footer p {
    margin: 0;

    color:
        var(--color-text-light);

    font-size: 0.8rem;
}


.how-it-works__link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--color-primary);

    font-size: 0.82rem;
    font-weight: 700;

    transition:
        gap 180ms ease,
        color 180ms ease;
}


.how-it-works__link:hover {
    gap: 15px;

    color:
        var(--color-accent);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .how-it-works {
        padding:
            100px 0
            105px;
    }


    .how-it-works__header {
        grid-template-columns: 1fr;

        gap: 28px;

        margin-bottom: 54px;
    }


    .how-it-works__intro {
        max-width: 520px;
    }


    .how-it-works__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .how-it-works__step:nth-child(2) {
        border-right: 0;
    }


    .how-it-works__step:nth-child(-n + 2) {
        border-bottom:
            1px solid
            rgba(11, 61, 74, 0.14);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .how-it-works {
        padding:
            82px 0
            86px;
    }


    .how-it-works__title {
        font-size:
            clamp(
                2.8rem,
                12vw,
                4rem
            );
    }


    .how-it-works__steps {
        grid-template-columns: 1fr;
    }


    .how-it-works__step {
        min-height: auto;

        display: grid;

        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 16px;

        padding:
            28px 0;

        border-right: 0 !important;

        border-bottom:
            1px solid
            rgba(11, 61, 74, 0.14);
    }


    .how-it-works__step:last-child {
        border-bottom: 0;
    }


    .how-it-works__number {
        margin: 5px 0 0;
    }


    .how-it-works__step > div {
        margin: 0;
    }


    .how-it-works__step h3 {
        margin-bottom: 9px;

        font-size: 1.4rem;
    }


    .how-it-works__step p {
        max-width: 420px;

        font-size: 0.86rem;
    }


    .how-it-works__footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        padding-top: 28px;
    }

}

/* =========================================================
   DYNAMIC REVIEW GRID
   ========================================================= */

@media (min-width: 768px) {

    .guest-reviews__grid--1 {
        grid-template-columns: 1fr;
    }


    .guest-reviews__grid--1 .guest-review {
        width: 100%;
        max-width: 760px;

        margin-inline: auto;
    }


    .guest-reviews__grid--2 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* =========================================================
   SINGLE TOUR — MOBILE BOOKING CARD
   ========================================================= */

@media (max-width: 767px) {

    .single-tour__booking {
        display: none;
    }

}

/* =========================================================
   SINGLE TOUR — PRIVATE GROUP PRICING
   ========================================================= */

.single-tour__group-pricing {
    margin-top: 72px;
    padding-top: 54px;
    border-top: 1px solid rgba(12, 54, 67, 0.10);
}

.single-tour__group-pricing-heading {
    max-width: 650px;
    margin-bottom: 34px;
}

.single-tour__group-pricing-heading h2 {
    max-width: 590px;
    margin: 0 0 18px;
    color: var(--color-text);
    font-size: clamp(2.35rem, 3.6vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.single-tour__group-pricing-heading > p:last-child {
    max-width: 560px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.94rem;
    line-height: 1.75;
}

.single-tour__group-pricing-table {
    border-top: 1px solid rgba(12, 54, 67, 0.10);
    border-bottom: 1px solid rgba(12, 54, 67, 0.10);
}

.single-tour__group-pricing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 88px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(12, 54, 67, 0.08);
}

.single-tour__group-pricing-row:last-child {
    border-bottom: 0;
}

.single-tour__group-pricing-guests,
.single-tour__group-pricing-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.single-tour__group-pricing-guests strong,
.single-tour__group-pricing-amount strong {
    color: var(--color-primary);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.single-tour__group-pricing-guests span,
.single-tour__group-pricing-amount span {
    color: var(--color-text-light);
    font-size: 0.76rem;
    line-height: 1.45;
}

.single-tour__group-pricing-amount {
    align-items: flex-end;
    text-align: right;
}

.single-tour__group-pricing-amount strong {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.single-tour__group-pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--color-background-soft);
}

.single-tour__group-pricing-note > span {
    flex-shrink: 0;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1.55;
}

.single-tour__group-pricing-note p {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.6;
}


@media (max-width: 767px) {

    .single-tour__group-pricing {
        margin-top: 56px;
        padding-top: 42px;
    }

    .single-tour__group-pricing-heading {
        margin-bottom: 28px;
    }

    .single-tour__group-pricing-heading h2 {
        max-width: 360px;
        font-size: clamp(2.05rem, 9vw, 2.7rem);
        line-height: 1;
    }

    .single-tour__group-pricing-row {
        min-height: 82px;
        gap: 16px;
        padding: 17px 0;
    }

    .single-tour__group-pricing-guests strong,
    .single-tour__group-pricing-amount strong {
        font-size: 0.92rem;
    }

    .single-tour__group-pricing-guests span,
    .single-tour__group-pricing-amount span {
        font-size: 0.70rem;
    }

    .single-tour__group-pricing-amount strong {
        font-size: 0.98rem;
    }

    .single-tour__group-pricing-note {
        margin-top: 20px;
        padding: 17px 18px;
    }

}


/* =========================================================
   SINGLE TOUR — IN-WATER DOLPHIN EXPERIENCE
   ========================================================= */

.single-tour__inwater {
    margin-top: 72px;
    padding: 46px 38px;
    border: 1px solid rgba(6, 121, 140, 0.12);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(6, 121, 140, 0.08),
            transparent 34%
        ),
        #f8fbfc;
}

.single-tour__inwater-heading {
    max-width: 650px;
    margin-bottom: 34px;
}

.single-tour__inwater-heading h2 {
    max-width: 590px;
    margin: 0 0 18px;
    color: var(--color-text);
    font-size: clamp(2.35rem, 3.6vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.single-tour__inwater-heading > p:last-child {
    max-width: 560px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.94rem;
    line-height: 1.75;
}

.single-tour__inwater-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
    gap: 38px;
    align-items: start;
    padding-top: 30px;
    border-top: 1px solid rgba(12, 54, 67, 0.10);
}

.single-tour__inwater-copy {
    max-width: 600px;
}

.single-tour__inwater-copy p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.78;
}

.single-tour__inwater-copy p + p {
    margin-top: 18px;
}

.single-tour__inwater-facts {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(12, 54, 67, 0.10);
}

.single-tour__inwater-fact {
    padding: 15px 0;
    border-bottom: 1px solid rgba(12, 54, 67, 0.10);
}

.single-tour__inwater-fact span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-accent);
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.single-tour__inwater-fact strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.90rem;
    font-weight: 700;
    line-height: 1.45;
}

.single-tour__inwater-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
    padding: 20px 22px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(9, 42, 52, 0.05);
}

.single-tour__inwater-note > span {
    flex-shrink: 0;
    color: var(--color-accent);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.single-tour__inwater-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.single-tour__inwater-note p {
    max-width: 590px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.82rem;
    line-height: 1.65;
}

/* Four expectation items fit better as a 2 × 2 grid on desktop. */
.single-tour__expectations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-tour__expectation:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(12, 54, 67, 0.10);
}

.single-tour__expectation:nth-child(4) {
    border-top: 1px solid rgba(12, 54, 67, 0.10);
}

@media (max-width: 767px) {

    .single-tour__inwater {
        margin-top: 56px;
        padding: 34px 24px;
        border-radius: 16px;
    }

    .single-tour__inwater-heading {
        margin-bottom: 28px;
    }

    .single-tour__inwater-heading h2 {
        max-width: 360px;
        font-size: clamp(2.05rem, 9vw, 2.7rem);
        line-height: 1;
    }

    .single-tour__inwater-grid {
        display: block;
        padding-top: 24px;
    }

    .single-tour__inwater-facts {
        margin-top: 28px;
    }

    .single-tour__inwater-note {
        margin-top: 24px;
        padding: 18px;
    }

    .single-tour__expectations-grid {
        display: block;
    }

    .single-tour__expectation:nth-child(3),
    .single-tour__expectation:nth-child(4) {
        border-top: 0;
    }

}
