@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    --red: #e3000f;
    --red-dk: #b8000c;
    --red-glow: rgba(227, 0, 15, .18);
    --black: #080808;
    --dark: #0f0f0f;
    --card: #141414;
    --card2: #1a1a1a;
    --border: #242424;
    --border2: #2e2e2e;
    --muted: #b1b1b1;
    --light: #bbb;
    --white: #fff;
    --nav-h: 64px;
    --r: 15px 3px;
    --ease: cubic-bezier(.25, .46, .45, .94);
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s, opacity .2s
}

button {
    cursor: pointer;
    font-family: inherit
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--dark)
}

::-webkit-scrollbar-thumb {
    background: var(--border2);
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red)
}

/* ── SELECTION ──────────────────────────────────────────────── */
::selection {
    background: var(--red);
    color: #fff
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════════ */
.ts-display {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: .88;
    letter-spacing: -.01em;
}

.ts-label {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .35rem;
    margin-top: .65rem;
}

.eyebrow {
    font-family: "Oxanium", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-dk));
    border-radius: 1px;
}

.section-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 2.2rem);
    letter-spacing: -.01em;
    text-transform: uppercase;
    line-height: .92;
}

.ts-red {
    color: var(--red) !important
}

.ts-muted {
    color: var(--muted) !important
}

.ts-italic {
    font-style: italic
}

.stats-headline span {
    display: block;
    -webkit-text-stroke: 1px rgb(255 0 0 / 80%);
    color: transparent !important;
    letter-spacing: 5px;
}

/* ══════════════════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════════════════ */
.ts-logo img {
    height: 36px;
    width: auto;
    display: block
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR — Bootstrap .navbar resets + custom styles
══════════════════════════════════════════════════════════════ */
.ts-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    height: var(--nav-h);
    background: #000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0;
    transition: box-shadow .3s, background .3s;
}

.ts-nav.scrolled {
    background: rgba(8, 8, 8, .98);
    box-shadow: 0 2px 40px rgba(0, 0, 0, .8);
}

.ts-nav .inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.nav-links a {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    padding: .5rem 1rem;
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1)
}

.nav-hamburger {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform .3s, opacity .3s; margin: 4px 0;
}

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

.nav-hamburger.open span:nth-child(2) {
    opacity: 0
}

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

