/* ===========================
   H'Cap Ouest — V3 CSS
   Modern Coastal Design
   Outfit + Inter · Cream & Coral
   =========================== */

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

:root {
    --cream: #FDF8F2;
    --cream-dark: #F5EDE3;
    --sand: #EDE4D8;
    --sand-dark: #D9CCBC;

    --navy: #1B3A5C;
    --navy-light: #2A5580;
    --navy-dark: #0F2640;
    --slate: #4A6378;
    --mist: #7B93A8;

    --coral: #E8614D;
    --coral-light: #F07B6A;
    --coral-dark: #D04A38;
    --coral-dim: rgba(232, 97, 77, 0.08);

    --teal: #3AADA8;
    --teal-light: #55C4BF;
    --teal-dark: #2A8D89;
    --teal-dim: rgba(58, 173, 168, 0.08);

    --white: #FFFFFF;
    --black: #1A1A1A;

    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.06);
    --shadow-md: 0 8px 24px rgba(27, 58, 92, 0.08);
    --shadow-lg: 0 16px 48px rgba(27, 58, 92, 0.1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    line-height: 1.6;
    background: var(--cream);
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav--scrolled {
    background: rgba(253, 248, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav__logo-img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav__lang {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    transition: all 0.25s var(--ease);
}

.nav__lang:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.nav--scrolled .nav__lang {
    color: var(--navy);
    border-color: var(--sand-dark);
}

.nav--scrolled .nav__lang:hover {
    background: var(--cream-dark);
    border-color: var(--navy);
}

.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav--scrolled .nav__burger span {
    background: var(--navy);
}

.nav__burger.active span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 1000;
}

.nav__menu.active {
    transform: translateX(0);
}

.nav__link {
    display: block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    font-family: var(--font-display);
    transition: color 0.25s;
}

.nav__link:hover {
    color: var(--coral-light);
}

.nav__link--cta {
    margin-top: 16px;
    background: var(--coral);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav__link--cta:hover {
    background: var(--coral-light);
    color: var(--white);
}

.nav__link--lang {
    display: none;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    border: 1.5px solid currentColor;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
.nav__link--lang:hover {
    opacity: 1;
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(27, 58, 92, 0.6) 0%,
        rgba(232, 97, 77, 0.2) 50%,
        rgba(58, 173, 168, 0.3) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding: 100px 24px 140px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 48px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.35s forwards;
}

.hero__text {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 72px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.5s forwards;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.65s forwards;
}

.hero__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 22px 48px;
    border-radius: var(--radius-full);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.hero__btn strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.hero__btn span {
    font-size: 0.72rem;
    opacity: 0.7;
}

.hero__btn--fill {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 97, 77, 0.35);
}

.hero__btn--fill:hover {
    background: var(--coral-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(232, 97, 77, 0.4);
}

.hero__btn--outline {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero__btn--outline {
    position: relative;
}

.hero__badge-sp {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--coral);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 2.5px solid var(--white);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    line-height: 1;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.8s forwards;
}

.hero__stat { text-align: center; }

.hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero__stat-lab {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   SECTIONS
   ============================ */
.section {
    padding: 80px 0;
}

.section--sand {
    background: var(--cream-dark);
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
}

.section--ocean {
    background: var(--navy);
    color: var(--white);
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
}

/* --- Section wave transitions --- */
.section--ocean::before,
.section--ocean::after,
.section--sand::before,
.section--sand::after,
.footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* Top waves (cream flowing into colored section) */
.section--ocean::before {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V15 C1200,55 960,5 720,35 C480,65 240,8 0,40 Z' fill='%23FDF8F2'/%3E%3C/svg%3E");
}

.section--sand::before {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V20 C1320,5 1080,55 720,20 C360,-5 120,45 0,30 Z' fill='%23FDF8F2'/%3E%3C/svg%3E");
}

/* Bottom waves (cream flowing out of colored section) */
.section--ocean::after {
    bottom: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C240,5 480,55 720,25 C960,0 1200,50 1440,15 L1440,60 L0,60 Z' fill='%23FDF8F2'/%3E%3C/svg%3E");
}

.section--sand::after {
    bottom: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C120,0 360,55 720,20 C1080,-5 1320,45 1440,25 L1440,60 L0,60 Z' fill='%23FDF8F2'/%3E%3C/svg%3E");
}

/* Footer top wave */
.footer::before {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V10 C1080,55 720,0 360,45 C180,60 60,35 0,45 Z' fill='%23FDF8F2'/%3E%3C/svg%3E");
}

.section__head {
    max-width: 600px;
    margin-bottom: 48px;
}

.section__head--light .section__title,
.section__head--light .section__intro {
    color: var(--white);
}

.section__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-dim);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section__tag--light {
    color: var(--teal-light);
    background: rgba(58, 173, 168, 0.15);
}

.section__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section__intro {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
}

.sub-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sand);
    margin-top: 56px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(232, 97, 77, 0.2);
}

.btn:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 97, 77, 0.3);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--coral);
    color: var(--coral);
    box-shadow: none;
}

