@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 500 700;
    font-display: optional;
    src: url("../fonts/cormorant-garamond-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 500 700;
    font-display: optional;
    src: url("../fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 500 700;
    font-display: optional;
    src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #f6f2e9;
    --surface: #fff;
    --surface-soft: #f1ebdd;
    --ink: #13263a;
    --muted: #5c6b7a;
    --line: #e4dccb;
    --navy: #0d2338;
    --navy-2: #122e48;
    --gold: #c4a66c;
    --gold-deep: #8f7440;
    --green: #318758;
    --red: #b85c54;
    --shadow: 0 18px 50px rgba(13, 35, 56, .1);
    --radius: 20px;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
    --bg: #091521;
    --surface: #11202f;
    --surface-soft: #182b3e;
    --ink: #f1ece1;
    --muted: #a2b2c1;
    --line: #263c51;
    --navy: #071725;
    --navy-2: #0f263b;
    --gold: #d0b174;
    --gold-deep: #d0b174;
    --shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@keyframes bbtWave { 0%, 100% { transform: rotate(-9deg); } 50% { transform: rotate(9deg); } }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: var(--font-display); letter-spacing: -.02em; }
h1 { font-size: clamp(2.7rem, 5vw, 4.3rem); line-height: .98; }
h2 { font-size: clamp(2.15rem, 4vw, 3rem); line-height: 1.04; }
h3 { line-height: 1.2; }
.heading-icon {
    display: inline-grid;
    width: 1.08em;
    height: 1.08em;
    margin-inline-end: .2em;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--gold) 52%, transparent);
    border-radius: 50%;
    vertical-align: .08em;
    background: linear-gradient(145deg, color-mix(in srgb, var(--gold) 19%, var(--surface)), color-mix(in srgb, var(--gold) 7%, var(--surface)));
    box-shadow: 0 8px 22px rgba(13, 35, 56, .1), inset 0 1px 0 rgba(255, 255, 255, .62);
}
.heading-icon::before {
    content: attr(data-icon);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: .52em;
    font-weight: 400;
    line-height: 1;
    transform: translateY(.02em);
}
.heading-icon--hero, .heading-icon--dark {
    border-color: rgba(216, 198, 146, .58);
    background: linear-gradient(145deg, rgba(216, 198, 146, .22), rgba(255, 255, 255, .08));
    box-shadow: 0 9px 24px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.heading-icon--compact { width: 1.38em; height: 1.38em; margin-inline-end: .3em; vertical-align: .01em; }
.heading-icon--compact::before { font-size: .66em; }
.heading-icon--footer { width: 1.65em; height: 1.65em; margin-inline-end: .42em; border-color: rgba(216, 198, 146, .4); background: rgba(216, 198, 146, .1); vertical-align: -.25em; box-shadow: none; }
.heading-icon--footer::before { font-size: .8em; }
.comparison-card.featured .heading-icon { border-color: rgba(216, 198, 146, .45); background: rgba(216, 198, 146, .12); box-shadow: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 84px; }
.section, .dark-section, .site-footer { content-visibility: auto; contain-intrinsic-size: auto 700px; }
.anchor-section { scroll-margin-top: 92px; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 999; padding: 10px 16px; background: var(--surface); color: var(--ink); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }
.eyebrow { margin: 0 0 8px; color: var(--gold-deep); font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-light { color: #d8c692; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 600; font-size: .9rem; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: #10233a; }
.button-gold:hover { background: #d5b97f; color: #10233a; }
.button-dark { background: var(--navy); color: #f7f3eb; }
.button-dark:hover { background: var(--navy-2); color: #fff; }
.button-light { background: #fff; color: #12263a; }
.button-light:hover { background: #f4eee2; color: #12263a; }
.button-outline { border-color: var(--gold); color: var(--gold); }
.button-outline:hover { background: var(--gold); color: #10233a; }
.button-small { min-height: 44px; padding: 8px 17px; font-size: .82rem; }
.button-block { width: 100%; border-radius: 11px; }

.announcement { display: flex; justify-content: center; gap: 22px; padding: 8px 24px; background: var(--navy); color: #e8e0ce; font-size: .78rem; letter-spacing: .02em; text-align: center; }
.announcement span:nth-child(even) { opacity: .4; }
.site-header { position: sticky; top: 0; z-index: 90; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; gap: 28px; width: min(1400px, calc(100% - 56px)); min-height: 72px; margin-inline: auto; }
.brand { flex: 0 0 auto; color: var(--ink); font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: .01em; }
.brand:hover { color: var(--ink); }
.brand span { color: var(--gold); }
.brand small { color: var(--muted); font-family: var(--font-body); font-size: .61em; font-weight: 400; }
.site-nav { display: flex; align-items: center; gap: 23px; margin-left: auto; }
.site-nav a { position: relative; color: var(--ink); font-size: .9rem; white-space: nowrap; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.primary-languages { display: flex; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.primary-languages a { display: inline-flex; align-items: center; justify-content: center; min-width: 51px; height: 44px; padding: 0 10px; color: var(--ink); font-size: .72rem; }
.primary-languages a.is-active { background: var(--navy); color: #f1ece1; }
.language-menu { position: relative; }
.language-menu summary { display: inline-flex; align-items: center; justify-content: center; gap: 4px; height: 44px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .72rem; cursor: pointer; list-style: none; }
.language-menu summary::-webkit-details-marker { display: none; }
.mobile-language-count, .language-dropdown .primary-language-duplicate { display: none; }
.language-dropdown { position: absolute; top: 45px; right: 0; z-index: 120; display: grid; width: 210px; padding: 9px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.language-dropdown a { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 10px; border-radius: 8px; color: var(--ink); font-size: .8rem; white-space: nowrap; }
.language-dropdown a:hover, .language-dropdown a.is-active { background: var(--surface-soft); color: var(--ink); }
.language-dropdown small { color: var(--muted); font-size: .68rem; }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: .78rem; cursor: pointer; }
.theme-toggle { min-width: 44px; padding: 0; font-size: 1rem; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 680px; overflow: hidden; background: #0d2338; }
.hero-image, .subhero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 20, 32, .28), rgba(6, 20, 32, .12) 38%, rgba(6, 20, 32, .78)); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 680px; padding-block: 80px 38px; }
.glass-panel { width: min(820px, 100%); padding: 28px 32px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 24px; background: rgba(8, 25, 40, .4); color: #fff; backdrop-filter: blur(15px); box-shadow: 0 20px 60px rgba(0, 0, 0, .12); }
.glass-panel h1 { max-width: 790px; margin: 0 0 14px; color: #fdfbf5; font-weight: 600; }
.glass-panel > p:not(.eyebrow) { max-width: 660px; margin: 0; color: #e4e9ee; font-size: 1.08rem; font-weight: 300; line-height: 1.6; }
.hero-buttons { display: flex; align-items: center; gap: 22px; margin-top: 22px; }
.text-link-light { color: #fff; font-size: .92rem; font-weight: 500; }
.text-link-light:hover { color: #d8c692; }
.hero-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.hero-options a { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 18px 20px; border-radius: 16px; background: rgba(255, 253, 248, .96); color: #13263a; transition: transform .2s ease, background .2s ease; }
.hero-options a:hover { background: #fff; color: #13263a; transform: translateY(-2px); }
.hero-options strong { font-size: .95rem; }
.hero-options span { color: #765f35; font-size: .8rem; white-space: nowrap; }

.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-weight: 600; }
.section-heading > p, .split-heading > p { max-width: 620px; margin: 8px 0 0; color: var(--muted); }
.centered { text-align: center; }
.centered > p { margin-inline: auto; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.split-heading > p { max-width: 360px; text-align: right; }
.intro-section { padding-bottom: 36px; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.comparison-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.comparison-card.featured { border-color: transparent; background: var(--navy); color: #f4efe6; }
.comparison-card .popular { position: absolute; top: -12px; left: 25px; padding: 4px 11px; border-radius: 999px; background: var(--gold); color: #10233a; font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.card-index { display: block; margin-bottom: 20px; color: var(--gold-deep); font-family: var(--font-display); font-size: 1.5rem; }
.featured .card-index { color: var(--gold); }
.comparison-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.comparison-card p { min-height: 68px; margin: 0 0 18px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.comparison-card.featured p { color: #afbfce; }
.comparison-card dl { display: grid; gap: 8px; margin: 0 0 22px; }
.comparison-card dl div { display: flex; justify-content: space-between; gap: 20px; }
.comparison-card dt { color: var(--muted); font-size: .78rem; }
.comparison-card.featured dt { color: #afbfce; }
.comparison-card dd { margin: 0; font-weight: 600; font-size: .85rem; }
.comparison-card a { font-size: .84rem; font-weight: 500; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tour-card, .yacht-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.card-image { position: relative; display: block; height: 210px; overflow: hidden; background: var(--navy-2); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card-image:hover img { transform: scale(1.045); }
.time-chip { position: absolute; top: 14px; left: 14px; padding: 5px 11px; border-radius: 999px; background: rgba(13, 35, 56, .86); color: #eee8da; font-size: .72rem; }
.card-body { display: flex; flex: 1; flex-direction: column; gap: 13px; padding: 21px 22px 22px; }
.card-body h3 { margin: 0; font-size: 1.08rem; }
.card-body h3 a { color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span { padding: 5px 9px; border-radius: 8px; background: var(--surface-soft); font-size: .73rem; }
.card-body > p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.card-footer strong { display: inline-block; font-size: 1.35rem; }
.card-footer small { display: inline-block; margin-left: 4px; color: var(--muted); font-size: .72rem; line-height: 1.4; }

.dark-section { background: var(--navy); }
.dark-section .section { padding-block: 80px; }
.light-heading h2 { color: #fdfbf5; }
.light-heading > p { color: #afbfce; }
.yacht-card { border-color: rgba(203, 171, 110, .22); background: var(--navy-2); box-shadow: none; color: #f4efe6; }
.yacht-card .card-body h3 a, .yacht-card .card-footer strong { color: #fdfbf5; }
.yacht-card .card-body > p, .yacht-card .title-line > span, .yacht-card .card-footer small { color: #afbfce; }
.title-line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.chips-dark span { background: rgba(203, 171, 110, .14); color: #e8e0ce; }
.yacht-card .card-footer { border-color: rgba(203, 171, 110, .2); }

.blue-feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.blue-feature-image { height: 470px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.blue-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.blue-feature h2 { margin: 0 0 14px; }
.blue-feature > div:last-child > p:not(.eyebrow) { margin: 0 0 22px; color: var(--muted); line-height: 1.7; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; font-size: .9rem; }
.check-grid li::first-letter { color: var(--green); }
.bays-section { padding-top: 40px; }
.bays-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bays-grid figure { position: relative; height: 330px; margin: 0; overflow: hidden; border-radius: 18px; background: var(--navy); }
.bays-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bays-grid figure:hover img { transform: scale(1.04); }
.bays-grid figure::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5, 18, 29, .72)); content: ""; }
.bays-grid figcaption { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; color: #fff; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.trust-strip { padding: 32px 0; background: var(--surface); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { display: grid; gap: 2px; padding: 8px 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { color: var(--gold-deep); font-family: var(--font-display); font-size: 1.7rem; }
.trust-grid span { color: var(--muted); font-size: .78rem; }
.enquiry-section { display: grid; grid-template-columns: minmax(0, 1fr) 420px; align-items: center; gap: 80px; }
.enquiry-copy h2 { max-width: 560px; margin: 0 0 16px; }
.enquiry-copy > p:not(.eyebrow) { max-width: 580px; color: var(--muted); line-height: 1.7; }
.contact-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 28px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.contact-note > span { color: var(--gold-deep); font-size: 1.4rem; }
.contact-note strong { font-size: .9rem; }
.contact-note p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }

.booking-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.booking-card h2 { margin: 0 0 14px; font-size: 2rem; }
.booking-price { margin: 0; color: var(--ink); font-size: 1.85rem; font-weight: 600; line-height: 1.2; }
.booking-price-note { margin: 4px 0 16px; color: var(--muted); font-size: .8rem; }
.included-list { display: grid; gap: 8px; margin: 18px 0; padding: 17px 0; border-block: 1px solid var(--line); list-style: none; }
.included-list li { display: flex; gap: 9px; font-size: .84rem; }
.check { color: var(--green); }
.cross { color: var(--red); }
.booking-form { display: grid; gap: 11px; }
.booking-form label { display: grid; gap: 5px; }
.booking-form label > span { color: var(--muted); font-size: .74rem; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; outline: none; background: var(--bg); color: var(--ink); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185, 152, 94, .13); }
.booking-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-note { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.45; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; }
.home-faq { padding-top: 40px; }
.faq-list { display: grid; gap: 10px; }
.compact-faq { grid-template-columns: 1fr 1fr; }
.faq-list details { padding: 16px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; font-size: .92rem; font-weight: 500; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-deep); font-size: 1.15rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 10px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.center-link { margin: 24px 0 0; text-align: center; }

.site-footer { padding-top: 54px; background: var(--navy); color: #afbfce; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; padding-bottom: 44px; }
.brand-footer { display: inline-block; color: #f1ece1; }
.brand-footer:hover { color: #fff; }
.footer-grid > div:first-child > p { max-width: 420px; color: #afbfce; font-size: .86rem; line-height: 1.6; }
.footer-contact a { color: #e8e0ce; }
.footer-grid h2 { margin: 3px 0 14px; color: #f1ece1; font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid > div:not(:first-child) a { color: #afbfce; font-size: .84rem; }
.footer-grid > div:not(:first-child) a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px; border-top: 1px solid rgba(175, 191, 206, .18); font-size: .72rem; }
.footer-languages { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.footer-languages a { padding: 3px 8px; border: 1px solid rgba(175, 191, 206, .3); border-radius: 7px; color: #e8e0ce; font-size: .68rem; }
.footer-languages a:hover, .footer-languages a.is-active { border-color: var(--gold); color: var(--gold); }
.waving-flags { position: fixed; right: 25px; bottom: 72px; z-index: 84; display: flex; gap: 3px; direction: ltr; pointer-events: none; font-size: 1rem; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25)); }
.waving-flags span { display: inline-block; transform-origin: 50% 100%; animation: bbtWave 1.8s ease-in-out var(--flag-delay) infinite; }
.whatsapp-float { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 85; display: flex; min-height: 48px; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; background: #1fa855; color: #fff; font-size: .82rem; font-weight: 500; box-shadow: 0 10px 28px rgba(0, 0, 0, .25); }
.whatsapp-float:hover { background: #188c48; color: #fff; }
.whatsapp-float span { font-size: .65rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-block: 20px 2px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span[aria-current] { color: var(--ink); }
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; padding-top: 18px; }
.gallery-item { overflow: hidden; border-radius: 18px; background: var(--navy); }
.gallery-item-1 { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: start; gap: 54px; padding-block: 38px 78px; }
.detail-main h1 { margin: 0 0 12px; font-size: clamp(2.6rem, 5vw, 3.7rem); font-weight: 600; }
.detail-main h1 small { color: var(--muted); font-family: var(--font-body); font-size: .45em; font-weight: 300; }
.lead { max-width: 720px; margin: 0 0 30px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin: 0 0 42px; }
.spec-grid div { min-height: 82px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.spec-grid dt { margin-bottom: 4px; color: var(--muted); font-size: .69rem; }
.spec-grid dd { margin: 0; font-size: .83rem; font-weight: 600; }
.detail-section { margin-top: 44px; }
.detail-section > h2 { margin: 0 0 20px; font-size: 2.2rem; font-weight: 600; }
.section-intro { margin: -10px 0 20px; color: var(--muted); font-size: .88rem; }
.timeline { display: grid; }
.timeline-item { display: grid; grid-template-columns: 54px 14px 1fr; gap: 13px; min-height: 88px; }
.timeline-item time { color: var(--gold-deep); font-size: .76rem; font-weight: 600; text-align: right; }
.timeline-marker { position: relative; width: 10px; height: 10px; margin-top: 4px; border-radius: 50%; background: var(--gold); }
.timeline-marker::after { position: absolute; top: 10px; bottom: -74px; left: 4px; width: 2px; background: var(--line); content: ""; }
.timeline-item:last-child .timeline-marker::after { display: none; }
.timeline-item h3 { margin: 0; font-size: .93rem; }
.timeline-item p { margin: 4px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.include-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.include-columns > div { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.include-columns h3 { margin: 0 0 12px; font-size: .92rem; }
.include-columns ul { display: grid; gap: 7px; margin: 0; padding-left: 18px; color: var(--muted); font-size: .83rem; }
.prose-section p { color: var(--muted); line-height: 1.7; }
.detail-sidebar { position: sticky; top: 96px; display: grid; gap: 16px; }
.weather-card { padding: 21px; border-radius: 18px; background: var(--navy); color: #f1ece1; }
.weather-card strong { color: #fff; font-size: .9rem; }
.weather-card p { margin: 6px 0 0; color: #afbfce; font-size: .8rem; line-height: 1.55; }
.related-section { padding-top: 0; }
.mini-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card { display: grid; grid-template-columns: 170px 1fr; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.mini-card:hover { color: var(--ink); }
.mini-card img { width: 100%; height: 128px; object-fit: cover; }
.mini-card span { display: grid; gap: 4px; padding: 18px; }
.mini-card small { color: var(--muted); }

.subhero { position: relative; height: 480px; overflow: hidden; background: var(--navy); }
.subhero-content { position: relative; z-index: 2; display: flex; align-items: flex-end; height: 100%; padding-bottom: 42px; }
.subhero .glass-panel h1 { font-size: clamp(2.8rem, 5vw, 4rem); }
.blue-layout { padding-top: 32px; }
.blue-layout .detail-main > h2 { margin: 0 0 20px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-card { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.choice-card h3 { margin: 0 0 5px; }
.choice-card > strong { color: var(--gold-deep); font-size: 1.25rem; }
.choice-card strong small { color: var(--muted); font-size: .7rem; font-weight: 400; }
.choice-card p { margin: 12px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.dark-choice { border-color: transparent; background: var(--navy); color: #f1ece1; }
.dark-choice > strong { color: var(--gold); }
.dark-choice p, .dark-choice strong small { color: #afbfce; }
.route-list { display: grid; gap: 13px; }
.route-list article { display: grid; grid-template-columns: 44px 1fr 190px; align-items: center; gap: 18px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.day-number { color: var(--gold-deep); font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.route-list h3 { margin: 0; font-size: .94rem; }
.route-list p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.route-list img { width: 190px; height: 88px; border-radius: 10px; object-fit: cover; }
.feature-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.feature-panels > div { padding: 19px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.feature-panels > div > span { font-size: 1.35rem; }
.feature-panels h3 { margin: 8px 0 6px; font-size: .9rem; }
.feature-panels p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }

.faq-hero { max-width: 820px; padding-top: 72px; text-align: center; }
.faq-hero h1 { margin: 0 0 12px; }
.faq-hero > p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.65; }
.faq-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding-block: 30px 50px; }
.faq-jump a { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid transparent; border-radius: 999px; background: var(--surface-soft); color: var(--ink); font-size: .78rem; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.faq-jump a > span { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 1rem; line-height: 1; }
.faq-jump a:hover { border-color: var(--gold); background: var(--surface); color: var(--ink); transform: translateY(-1px); }
.faq-page { max-width: 900px; padding-bottom: 80px; }
.faq-category { display: grid; grid-template-columns: 190px 1fr; gap: 35px; padding: 32px 0; border-top: 1px solid var(--line); }
.faq-category-title { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 12px; align-self: start; }
.faq-category-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid color-mix(in srgb, var(--gold) 48%, transparent); border-radius: 16px; background: linear-gradient(145deg, color-mix(in srgb, var(--gold) 19%, var(--surface)), color-mix(in srgb, var(--gold) 6%, var(--surface))); font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 1.38rem; line-height: 1; box-shadow: 0 8px 20px rgba(13, 35, 56, .08); }
.faq-category-title small { display: block; margin-bottom: 1px; color: var(--gold-deep); font-family: var(--font-body); font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.faq-category-title h2 { margin: 0; font-size: 1.8rem; }
.faq-contact { margin-top: 36px; padding: 34px; border-radius: var(--radius); background: var(--navy); color: #f1ece1; text-align: center; }
.faq-contact h2 { margin: 0 0 7px; color: #fff; font-size: 2rem; }
.faq-contact p { margin: 0 0 19px; color: #afbfce; font-size: .86rem; }
.not-found { min-height: 580px; padding-block: 130px; text-align: center; }
.not-found h1 { margin: 0 0 14px; }
.not-found > p:not(.eyebrow) { max-width: 590px; margin: 0 auto 24px; color: var(--muted); }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .site-nav { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .split-heading > p { text-align: left; }
html[dir="rtl"] .time-chip { right: 14px; left: auto; }
html[dir="rtl"] .card-footer small { margin-right: 4px; margin-left: 0; }
html[dir="rtl"] .included-list li, html[dir="rtl"] .contact-note { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .include-columns ul { padding-right: 18px; padding-left: 0; }
html[dir="rtl"] .timeline-item { grid-template-columns: 1fr 14px 54px; }
html[dir="rtl"] .timeline-item time { grid-column: 3; grid-row: 1; text-align: left; }
html[dir="rtl"] .timeline-marker { grid-column: 2; grid-row: 1; }
html[dir="rtl"] .timeline-item > div { grid-column: 1; grid-row: 1; }
html[dir="rtl"] .language-dropdown { right: auto; left: 0; }

@media (max-width: 1120px) {
    .header-inner { width: min(100% - 36px, 1180px); gap: 16px; }
    .site-nav { gap: 15px; }
    .site-nav a { font-size: .82rem; }
    .header-cta { display: none; }
    .detail-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .enquiry-section { gap: 50px; }
}

@media (max-width: 900px) {
    .announcement span:nth-last-child(-n+2) { display: none; }
    .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line); border-radius: 999px; background: transparent; }
    .menu-toggle span { width: 16px; height: 1.5px; margin-inline: auto; background: var(--ink); }
    .menu-toggle b { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0,0,0,0); }
    .site-nav { position: fixed; top: 72px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; height: calc(100vh - 72px); height: calc(100dvh - 72px); padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); background: var(--bg); }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .site-nav a::after { display: none; }
    .header-actions { margin-left: 0; }
    .hero-options { grid-template-columns: 1fr; max-width: 600px; }
    .hero-options a { padding: 13px 17px; }
    .comparison-grid, .card-grid { grid-template-columns: 1fr 1fr; }
    .comparison-card:last-child, .tour-card:last-child, .yacht-card:last-child { grid-column: 1 / -1; }
    .tour-card:last-child, .yacht-card:last-child { display: grid; grid-template-columns: 1fr 1fr; }
    .tour-card:last-child .card-image, .yacht-card:last-child .card-image { height: 100%; min-height: 280px; }
    .blue-feature { gap: 34px; }
    .blue-feature-image { height: 430px; }
    .bays-grid { grid-template-columns: repeat(2, 1fr); }
    .bays-grid figure { height: 300px; }
    .enquiry-section { grid-template-columns: 1fr 390px; gap: 32px; }
    .gallery { grid-template-columns: 2fr 1fr; grid-template-rows: 180px 180px; }
    .gallery-item-4, .gallery-item-5 { display: none; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; width: min(100%, 520px); }
    .detail-sidebar .booking-card { scroll-margin-top: 92px; }
    .feature-panels { grid-template-columns: 1fr; }
    .footer-grid { gap: 38px; }
}

@media (max-width: 700px) {
    .shell { width: min(100% - 32px, 1180px); }
    .section { padding-block: 64px; }
    .announcement { justify-content: flex-start; overflow: hidden; padding-inline: 16px; font-size: .69rem; white-space: nowrap; }
    .announcement span:nth-child(2) { display: none; }
    .header-inner { width: calc(100% - 28px); min-height: 64px; }
    .brand { font-size: 1.27rem; }
    .site-nav { top: 64px; height: calc(100vh - 64px); height: calc(100dvh - 64px); }
    .primary-languages { display: none; }
    .desktop-language-count { display: none; }
    .mobile-language-count, .language-dropdown .primary-language-duplicate { display: flex; }
    .language-menu summary { min-width: 43px; font-size: .7rem; }
    .theme-toggle { display: none; }
    .hero, .hero-content { min-height: 690px; }
    .hero-content { justify-content: flex-end; padding-block: 55px 24px; }
    .glass-panel { padding: 23px 21px; border-radius: 20px; }
    .glass-panel h1 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
    .glass-panel > p:not(.eyebrow) { font-size: .94rem; }
    .hero-buttons { align-items: flex-start; flex-direction: column; gap: 13px; }
    .hero-options { display: none; }
    .intro-section { padding-bottom: 16px; }
    .split-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .split-heading > p { text-align: left; }
    .comparison-grid, .card-grid { grid-template-columns: 1fr; }
    .comparison-card:last-child, .tour-card:last-child, .yacht-card:last-child { grid-column: auto; }
    .tour-card:last-child, .yacht-card:last-child { display: flex; }
    .tour-card:last-child .card-image, .yacht-card:last-child .card-image, .card-image { height: 220px; min-height: 0; }
    .comparison-card p { min-height: 0; }
    .blue-feature { grid-template-columns: 1fr; }
    .blue-feature-image { height: 370px; }
    .blue-feature > div:last-child { padding-inline: 3px; }
    .check-grid { grid-template-columns: 1fr; }
    .bays-grid { gap: 10px; }
    .bays-grid figure { height: 230px; border-radius: 14px; }
    .bays-grid figcaption { right: 12px; bottom: 12px; left: 12px; font-size: 1.1rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .trust-grid div { border-bottom: 1px solid var(--line); }
    .trust-grid div:nth-child(2) { border-right: 0; }
    .trust-grid div:nth-last-child(-n+2) { border-bottom: 0; }
    .enquiry-section { grid-template-columns: 1fr; }
    .booking-card { padding: 22px; }
    .compact-faq { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-languages { justify-content: flex-start; }
    .waving-flags { right: max(16px, env(safe-area-inset-right)); bottom: max(63px, calc(49px + env(safe-area-inset-bottom))); font-size: .88rem; }
    .whatsapp-float { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); padding: 10px 15px; }
    .breadcrumbs { overflow: hidden; flex-wrap: nowrap; padding-top: 15px; white-space: nowrap; }
    .breadcrumbs > * { overflow: hidden; text-overflow: ellipsis; }
    .gallery { width: 100%; grid-template-columns: 1fr 1fr; grid-template-rows: 330px 120px; gap: 5px; padding-top: 12px; }
    .gallery-item { border-radius: 0; }
    .gallery-item-1 { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item-4, .gallery-item-5 { display: none; }
    .detail-layout { padding-top: 30px; }
    .spec-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .spec-grid div { min-height: 78px; padding: 12px; }
    .include-columns { grid-template-columns: 1fr; }
    .mini-card-grid { grid-template-columns: 1fr; }
    .mini-card { grid-template-columns: 130px 1fr; }
    .subhero { height: 520px; }
    .subhero-content { padding-bottom: 24px; }
    .choice-grid { grid-template-columns: 1fr; }
    .route-list article { grid-template-columns: 36px 1fr; padding: 15px; }
    .route-list article img { grid-column: 1 / -1; width: 100%; height: 150px; }
    .faq-hero { padding-top: 54px; }
    .faq-jump { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 36px; scrollbar-width: thin; }
    .faq-jump a { flex: 0 0 auto; }
    .faq-category { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 430px) {
    .menu-toggle { order: 3; }
    .header-actions { margin-left: auto; }
    .spec-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .card-footer { align-items: flex-end; }
    .card-footer small { margin-left: 0; }
    .gallery { grid-template-rows: 270px 105px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