/* Mobile Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(8, 8, 8, .98);
    backdrop-filter: blur(24px);
    z-index: 1040;
    flex-direction: column;
    padding: 2rem 2rem;
    gap: 0;
    border-top: 1px solid var(--border);
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: color .2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--red)
}

.mobile-nav .mob-cta {
    margin-top: 2rem;
    border: none;
    border-radius: var(--r)
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--red);
    color: #fff;
    border: none;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .54rem 1.75rem;
    transform: skew(-10deg);
    position: relative;
    overflow: hidden;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

.btn-red::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transform: translateX(-100%);
    transition: transform .45s;
}

.btn-red:hover {
    background: var(--red-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(227, 0, 15, .35);
    color: #fff
}

.btn-red:hover::after {
    transform: translateX(100%)
}

.btn-red:active {
    transform: translateY(0)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .28);
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .72rem 1.75rem;
    transform: skew(-10deg);
    transition: border-color .2s, background .2s, transform .15s;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    transform: translateY(-1px)
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .28);
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .72rem 1.75rem;
    transform: skew(-10deg);
    transition: border-color .2s, color .2s;
    white-space: nowrap;
}

.btn-wa:hover {
    border-color: #25D366;
    color: #25D366
}

.link-red {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: gap .2s, opacity .2s;
    margin-bottom: 18px;
}

.link-red:hover {
    gap: .55rem;
    opacity: .8
}

/* ══════════════════════════════════════════════════════════════
   CHECKERED STRIPE
══════════════════════════════════════════════════════════════ */
.check-stripe {
    height: 4px;
    background: repeating-linear-gradient(90deg,
            var(--red) 0, var(--red) 16px, #000 16px, #000 32px);
    display: none;
}

/* ══════════════════════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(75vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/main-banner.jpg') center 35%/cover no-repeat;
    z-index: 0;
    transform-origin: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1) }
    to   { transform: scale(1.04) }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, .97) 0%, rgba(8, 8, 8, .8) 30%, rgba(8, 8, 8, .1) 100%),
        linear-gradient(0deg, rgba(8, 8, 8, .5) 0%, transparent 40%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    z-index: 2;
}

.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem 2rem;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    max-width: 720px
}

.hero-eyebrow {
    font-family: "Oxanium", sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    padding: .28rem .75rem;
    font-style: italic;
}

.hero-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: clamp(3.6rem, 5.5vw, 8rem);
    line-height: .88;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.hero-title .line2 {
    color: var(--red);
    font-style: italic;
    display: block
}

.hero-title .line3 {
    font-style: italic;
    display: block;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    color: transparent;
    letter-spacing: 2px;
}

.hero-tag {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: .6rem;
}

.hero-sub {
    font-size: .88rem;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 430px;
}

.hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════════════════════════
   FEATURES BAR
   Layout handled by Bootstrap row/col (col-12 col-sm-6 col-lg-3)
══════════════════════════════════════════════════════════════ */
.feat-bar {
    background: var(--dark);
    position: relative;
    max-width: 1440px;
    margin: 0rem 2.5rem 3rem;
    border: 1px solid rgb(255 0 0 / 0.5);
    transform: skew(-10deg);
}

.feat-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.feat-item {
    display: flex;
    gap: .9rem;
    padding: 0rem 1.4rem;
    transition: background .2s;
    position: relative;
    margin: 1rem 0;
}

.feat-item + .feat-item {
    border-left: 1px solid #6c6c6c
}

.feat-item:hover {
    background: rgba(255, 255, 255, .025)
}

.feat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s var(--ease);
}

.feat-item:hover::before {
    transform: scaleY(1)
}

.feat-icon-hex {
    width: 50px;
    justify-content: center;
}

.feat-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}

.feat-desc {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.5
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════ */
.section {
    padding: 1rem 0
}

.section-dark {
    background: #0c0c0c
}

.section-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem
}

.section-head {
    margin-bottom: 1.75rem
}

.red-bar {
    width: 44px;
    height: 2px;
    background: var(--red);
    margin: .5rem 0 0
}

/* ══════════════════════════════════════════════════════════════
   EXPERIENCE GRID — Bootstrap row with col-12 col-sm-6 col-md-4 col-xl-2
══════════════════════════════════════════════════════════════ */
.exp-grid {
    --bs-gutter-x: .4rem;
    --bs-gutter-y: .4rem;
}

.exp-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    cursor: pointer;
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s;
    background: var(--card);
}

.exp-card:hover {
    border-color: var(--red);
    transform: translateY(-6px)
}

.exp-img {
    height: 125px;
    background-size: cover;
    background-position: center;
    transition: transform .5s var(--ease);
}

.exp-card:hover .exp-img {
    transform: scale(1.08)
}

.exp-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 8, 8, .85) 0%, transparent 55%);
}

.exp-foot {
    padding: .9rem .95rem .85rem;
    background: var(--card);
    position: relative;
    z-index: 1;
}

.exp-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: .95rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: .3rem;
}

.exp-desc {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: .45rem
}

/* ══════════════════════════════════════════════════════════════
   YACHT SMALL CARDS — Bootstrap row with col-12 col-sm-6 col-md-4 col-xl-2
══════════════════════════════════════════════════════════════ */
.yacht-grid {
    --bs-gutter-x: .4rem;
    --bs-gutter-y: .4rem;
}

.yacht-sm {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    display: block;
    color: var(--white);
}

.yacht-sm:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    color: var(--white)
}

.yacht-sm-img {
    height: 115px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.yacht-sm-body {
    padding: .7rem .8rem .75rem
}

.yacht-sm-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .28rem;
}