.btn--outline:hover {
    background: var(--coral-dim);
    box-shadow: none;
}

.btn--white {
    background: var(--white);
    color: var(--coral);
    box-shadow: var(--shadow-sm);
}

.btn--white:hover {
    background: var(--white);
    color: var(--coral-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.78rem;
}

.center-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================
   TRIPS (Balades)
   ============================ */
.trips {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
}

.trips__header {
    text-align: center;
    margin-bottom: 32px;
}

.trips__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.trips__price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 4px;
}

.trips__price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mist);
}

.trips__note {
    font-size: 0.82rem;
    color: var(--mist);
    max-width: 420px;
    margin: 0 auto;
}

.trips__cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    width: 100%;
    margin-bottom: 32px;
}

.trip {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease);
}

.trip:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(27, 58, 92, 0.18);
}

.trip--coral { border: none; }
.trip--teal { border: none; }

/* Background Image */
.trip__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.trip:hover .trip__bg {
    transform: scale(1.05);
}

.trip__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background 0.4s var(--ease);
}

.trip--coral .trip__overlay {
    background: linear-gradient(
        to top,
        rgba(30, 20, 15, 0.7) 0%,
        rgba(180, 80, 60, 0.15) 55%,
        rgba(255, 160, 120, 0.03) 100%
    );
}

.trip--teal .trip__overlay {
    background: linear-gradient(
        to top,
        rgba(10, 30, 45, 0.7) 0%,
        rgba(40, 130, 140, 0.12) 55%,
        rgba(100, 200, 200, 0.03) 100%
    );
}

/* Trip Content */
.trip__content {
    position: relative;
    z-index: 2;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.trip__emoji {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 8px;
}

.trip__ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    color: var(--navy-dark);
    background: linear-gradient(135deg, #FFD700, #FFC107);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    z-index: 5;
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.35);
}

.trip__ribbon ~ .trip__name {
    margin-top: 0;
}

.trip__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.trip__price {
    display: inline-flex;
    align-self: flex-start;
    align-items: baseline;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--white);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.trip__price strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
}