.yacht-sm-specs {
    font-size: .68rem;
    color: var(--muted);
    display: flex;
    gap: .55rem;
    margin-bottom: .32rem;
}

.yacht-sm-specs span {
    display: flex;
    align-items: center;
    gap: .22rem
}

.yacht-sm-from {
    font-size: .58rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.yacht-sm-price {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .9rem;
}

.yacht-sm-price span {
    color: var(--muted);
    font-size: .58rem;
    font-weight: 400;
    font-family: 'Barlow', sans-serif
}

.yacht-sm-arrow {
    font-size: .68rem;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: .22rem;
    margin-top: .35rem;
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

/* ══════════════════════════════════════════════════════════════
   STATS BANNER — Bootstrap row align-items-center g-4
══════════════════════════════════════════════════════════════ */
.stats-banner {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 30px;
}

.stats-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
}

.stats-headline {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1;
    float: left;
}

.stats-sub {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: .4rem;
    max-width: 340px;
    float: left;
    margin-left: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding-left: 2rem;
    border-left: 1px solid var(--border);
}

.stat-icon {
    font-size: 1.7rem;
    color: var(--muted)
}

.stat-num {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--red);
    text-align: center;
}

.stat-lbl {
    font-size: .6rem;
    letter-spacing: .14em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: .15rem;
    text-align: center;
    font-weight: 600
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: calc(var(--nav-h)*.5 + 2.5rem) 0 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/inner-banner.jpg')
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(227, 0, 15, .2));
}

.page-hero .accent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--red), rgba(227, 0, 15, .15));
}

.page-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(3.5rem, 7vw, 6rem);
    text-transform: uppercase;
    line-height: .88;
    margin-top: .6rem;
}

.page-hero-sub {
    font-size: .88rem;
    color: var(--muted);
    margin-top: .85rem;
    max-width: 520px;
    line-height: 1.7
}

/* ══════════════════════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════════════════════ */
.filter-bar {
    background: rgba(15, 15, 15, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
}

.filter-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: .7rem 2.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.filter-label {
    font-family: "Oxanium", sans-serif;
    font-size: .65rem;
    letter-spacing: .18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-right: .25rem;
    flex-shrink: 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 100px;
    transition: all .2s;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: rgba(227, 0, 15, .5);
    color: var(--white)
}

.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

/* ══════════════════════════════════════════════════════════════
   YACHT LISTING CARD (yachts.html)
══════════════════════════════════════════════════════════════ */
.yacht-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    display: block;
    color: var(--white);
}

.yacht-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    color: var(--white)
}

.yacht-card-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.yacht-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 8, 8, .7) 0%, transparent 50%);
    transition: opacity .3s;
}

.yacht-card:hover .yacht-card-img::after {
    opacity: .5
}

.yacht-badge {
    position: absolute;
    top: .7rem;
    left: .7rem;
    z-index: 1;
    background: var(--red);
    color: #fff;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .22rem .65rem;
    border-radius: 100px;
}

.yacht-card-body {
    padding: 1.1rem 1rem 1rem
}

.yacht-card-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.25rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: .45rem;
}

.yacht-specs {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: .65rem
}

.spec-item {
    font-size: .74rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .26rem
}

.yacht-price {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: .85rem
}

.yacht-price small {
    font-size: .7rem;
    color: var(--muted);
    font-style: normal;
    font-weight: 400;
    font-family: 'Barlow', sans-serif
}

/* ══════════════════════════════════════════════════════════════
   DETAIL HERO
══════════════════════════════════════════════════════════════ */
.detail-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, .75) 38%, rgba(8, 8, 8, .6) 100%),
        linear-gradient(90deg, rgba(8, 8, 8, .9) 0%, transparent 100%);
}

.detail-hero-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

.detail-title-line1 {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 5.5vw, 6.5rem);
    text-transform: uppercase;
    line-height: .88;
    letter-spacing: .01em;
    font-style: italic;
}