.trip__dur {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.trip--coral .trip__dur { background: var(--coral); }
.trip--teal .trip__dur { background: var(--teal); }

.trip__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 14px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.trip__feats {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trip__feats li {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 18px;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.trip__feats li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.trip--coral .trip__feats li::before { color: var(--coral-light); }
.trip--teal .trip__feats li::before { color: var(--teal-light); }

.trip__more {
    background: var(--white);
    border: none;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 22px;
    margin-top: 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trip--coral .trip__more {
    color: var(--coral);
}

.trip--teal .trip__more {
    color: var(--teal-dark);
}

.trip__more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ============================
   PLANNING
   ============================ */
/* --- Trips "ou" divider --- */
.trips__or {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.trips__or span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    color: var(--mist);
    font-size: 0.72rem;
    font-weight: 600;
    font-style: italic;
    flex-shrink: 0;
}

/* --- Agenda (Prochaines sorties) --- */
.agenda {
    margin-bottom: 28px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.agenda__header {
    margin-bottom: 14px;
}

.agenda__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agenda__title::before {
    content: '📅';
    font-size: 1.1rem;
}

.agenda__subtitle {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--mist);
}

.agenda__legend {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.agenda__legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--slate);
}

.agenda__legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.agenda__legend-item--rias .agenda__legend-dot { background: var(--coral); }
.agenda__legend-item--concarneau .agenda__legend-dot { background: var(--teal); }
.agenda__legend-item--repos .agenda__legend-dot { background: var(--sand-dark); }

.agenda__nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.agenda__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 2;
}

.agenda__arrow:hover {
    background: var(--cream);
    border-color: var(--coral-light);
    color: var(--coral);
}

.agenda__arrow--left { margin-right: 8px; }
.agenda__arrow--right { margin-left: 8px; }

.agenda__arrow--hidden {
    opacity: 0.25;
    pointer-events: none;
}

.agenda__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--sand-dark) transparent;
    padding-bottom: 4px;
    flex: 1;
    min-width: 0;
}

.agenda__scroll::-webkit-scrollbar { height: 4px; }
.agenda__scroll::-webkit-scrollbar-track { background: transparent; }
.agenda__scroll::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 4px; }

.agenda__grid {
    display: grid;
    grid-template-columns: repeat(15, minmax(90px, 1fr));
    gap: 10px;
    padding-top: 12px;
}

/* Swipe hint (mobile only) */
.agenda__swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--mist);
    animation: agendaSwipeHint 1.8s ease-in-out infinite;
    transition: opacity 0.3s var(--ease);
}

.agenda__swipe-hint svg {
    opacity: 0.6;
}

.agenda__swipe-hint--hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes agendaSwipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.agenda__day {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1.5px solid var(--sand);
    overflow: visible;
    transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease);
}

.agenda__day:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.agenda__day--tomorrow {
    border-color: var(--coral-light);
    box-shadow: 0 0 0 1px var(--coral-dim), var(--shadow-sm);
}

.agenda__day--repos {
    opacity: 0.45;
}

.agenda__day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px 8px;
    background: var(--white);
    border-bottom: 1.5px solid var(--sand);
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
}

.agenda__day-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.50rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--coral);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    line-height: 1.4;
    white-space: nowrap;
    z-index: 1;
}

.agenda__day-name {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
}

.agenda__day-date {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--mist);
    font-weight: 500;
}

.agenda__slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.agenda__slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    padding: 8px 6px;
    border-radius: 10px;
    position: relative;
    transition: background 0.15s var(--ease);
    min-height: 100px;
}

.agenda__slot--rias {
    background: var(--coral-dim);
    border-left: 3px solid var(--coral);
}

.agenda__slot--concarneau {
    background: var(--teal-dim);
    border-left: 3px solid var(--teal);
}

.agenda__slot--repos {
    background: rgba(0, 0, 0, 0.025);
    border-left: 3px solid var(--sand);
}

.agenda__slot-top {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.agenda__slot-time {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--mist);
}

.agenda__slot-dur {
    font-family: var(--font-body);
    font-size: 0.52rem;
    font-weight: 600;
    color: var(--mist);
    background: rgba(0, 0, 0, 0.06);
    padding: 1px 5px;
    border-radius: var(--radius-full);
}

.agenda__slot-icon {
    font-size: 1rem;
    line-height: 1;
    margin-top: auto;
}

.agenda__slot-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: auto;
}

.agenda__slot--rias .agenda__slot-label { color: var(--coral-dark); }
.agenda__slot--concarneau .agenda__slot-label { color: var(--teal-dark); }
.agenda__slot--repos .agenda__slot-label { color: var(--mist); }

.agenda__slot--complet {
    opacity: 0.5;
    position: relative;
}

.agenda__slot--complet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.agenda__badge {
    font-family: var(--font-display);
    font-size: 0.48rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--white);
    background: var(--navy);
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-top: 2px;
}