.detail-title-line2 {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    text-transform: uppercase;
    line-height: .88;
    color: var(--red);
    letter-spacing: .01em;
}

.detail-sub {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .06em;
    margin: .6rem 0 .9rem
}

.detail-sub span {
    color: rgba(255, 255, 255, .25);
    margin: 0 .4rem
}

.detail-specs {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: .85rem;
    align-items: flex-end;
    transform: skew(-10deg);
    border: 1px solid #535353;
    padding: 16px;
    max-width: 640px;
}

.detail-spec-item {
    display: flex;
    align-items: center;
    gap: .5rem
}

.detail-spec-item img {
    width: 36px;
}

.detail-spec-item i {
    font-size: 1rem;
    color: var(--muted)
}

.detail-spec-val {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1;
}

.detail-spec-lbl {
    font-size: .58rem;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase
}

.detail-price {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--red);
}

.detail-price small {
    font-size: .68rem;
    color: var(--muted);
    font-style: normal;
    font-family: 'Barlow', sans-serif;
    font-weight: 400
}

.track-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgb(255 0 0 / 0.5);
    color: #fff;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .28rem 1rem;
    margin-bottom: .5rem;
    transform: skew(-10deg);
}

.detail-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .9rem
}

/* ══════════════════════════════════════════════════════════════
   CONTENT CARD
══════════════════════════════════════════════════════════════ */
.content-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.5rem 1.4rem;
    margin-bottom: .6rem;
}

.card-heading {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--border);
}

.card-heading-dashes {
    display: inline-flex;
    gap: 3px;
    margin-left: .1rem;
}

.card-heading-dashes span {
    height: 2px;
    background: var(--red);
    display: inline-block;
    border-radius: 1px;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem
}

.check-list li {
    font-size: .83rem;
    color: var(--light);
    padding: .42rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .55rem;
}

.check-list li:nth-last-child(-n+2) {
    border-bottom: none
}

.check-list li i {
    color: var(--red);
    flex-shrink: 0;
    font-size: 1.2rem
}

/* ══════════════════════════════════════════════════════════════
   ENQUIRY CARD
══════════════════════════════════════════════════════════════ */
.enquiry-card {
    background: var(--card);
    border: 1px solid rgb(255 0 0 / 0.5);
    border-radius: var(--r);
    padding: 1.5rem 1.4rem;
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.eq-row {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: .7rem .95rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .45rem;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color .2s;
}

.eq-row:hover {
    border-color: var(--red)
}

.eq-row-left {
    display: flex;
    align-items: center;
    gap: .6rem
}

.eq-row-icon {
    color: var(--red);
    font-size: .95rem;
    flex-shrink: 0
}

.eq-row-label {
    font-family: "Oxanium", sans-serif;
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    line-height: 1;
    margin-bottom: .14rem;
}

.eq-row-val {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: #fff;
}

.eq-chevron {
    color: var(--red);
    font-size: .75rem
}

.ts-input {
    width: 100%;
    background: var(--card2);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: var(--r);
    padding: .65rem .95rem;
    font-size: .86rem;
    font-family: 'Barlow', sans-serif;
    outline: none;
    transition: border-color .2s;
}

.ts-input:focus {
    border-color: var(--red)
}

.ts-input::placeholder {
    color: #333
}

.wa-box {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .75rem;
}

.wa-box-text {
    font-size: .76rem;
    color: var(--muted)
}

.wa-box-text strong {
    color: #fff;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem
}

/* ══════════════════════════════════════════════════════════════
   GALLERY THUMBS
══════════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .4rem;
    margin-bottom: .85rem;
}

.g-thumb {
    height: 108px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.g-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/camera.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 10;
}

.g-thumb:hover::after {
    background-color: rgba(227, 0, 15, .5);
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════ */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex
}

#lb-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    max-height: calc(100vh - 130px);
    width: 100%;
}

#lb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--r)
}

#lb-caption {
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
    padding: .5rem
}

#lb-counter {
    font-family: "Oxanium", sans-serif;
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