.agenda__places {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--navy);
    background: rgba(0, 48, 73, 0.08);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-top: 4px;
    white-space: nowrap;
}

.agenda__places--low {
    color: var(--coral);
    background: rgba(255, 107, 107, 0.12);
    font-weight: 700;
    animation: pulse-places 2s ease-in-out infinite;
}

@keyframes pulse-places {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================
   BANNER
   ============================ */
/* --- Privatisation --- */
.privatisation {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 14px 24px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    line-height: 1.4;
}

.privatisation__price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.privatisation__text {
    flex: 1;
}

.privatisation__text strong {
    color: var(--white);
}

.privatisation__btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.25s var(--ease);
}

.privatisation__btn:hover {
    background: var(--coral);
    border-color: var(--coral);
}

/* ============================
   FEATURE CARDS
   ============================ */
.grid-2 { display: grid; gap: 20px; }
.grid-3 { display: grid; gap: 20px; }

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(27, 58, 92, 0.18);
}

.feature-card--img {
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.feature-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    z-index: 0;
}

.feature-card:hover .feature-card__bg {
    transform: scale(1.05);
}

.feature-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 25, 50, 0.68) 0%,
        rgba(20, 60, 100, 0.18) 50%,
        rgba(60, 140, 180, 0.03) 100%
    );
    transition: background 0.4s var(--ease);
}

.feature-card:hover .feature-card__overlay {
    background: linear-gradient(
        to top,
        rgba(10, 25, 50, 0.6) 0%,
        rgba(20, 60, 100, 0.22) 50%,
        rgba(60, 140, 180, 0.04) 100%
    );
}

.feature-card__body {
    position: relative;
    z-index: 1;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.feature-card__body .btn {
    margin-top: 16px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.feature-card:not(.feature-card--img) .feature-card__title {
    color: var(--navy);
}

.feature-card__body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 14px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.feature-card:not(.feature-card--img) .feature-card__body p {
    color: var(--slate);
}

.feature-card__price {
    display: inline-flex;
    align-self: flex-start;
    align-items: baseline;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--white);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.feature-card__price strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
}

.feature-card__list {
    margin-bottom: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-card__list li {
    padding: 3px 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-card__list li::before {
    content: '✓';
    color: var(--teal-light);
    font-weight: 700;
}

/* ============================
   DESTINATIONS
   ============================ */
.dest-grid {
    display: grid;
    gap: 24px;
}

.dest {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
}

.dest:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.dest__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.dest__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.dest:hover .dest__img img {
    transform: scale(1.05);
}

.dest__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 25, 50, 0.88) 0%,
        rgba(10, 25, 50, 0.45) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

.dest__body {
    position: relative;
    z-index: 2;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}

.dest__step {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dest__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.dest__meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.dest__body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dest__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dest__tags span {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

/* ============================
   DESTINATION MAP
   ============================ */
.dest-map__hint {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -34px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.dest-map__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.dest-map__btn {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-map__btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.dest-map__btn--active {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.dest-map__btn:not(.dest-map__btn--active) {
    animation: btnPulse 2s ease-in-out 3;
}

@keyframes btnPulse {
    0%, 100% { border-color: rgba(255, 255, 255, 0.2); }
    50% { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.12); }
}

.dest-map__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dest-map__dot--rias { background: var(--coral); }
.dest-map__dot--conc { background: var(--teal); }

.dest-map-wrap {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.dest-map {
    flex: 1;
    min-width: 0;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

/* Leaflet fixes — global CSS reset breaks tiles & controls */
.leaflet-container img { max-width: none !important; }
.leaflet-container .leaflet-control-zoom a { margin: initial; padding: initial; }

/* Leaflet custom markers */
.dest-marker {
    background: none !important;
    border: none !important;
    transition: transform 0.2s ease;
    transform-origin: center bottom;
}

.dest-marker--active {
    transform: scale(1.35);
}

.dest-marker__pin {
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.2s ease;
}

.dest-marker--active .dest-marker__pin {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.dest-marker__pin span {
    transform: rotate(45deg);
    font-size: 14px;
    line-height: 1;
}

/* Map detail panel */
.dest-panel {
    width: 0;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 0 solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: width 0.3s var(--ease), border-width 0.3s var(--ease), opacity 0.3s var(--ease);
    opacity: 0;
    position: relative;
}

.dest-panel--active {
    width: 260px;
    border-width: 1.5px;
    opacity: 1;
}

.dest-panel__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background 0.2s;
}

.dest-panel__close:hover { background: rgba(0, 0, 0, 0.65); }

.dest-panel__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    max-width: none !important;
}

.dest-panel__body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dest-panel__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.dest-panel__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================
   BOAT
   ============================ */
.boat {
    display: grid;
    gap: 40px;
}

.boat__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 280px;
}

.boat__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid var(--sand);
    transition: background 0.25s;
}

.spec:last-of-type { border-bottom: none; }

.spec:hover {
    background: var(--coral-dim);
    border-radius: var(--radius);
}

.spec__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-dim);
    border-radius: 14px;
    font-size: 1.3rem;
}

.spec__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral);
    margin-bottom: 2px;
}

.spec__value {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.4;
}

.boat__specs .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ============================
   SKIPPER
   ============================ */
.skipper {
    display: grid;
    gap: 48px;
    align-items: center;
}

.skipper__photo-wrap {
    display: flex;
    justify-content: center;
}

.skipper__photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--coral);
    box-shadow: var(--shadow-lg);
}