#lb-close {
    position: absolute;
    top: .75rem;
    right: 1rem;
    background: var(--red);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: var(--r);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lb-close:hover {
    background: var(--red-dk)
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, .85);
    border: 1px solid var(--border);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}

.lb-nav:hover {
    background: var(--red);
    border-color: var(--red)
}

#lb-prev { left: 1rem }
#lb-next { right: 1rem }

#lb-thumbs {
    display: flex;
    gap: .4rem;
    padding: .7rem 1rem;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.lb-thumb {
    width: 58px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: var(--r);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s, border-color .2s;
}

.lb-thumb.active {
    border-color: var(--red);
    opacity: 1
}

.lb-thumb:hover {
    opacity: 1
}

/* ══════════════════════════════════════════════════════════════
   WHAT'S INCLUDED
══════════════════════════════════════════════════════════════ */
.includes-bar {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.includes-bar-head {
    background: var(--dark);
    padding: .9rem 1.4rem;
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 1px solid var(--border);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr)
}

.inc-item {
    padding: 1rem .75rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.inc-item img {
    width: 30px;
    margin: auto;
    padding-bottom: 8px;
}

.inc-item:hover {
    background: rgba(255, 255, 255, .02)
}

.inc-item:last-child {
    border-right: none
}

.inc-icon {
    font-size: 1.25rem;
    color: var(--red);
    display: block;
    margin-bottom: .38rem
}

.inc-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: .22rem;
}

.inc-desc {
    font-size: .66rem;
    color: var(--muted);
    line-height: 1.35
}

/* ══════════════════════════════════════════════════════════════
   SIMILAR YACHTS
══════════════════════════════════════════════════════════════ */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem
}

.similar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: grid;
    grid-template-columns: 165px 1fr;
    overflow: hidden;
    transition: border-color .3s;
    color: #fff;
}

.similar-card:hover {
    border-color: var(--red);
    color: #fff
}

.similar-img {
    background-size: cover;
    background-position: center
}

.similar-body {
    padding: 1rem
}

.similar-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}

.similar-price {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: .9rem;
    margin-top: .45rem;
}

/* ══════════════════════════════════════════════════════════════
   F1 WEEKEND PAGE
══════════════════════════════════════════════════════════════ */
.f1-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.f1-why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 1.4rem 1.25rem;
    transition: background .2s;
}

.f1-why-card:hover {
    background: var(--card2)
}

.f1-why-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: .6rem
}

.f1-why-icon img {
    width: 50px;
    margin-bottom: 20px;
}

.f1-why-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.f1-why-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem
}

.schedule-day {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .25s;
}

.schedule-day:hover {
    border-color: rgba(227, 0, 15, .4)
}

.schedule-day.race-day {
    border-color: var(--red)
}

.schedule-day-head {
    background: var(--dark);
    padding: .7rem .9rem;
    border-bottom: 1px solid var(--border);
}

.schedule-day.race-day .schedule-day-head {
    background: var(--red)
}

.schedule-dow {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.schedule-day.race-day .schedule-dow {
    color: rgba(255, 255, 255, .75)
}

.schedule-label {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.schedule-events {
    padding: .7rem .9rem
}

.schedule-event {
    display: flex;
    gap: .6rem;
    padding: .38rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .76rem
}

.schedule-event:last-child {
    border-bottom: none
}

.schedule-time {
    color: var(--red);
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    width: 48px
}

.schedule-name {
    color: var(--light)
}

/* Packages */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem
}

.pkg-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: border-color .3s, transform .3s;
}

.pkg-card:hover {
    border-color: rgba(227, 0, 15, .5);
    transform: translateY(-4px)
}

.pkg-card.featured {
    border-color: var(--red)
}

.pkg-popular {
    position: absolute;
    top: -1px;
    right: 1.25rem;
    background: var(--red);
    color: #fff;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .2rem .65rem;
    border-radius: 0 0 var(--r) var(--r);
}

.pkg-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.pkg-price {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: .2rem;
}