.skipper__body .section__tag { color: var(--teal); background: var(--teal-dim); }
.skipper__body .section__title { color: var(--navy); }

.skipper__body p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 14px;
}

.skipper__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s var(--ease);
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================
   GALLERY
   ============================ */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 38, 64, 0.5);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    z-index: 1;
    pointer-events: none;
}

.gallery__item:hover::after {
    opacity: 1;
}


.gallery__cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(15, 38, 64, 0.9), transparent);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s var(--ease);
    z-index: 2;
}

.gallery__item:hover .gallery__cap {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 480px) {
    .gallery { gap: 14px; }
    .gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
    .gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
}

/* ============================
   REVIEWS
   ============================ */
.reviews {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reviews::-webkit-scrollbar { display: none; }

.review {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.35s var(--ease);
    box-shadow: var(--shadow-sm);
    flex: 0 0 85%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

.review:hover {
    box-shadow: var(--shadow-lg);
}

.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sand-dark);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.reviews__dot--active {
    background: var(--coral);
    transform: scale(1.3);
}

.reviews__nav {
    display: flex;
    align-items: stretch;
}

.reviews__arrow {
    display: none;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: 50%;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 2;
}

.reviews__arrow:hover {
    background: var(--cream);
    border-color: var(--coral-light);
    color: var(--coral);
}

.reviews__arrow--hidden {
    opacity: 0.25;
    pointer-events: none;
}

.review__stars {
    color: var(--coral);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review__text {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
    flex: 1;
}

.review__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 2px solid var(--sand);
}

.review__name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.92rem;
}

.review__date {
    font-size: 0.78rem;
    color: var(--mist);
}

/* ============================
   TIPS
   ============================ */
.tips {
    display: grid;
    gap: 16px;
}

.tip {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.tip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tip__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.tip__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.tip p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
}

/* ============================
   FAQ
   ============================ */
.faq-list {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.faq[open] {
    border-color: var(--teal);
    background: rgba(58, 173, 168, 0.08);
}

.faq__q {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--teal);
    flex-shrink: 0;
    font-family: var(--font-body);
    transition: transform 0.3s;
}

.faq[open] .faq__q::after { content: '−'; }

.faq__a {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================
   CONTACT
   ============================ */
.contact {
    display: grid;
    gap: 32px;
}

.contact__cards {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    transition: background 0.2s var(--ease);
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--sand);
}

.contact-card:last-child { border-bottom: none; }

a.contact-card:hover {
    background: var(--cream);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-dim);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card__body { flex: 1; min-width: 0; }

.contact-card__label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-card__value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.4;
}

.contact-card__hint {
    font-size: 0.78rem;
    color: var(--mist);
    font-weight: 400;
    margin-top: 1px;
}

a.contact-card .contact-card__label { color: var(--coral); }

.contact-card__arrow {
    font-size: 1.2rem;
    color: var(--coral);
    opacity: 0.5;
    transition: all 0.2s var(--ease);
    flex-shrink: 0;
}

a.contact-card:hover .contact-card__arrow {
    opacity: 1;
    transform: translateX(3px);
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--shadow-md);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
}

.footer__top {
    display: grid;
    gap: 32px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__logo-img {
    height: 36px;
    width: auto;
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coral-light);
    margin-bottom: 14px;
}

.footer__col a,
.footer__col span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 3px 0;
    transition: color 0.25s;
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__version a {
    color: var(--coral-light);
    text-decoration: underline;
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 38, 64, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    cursor: default;
}

.lightbox__caption {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--coral-light);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 8px;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(232, 97, 77, 0.1);
    border: 2px solid rgba(232, 97, 77, 0.2);
    color: var(--coral-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: background 0.3s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(232, 97, 77, 0.2);
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ============================
   MODAL
   ============================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal.active { opacity: 1; visibility: visible; }

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 38, 64, 0.7);
    backdrop-filter: blur(8px);
}

.modal__box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.3s var(--bounce), opacity 0.3s;
    box-shadow: var(--shadow-lg);
}

.modal.active .modal__box {
    transform: scale(1);
    opacity: 1;
}

.modal__swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 12px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--mist);
    position: sticky;
    bottom: 0;
    background: linear-gradient(transparent, var(--white) 30%);
    animation: modalSwipeHint 1.8s ease-in-out infinite;
    transition: opacity 0.3s var(--ease);
}

.modal__swipe-hint--hidden {
    opacity: 0;
    pointer-events: none;
}

.modal__swipe-hint svg {
    opacity: 0.6;
}

@keyframes modalSwipeHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
    .modal__swipe-hint {
        display: flex;
    }
    .dest-map {
        height: 300px;
        width: 100%;
        flex: none;
    }
    .dest-map-wrap {
        flex-direction: column;
    }
    .dest-panel {
        width: 100%;
        height: 0;
        flex-direction: row;
        transition: height 0.3s var(--ease), opacity 0.3s var(--ease);
    }
    .dest-panel--active {
        width: 100%;
        height: 100px;
    }
    .dest-panel__img {
        width: 120px;
        height: 100px;
        object-fit: cover;
    }
    .dest-panel__body {
        padding: 12px 14px;
        justify-content: center;
    }
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.modal__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.modal__photos img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.modal__body { padding: 28px; }

.modal__body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.modal__body p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--slate);
    margin-bottom: 10px;
}

.modal__feats {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.modal__feats li {
    font-size: 0.84rem;
    color: var(--navy);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.modal__feats li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.modal__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 12px;
}

.modal__actions .btn {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    padding: 12px 10px;
    white-space: nowrap;
}

/* ============================
   FAB + BACK TO TOP
   ============================ */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232, 97, 77, 0.35);
    transition: all 0.3s var(--ease);
}

.fab:hover {
    background: var(--coral-light);
    transform: scale(1.1);
}