.pkg-price small {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 400;
    font-style: normal;
    font-family: 'Barlow', sans-serif
}

.pkg-per {
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: 1.25rem
}

.pkg-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .42rem
}

.pkg-features li {
    font-size: .82rem;
    color: var(--light);
    display: flex;
    align-items: flex-start;
    gap: .5rem
}

.pkg-features li i {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 1px
}

/* FAQ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: .45rem;
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: var(--card);
    border: none;
    color: #fff;
    text-align: left;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 1rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color .2s;
}

.faq-q:hover,
.faq-q.open {
    color: var(--red)
}

.faq-q i {
    transition: transform .3s;
    flex-shrink: 0
}

.faq-q.open i {
    transform: rotate(180deg)
}

.faq-a {
    background: #111;
    border-top: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.75;
}

.faq-a.open {
    max-height: 320px;
    padding: 1rem 1.1rem
}

/* ══════════════════════════════════════════════════════════════
   HOSPITALITY PAGE
══════════════════════════════════════════════════════════════ */
.hosp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem
}

.hosp-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.hosp-card:hover {
    border-color: var(--red);
    transform: translateY(-4px)
}

.hosp-card-head {
    padding: 1.25rem 1.2rem .75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.hosp-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hosp-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.hosp-tag {
    font-size: .65rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: .22rem
}

.hosp-body {
    padding: 1rem 1.2rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative
}

.process-step::after {
    content: '';
    position: absolute;
    right: -.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 45%;
    background: var(--border);
}

.process-step:last-child::after {
    display: none
}

.process-num {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 3.5rem;
    color: var(--red-glow);
    line-height: 1;
    margin-bottom: .4rem;
    -webkit-text-stroke: 1px rgb(255 255 255 / 55%);
    color: transparent;
}

.process-icon {
    font-size: 1.7rem;
    color: var(--red);
    margin-bottom: .55rem
}

.process-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: .95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}

.process-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem
}

.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red);
    border-radius: 0 0 var(--r) var(--r);
    padding: 1.5rem 1.3rem;
    transition: border-color .25s;
}

.testi-card:hover {
    border-color: var(--red)
}

.testi-stars {
    color: var(--red);
    margin-bottom: .7rem;
    font-size: .82rem;
    letter-spacing: .1em
}

.testi-quote {
    font-size: .86rem;
    color: var(--light);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-style: italic
}

.testi-name {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.testi-role {
    font-size: .7rem;
    color: var(--muted)
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: .95rem;
    transition: border-color .2s;
    margin-bottom: .5rem;
}

.contact-info-card:hover {
    border-color: rgba(227, 0, 15, .35)
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--red-glow);
    border: 1px solid rgba(227, 0, 15, .25);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--red);
    flex-shrink: 0;
}

.ci-label {
    font-size: .62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: .18rem
}

.ci-val {
    font-size: .86rem;
    color: #fff;
    line-height: 1.5
}

.ci-val a {
    color: #fff;
    transition: color .2s
}

.ci-val a:hover {
    color: var(--red)
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(227, 0, 15, .05) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-style: italic;
    color: var(--red);
    font-family: "Oxanium", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .28rem .85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   SUCCESS / FORMS
══════════════════════════════════════════════════════════════ */
.success-msg {
    display: none;
    background: rgba(227, 0, 15, .06);
    border: 1px solid var(--red);
    border-radius: var(--r);
    padding: 1.25rem;
    text-align: center;
}

.success-msg.show {
    display: block
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.ts-footer {
    background: #060606;
    border-top: 1px solid var(--border)
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 1.75rem
}

.footer-logo img {
    height: 30px;
}

.footer-about {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: .85rem;
    max-width: 270px
}

.footer-socials {
    display: flex;
    gap: .75rem;
    margin-top: 1rem
}

.footer-socials a {
    width: 34px;
    height: 34px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .95rem;
    transition: all .2s;
}

.footer-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.footer-heading {
    font-family: "Oxanium", sans-serif;
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .38rem
}

.footer-links a {
    font-size: .82rem;
    color: var(--light);
    transition: color .2s
}

.footer-links a:hover {
    color: var(--red)
}

.footer-links li {
    font-size: .82rem;
    color: var(--light);
    display: flex;
    align-items: flex-start;
    gap: .45rem
}

.footer-links li i {
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: .8rem
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0 1.25rem
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center
}

.footer-copy span {
    font-size: .74rem;
    color: var(--muted);
    width: 100%;
}

.footer-copy a {
    color: var(--muted);
    transition: color .2s
}

.footer-copy a:hover {
    color: var(--red)
}

/* ══════════════════════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════════════════════ */
#scrollTop {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 40px;
    height: 40px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 900;
    transition: opacity .3s, visibility .3s, background .2s, transform .2s;
}

#scrollTop.show {
    opacity: 1;
    visibility: visible
}