.btt {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 900;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--coral);
    border: 2px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.btt.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.btt:hover {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE — Mobile (max 480px)
   ============================ */
@media (max-width: 480px) {
    .hero__inner { padding: 100px 20px 120px; }
    .hero__title { font-size: 2.2rem; }
    .hero__text { font-size: 0.9rem; }
    .hero__stats { flex-wrap: wrap; gap: 24px; }
    .hero__stat-num { font-size: 1.5rem; }
    .hero__stat-lab { font-size: 0.6rem; }

    .section { padding: 56px 0; }
    .section--ocean, .section--sand { padding-top: 86px; padding-bottom: 86px; }
    .section__head { margin-bottom: 32px; }
    .section__title { font-size: 1.7rem; }
    .section__intro { font-size: 0.88rem; }

    .trips { padding: 0; }
    .trips__title { font-size: 1.1rem; }
    .trips__price { font-size: 1.4rem; }
    .trips__cards { grid-template-columns: 1fr; gap: 16px; }
    .trip { min-height: auto; }
    .trip__content { padding: 48px 18px 18px; }
    .trip__name { font-size: 1.05rem; }
    .trip__desc { font-size: 0.8rem; }
    .trip__ribbon { top: 12px; left: 12px; font-size: 0.58rem; padding: 5px 10px; }
    .trip__feats { grid-template-columns: 1fr 1fr; gap: 3px; }
    .trip__feats li { font-size: 0.72rem; }

    .agenda { padding: 16px 12px; }
    .agenda__title { font-size: 0.95rem; }
    .agenda__subtitle { font-size: 0.7rem; }
    .agenda__legend { gap: 10px; margin-bottom: 12px; }
    .agenda__legend-item { font-size: 0.65rem; gap: 4px; }
    .agenda__legend-dot { width: 6px; height: 6px; }
    .agenda__arrow { display: none; }
    .agenda__swipe-hint { display: flex; }
    .agenda__grid { gap: 6px; grid-template-columns: repeat(15, minmax(78px, 1fr)); }
    .agenda__day-header { padding: 8px 4px 6px; }
    .agenda__day-name { font-size: 0.62rem; }
    .agenda__day-date { font-size: 0.56rem; }
    .agenda__day-badge { font-size: 0.48rem; padding: 1px 6px; }
    .agenda__slots { padding: 6px; gap: 4px; }
    .agenda__slot { padding: 6px 4px; border-left-width: 2px; }
    .agenda__slot-time { font-size: 0.52rem; }
    .agenda__slot-dur { font-size: 0.45rem; }
    .agenda__slot-icon { font-size: 0.85rem; }
    .agenda__slot-label { font-size: 0.52rem; }
    .trips__or span { width: 26px; height: 26px; font-size: 0.62rem; }

    .privatisation { flex-direction: column; text-align: center; gap: 8px; padding: 14px 16px; font-size: 0.82rem; margin-top: 20px; }
    .privatisation__btn { width: 100%; text-align: center; }
    .sub-title { font-size: 1rem; margin-top: 36px; }

    .feature-card--img { min-height: 340px; }
    .feature-card__body { padding: 20px 18px 18px; }
    .feature-card__title { font-size: 1.05rem; }
    .feature-card__body p { font-size: 0.8rem; }

    .dest__body { padding: 22px; min-height: 240px; }
    .dest__title { font-size: 1.1rem; }
    .dest__body p { font-size: 0.82rem; }

    .boat__img img { height: 100%; display: block; }
    .spec { padding: 14px; gap: 12px; }
    .spec__icon { width: 42px; height: 42px; font-size: 1.1rem; }

    .skipper__photo { width: 180px; height: 180px; }
    .gallery { gap: 8px; }

    .review { padding: 22px; }
    .review__text { font-size: 0.88rem; }

    .tips { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tip { padding: 18px; text-align: center; }
    .tip__icon { font-size: 1.4rem; }
    .tip__title { font-size: 0.9rem; }
    .tip p { font-size: 0.78rem; }

    .faq__q { padding: 16px 18px; font-size: 0.92rem; }
    .faq__a { padding: 0 18px 16px; font-size: 0.84rem; }

    .contact-card { padding: 16px 18px; gap: 12px; }
    .contact-card__icon { width: 38px; height: 38px; font-size: 1.05rem; }
    .contact-card__label { font-size: 0.65rem; }
    .contact-card__value { font-size: 0.88rem; }
    .contact-card__hint { font-size: 0.72rem; }
    .contact__map { min-height: 220px; border-radius: var(--radius); }

    .footer { padding: 72px 0 0; }
    .section--ocean::before, .section--ocean::after,
    .section--sand::before, .section--sand::after,
    .footer::before { height: 40px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer__brand { grid-column: span 2; }

    .fab { width: 48px; height: 48px; bottom: 16px; right: 16px; }
    .btt { bottom: 72px; right: 20px; width: 38px; height: 38px; }

    .modal__photos img { height: 100px; }
    .modal__body { padding: 20px 16px; }
    .modal__feats { grid-template-columns: 1fr; }
}

/* ============================
   RESPONSIVE — Tablet (min 640px)
   ============================ */
@media (min-width: 640px) {
    .hero__title { font-size: 3.5rem; }
    .hero__ctas { flex-direction: row; justify-content: center; gap: 14px; }
    .hero__btn { min-width: 230px; }

    .section__title { font-size: 2.6rem; }

    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 > :last-child { grid-column: span 2; max-width: 450px; justify-self: center; }

    .dest-grid { grid-template-columns: repeat(2, 1fr); }

    .dest-map {
        height: 500px;
    }

    .trip { min-height: 440px; }
    .trip__content { padding: 56px 28px 28px; }

    .gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .gallery__item--wide { grid-column: span 2; }

    .review { flex: 0 0 55%; }
    .tips { grid-template-columns: repeat(2, 1fr); }
    .boat { grid-template-columns: 1fr 1fr; }
    .contact { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__top { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   RESPONSIVE — Desktop (min 960px)
   ============================ */
@media (min-width: 960px) {
    .wrap { padding: 0 40px; }

    .nav__burger { display: none; }

    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        align-items: center;
        gap: 28px;
        transform: none;
    }

    .nav__link {
        font-size: 0.82rem;
        font-weight: 600;
        padding: 0;
        color: var(--white);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    .nav--scrolled .nav__link {
        color: var(--navy);
        text-shadow: none;
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--coral);
        border-radius: 2px;
        transition: width 0.3s var(--ease);
    }

    .nav__link:hover::after { width: 100%; }

    .nav__link--cta {
        margin-top: 0;
        padding: 8px 24px;
    }

    .nav__link--cta::after { display: none; }
    .nav__link--lang::after { display: none; }

    .nav__link--lang {
        display: block;
        margin-top: 0;
        margin-left: 8px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .nav__lang {
        display: none;
    }

    .nav--scrolled .nav__link--cta {
        background: var(--coral);
        color: var(--white);
    }

    .hero__title { font-size: 4rem; }
    .hero__text { font-size: 1.05rem; }
    .hero__stats { gap: 56px; }
    .hero__stat-num { font-size: 2.5rem; }

    .section { padding: 100px 0; }
    .section--ocean, .section--sand { padding-top: 130px; padding-bottom: 130px; }
    .footer { padding-top: 120px; }
    .section--ocean::before, .section--ocean::after,
    .section--sand::before, .section--sand::after,
    .footer::before { height: 80px; }
    .section__title { font-size: 2.8rem; }

    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-3 > :last-child { grid-column: auto; max-width: none; }

    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .dest { min-height: 380px; }

    .trip { min-height: 440px; }
    .trip__name { font-size: 1.25rem; }
    .trip__desc { font-size: 0.88rem; }
    .trip__feats { grid-template-columns: 1fr 1fr; }
    .trip__content { padding: 28px 28px 28px; }

    .gallery { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .reviews {
        scroll-snap-type: x mandatory;
    }
    .review {
        flex: 0 0 calc(33.333% - 11px);
    }
    .review:hover { transform: translateY(-4px); }
    .reviews__arrow { display: flex; }
    .reviews__dots { display: none; }
    .tips { grid-template-columns: repeat(3, 1fr); }

    .skipper { grid-template-columns: auto 1fr; gap: 64px; }
    .skipper__photo { width: 300px; height: 300px; }

    .contact__map { min-height: 400px; }
    .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ============================
   RESPONSIVE — Large Desktop (min 1200px)
   ============================ */
@media (min-width: 1200px) {
    .hero__title { font-size: 4.5rem; }
    .section__title { font-size: 3rem; }
}