#scrollTop:hover {
    background: var(--red-dk);
    transform: translateY(-2px)
}

/* ══════════════════════════════════════════════════════════════
   FADE-IN ANIMATION
══════════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media(max-width:1199px) {
    .similar-card {
        grid-template-columns: 130px 1fr
    }
}

@media(max-width:991px) {
    /* Bootstrap d-none d-lg-flex handles nav-links hide/show */

    /* feat-bar borders — Bootstrap col-sm-6 makes 2-col layout */
    .feat-item + .feat-item:nth-child(odd) {
        border-left: none;
        border-top: 1px solid var(--border)
    }
    .feat-item:nth-child(3) {
        border-left: none;
        border-top: 1px solid var(--border)
    }

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

    .pkg-grid {
        grid-template-columns: 1fr 1fr
    }

    .hosp-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-step::after {
        display: none
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr
    }

    .similar-grid {
        grid-template-columns: 1fr
    }

    .similar-card {
        grid-template-columns: 125px 1fr
    }

    .includes-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .inc-item:nth-child(3) {
        border-right: none
    }

    .inc-item:nth-child(4) {
        border-right: 1px solid var(--border);
        border-top: 1px solid var(--border)
    }

    .inc-item:nth-child(6) {
        border-right: none
    }

    .f1-why-grid {
        grid-template-columns: 1fr
    }

    .enquiry-card {
        position: static
    }

    /* stats-inner: Bootstrap col-12 col-lg-auto stacks on mobile */
    .stat-box {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 1rem
    }
}

@media(max-width:767px) {
    :root {
        --nav-h: 58px
    }

    .section {
        padding: 3.5rem 0
    }

    .section-inner {
        padding: 0 1.25rem
    }

    .hero-body {
        padding: 2.5rem 1.25rem 2rem
    }

    .ts-nav .inner {
        padding: 0 1.25rem
    }

    /* exp-grid & yacht-grid: Bootstrap col-sm-6 handles 2-col; col-md-4 3-col */

    .exp-img {
        height: 150px
    }

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

    .pkg-grid {
        grid-template-columns: 1fr
    }

    .schedule-grid {
        grid-template-columns: 1fr 1fr
    }

    .hosp-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .detail-hero-body {
        padding: 1.5rem 1.25rem
    }

    .detail-specs {
        gap:.30rem
    }

    .check-list {
        grid-template-columns: 1fr
    }

    .similar-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        padding: 2.5rem 1.25rem 1.25rem
    }

    .filter-inner {
        padding: .7rem 1.25rem
    }

    .page-hero-inner {
        padding: 0 1.25rem
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(8, 8, 8, .98) 0%, rgba(8, 8, 8, .95) 100%)
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: .5rem
    }

    /* feat-bar: Bootstrap col-sm-6 gives 2 cols; borders adjusted at 991px */
    .feat-item + .feat-item {
        border-left: none;
        border-top: 1px solid var(--border)
    }

    .feat-item:nth-child(2) {
        border-left: 1px solid var(--border);
        border-top: none
    }

    .feat-item:nth-child(3) {
        border-top: 1px solid var(--border)
    }
}

@media(max-width:480px) {
    /* Bootstrap col-12 col-sm-6 → on xs, col-12 gives 1 col automatically */

    .similar-card {
        grid-template-columns: 1fr
    }

    .similar-img {
        height: 130px
    }
}

/* Spin animation for form */
@keyframes spin {
    to { transform: rotate(360deg) }
}

.spin {
    display: inline-block;
    animation: spin .8s linear infinite
}


.birthlocation_mob{display: none;}
@media(max-width:767px) {
    
    .feat-bar {transform: skew(0deg); margin: 0rem 1rem 2rem;}
    
    .feat-item{display: block; border: none;}
    
    .feat-item:nth-child(2){border: none;}
    
        .feat-item + .feat-item:nth-child(odd) {border: none;}
    
    .feat-item + .feat-item {border: none;}
    
    
    .stats-sub{margin-left: 0}
    
    .stats-inner
    {padding: 2rem 1rem;}
    
    .yacht-grid .col-6{margin-bottom: 5px}
    
    .check-list{padding-left: 0}
    
    .birthlocation_desk{display: none;}
      .birthlocation_mob{display: block;}
    .detail-spec-item img {
    width: 16px;
}
    .detail-spec-val{
    font-size: 1rem; margin-right: 8px;}
    .detail-price
    {
    font-size: 1.1rem; }
    
    .detail-ctas .btn-red{padding: .54rem 1rem; font-size: .70rem;}
    
   .detail-ctas .btn-wa {padding: .54rem 1rem; font-size: .70rem;}
    
    .detail-hero{min-height: 35vh;}
    
    .hero {
        min-height: calc(44vh - var(--nav-h));}
    
    .page-hero{padding: calc(var(--nav-h) * .0 + 1.5rem) 0 1rem; margin-bottom: 0px;}
    
    .page-hero::before
    {background-size: cover;}
    
    
    .stat-num
    {font-size: 2.2rem;}
    .stat-lbl {
    font-size: .5rem;
        letter-spacing: .10em;}
    
    .stat-box{gap: .6rem;}
    
   .detail-specs .detail-spec-item {
    display: flex;
    align-items: self-start;
    gap: .5rem;
}
    
    .detail-spec-lbl {
        font-size: .45rem;}
    
    .yacht-price{font-size: .80rem;}
    .yacht-card-name{font-size: 1.10rem;}
    
    .detail-specs{max-width: 350px;}
}


.yacht-badge {
    position: absolute;
    top: .7rem;
    left: .7rem;
    z-index: 1;
    background: var(--red);
    color: #fff;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: .5rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    padding: .22rem .65rem;
    border-radius: 100px;
}


.section-title .ts-red
{ -webkit-text-stroke: 1px rgb(255 0 0 / 80%);
    color: transparent !important;}


.page-hero-title .ts-red
{ -webkit-text-stroke: 1px rgb(255 0 0 / 80%);
    color: transparent !important;}


/* SOLD ribbon */
.sold-ribbon {
    position: absolute;
    top: 8px;
    right: -28px;
    z-index: 2;
    background: #111;
    color: #fff;
    font-family: "Oxanium", sans-serif;
    font-weight: 900;
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .35rem 2.8rem;
    transform: rotate(35deg);
    box-shadow: 0 2px 8px rgba(0,0,0,.5);
    pointer-events: none;
}
.sold-ribbon::before,
.sold-ribbon::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 6px;
    background: var(--red);
}
.sold-ribbon::before { left: 0; }
.sold-ribbon::after  { right: 0; }

/* Dim sold cards */
.yacht-sm.sold .yacht-sm-img, .yacht-card.sold .yacht-card-img { filter: grayscale(60%) brightness(.8); }




.footer-copy p
{width: 700px;
    margin: 0px auto;
    font-size: 10px;
    color: #ccc;}



.vattg{font-size: 10px;}

.vattgsm{font-size: 8px;}

.main-price{margin-top: 10px;}
