:root {
    --ink: #080808;
    --ink-soft: #11110f;
    --panel: #151511;
    --panel-light: #1b1a16;
    --paper: #f4f0e7;
    --paper-deep: #e9e2d4;
    --white: #ffffff;
    --muted: #a9a59d;
    --muted-dark: #625f58;
    --gold: #d7b563;
    --gold-bright: #f0d995;
    --gold-deep: #a77e2f;
    --gold-on-light: #b88732;
    --line: rgba(255, 255, 255, 0.12);
    --line-dark: rgba(8, 8, 8, 0.13);
    --success: #a9d6ae;
    --danger: #f0a8a1;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Manrope", Arial, sans-serif;
    --shell: 1240px;
    --header-height: 78px;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.site-shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    width: 30px;
    height: 1px;
    background: currentColor;
    content: "";
}

.section-kicker--dark {
    color: var(--gold-deep);
}

.display-title {
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.display-title em,
.section-title em,
.page-title em {
    color: var(--gold-bright);
    font-weight: 500;
}

.section-title {
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
}

.section-title--dark {
    color: var(--ink);
}

.section-title--dark em {
    color: var(--gold-on-light);
}

.section-copy {
    max-width: 680px;
    color: var(--muted);
    font-size: 17px;
}

.section-copy--dark {
    color: var(--muted-dark);
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 280ms ease, box-shadow 280ms ease, color 280ms ease, transform 280ms var(--ease);
}

.button::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.38) 48%, transparent 78%);
    content: "";
    transform: translateX(-130%);
    transition: transform 650ms var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateX(130%);
}

.button:hover {
    transform: translateY(-2px);
}

.button i,
.text-link i {
    transition: transform 250ms var(--ease);
}

.button:hover i,
.text-link:hover i {
    transform: translateX(4px);
}

.button--gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 10px 34px rgba(215, 181, 99, 0.16);
    color: var(--ink);
}

.button--gold:hover {
    box-shadow: 0 14px 44px rgba(215, 181, 99, 0.28);
}

.button--outline {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button--outline:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
}

.button--compact {
    min-height: 46px;
    padding-inline: 19px;
    font-size: 10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-bar {
    position: relative;
    z-index: 110;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
    color: #c8c4bb;
}

.service-bar__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-bar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8fc59b;
    box-shadow: 0 0 0 5px rgba(143, 197, 155, 0.1);
    animation: status-pulse 2.2s ease-in-out infinite;
}

.service-bar__contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-bar__contact a {
    transition: color 180ms ease;
}

.service-bar__contact a:hover {
    color: var(--gold-bright);
}

.service-bar__contact i {
    margin-right: 7px;
    color: var(--gold);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(18px);
    transition: background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 200;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand__logo {
    width: 72px;
    height: 62px;
    object-fit: contain;
}

.primary-nav {
    align-self: stretch;
}

.nav-list {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list > li {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-link-group {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-link {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: center;
    padding: 0 11px;
    color: #d2cec5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 180ms ease;
}

.nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 18px;
    left: 12px;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.submenu-toggle {
    display: inline-grid;
    width: 24px;
    height: 34px;
    place-items: center;
    margin-left: -9px;
    border: 0;
    background: transparent;
    color: #8e8b84;
    cursor: pointer;
    font-size: 9px;
    transition: color 180ms ease, transform 250ms ease;
}

.nav-item--has-menu:hover .submenu-toggle,
.submenu-toggle[aria-expanded="true"] {
    color: var(--gold);
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    display: grid;
    width: min(980px, calc(100vw - 48px));
    grid-template-columns: 0.8fr 2fr;
    gap: 34px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: rgba(13, 13, 12, 0.98);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 200ms ease, transform 280ms var(--ease);
}

.nav-item--has-menu:hover .mega-menu,
.nav-item--has-menu:focus-within .mega-menu,
.mega-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu__intro {
    padding: 14px 24px 14px 4px;
    border-right: 1px solid var(--line);
}

.mega-menu__intro .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
}

.mega-menu__intro strong {
    display: block;
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.05;
}

.mega-menu__intro > a {
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-menu__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 12px;
}

.mega-menu__links > a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 11px;
    border-radius: 12px;
    transition: background 180ms ease, transform 220ms var(--ease);
}

.mega-menu__links > a:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateX(3px);
}

.mega-menu__links i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(215, 181, 99, 0.24);
    border-radius: 10px;
    background: rgba(215, 181, 99, 0.07);
    color: var(--gold);
    font-size: 12px;
}

.mega-menu__links span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mega-menu__links strong {
    color: #f0ede7;
    font-size: 11px;
    font-weight: 700;
}

.mega-menu__links small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    color: #85827c;
    font-size: 9px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.header__actions {
    position: relative;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher {
    position: relative;
    z-index: 170;
}

.language-switcher__trigger {
    display: inline-flex;
    min-width: 74px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: #f1eee7;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
}

.language-switcher__trigger:hover,
.language-switcher.is-open .language-switcher__trigger {
    border-color: rgba(215, 181, 99, 0.6);
    background: rgba(215, 181, 99, 0.08);
}

.language-switcher__trigger img,
.language-switcher__menu img {
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.language-switcher__trigger strong {
    font-size: 9px;
    letter-spacing: 0.08em;
}

.language-switcher__trigger i {
    color: var(--gold);
    font-size: 8px;
    transition: transform 180ms ease;
}

.language-switcher.is-open .language-switcher__trigger i {
    transform: rotate(180deg);
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: 190px;
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(12, 12, 11, 0.98);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 220ms var(--ease);
}

.language-switcher.is-open .language-switcher__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switcher__menu button {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 11px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #c6c2ba;
    cursor: pointer;
    font-size: 11px;
    text-align: left;
    transition: background 160ms ease, color 160ms ease;
}

.language-switcher__menu button:hover,
.language-switcher__menu button.is-active {
    background: rgba(215, 181, 99, 0.09);
    color: var(--gold-bright);
}

.menu-toggle {
    position: relative;
    z-index: 220;
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 5px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
    pointer-events: none;
    transition: transform 250ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: min(850px, calc(100svh - 34px));
    overflow: hidden;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    z-index: -3;
    inset: 0;
}

.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__veil {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.77) 43%, rgba(5, 5, 5, 0.28) 75%, rgba(5, 5, 5, 0.55) 100%),
        linear-gradient(0deg, var(--ink) 0%, transparent 25%, rgba(0, 0, 0, 0.18) 100%);
}

.hero__grain {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
    opacity: 0.14;
    pointer-events: none;
}

.hero__content {
    display: grid;
    min-height: min(850px, calc(100svh - 34px));
    grid-template-columns: minmax(0, 760px) 1fr;
    align-items: center;
    padding-top: 54px;
    padding-bottom: 88px;
}

.hero__copy {
    max-width: 740px;
    animation: hero-reveal 900ms 120ms var(--ease) both;
}

.hero__lead {
    max-width: 625px;
    margin-bottom: 30px;
    color: #c8c4bd;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 300;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 34px 0 0;
    padding: 0;
    color: #d4d0c8;
    list-style: none;
}

.hero__assurance li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.hero__assurance i {
    color: var(--gold);
}

.hero__booking-card {
    position: absolute;
    right: max(24px, calc((100% - var(--shell)) / 2));
    bottom: 30px;
    display: grid;
    width: min(430px, calc(100% - 48px));
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(12, 12, 11, 0.74);
    backdrop-filter: blur(18px);
}

.hero__booking-card small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero__booking-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

.hero__booking-card > i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
}

.trust-strip {
    border-bottom: 1px solid var(--line-dark);
    background: var(--paper);
    color: var(--ink);
}

.trust-strip__inner {
    display: grid;
    min-height: 112px;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 28px;
    border-right: 1px solid var(--line-dark);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item__icon {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(167, 126, 47, 0.3);
    border-radius: 50%;
    color: var(--gold-deep);
}

.trust-item .trust-item__icon i {
    position: static;
    display: block;
    width: 1em;
    margin: 0;
    color: var(--gold-deep);
    font-size: 13px;
    line-height: 1;
    text-align: center;
    transform: none;
}

.trust-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.trust-item > span:not(.trust-item__icon),
.trust-item > span:not(.trust-item__icon) > span {
    display: block;
    color: var(--muted-dark);
    font-size: 10px;
    line-height: 1.45;
}

.trust-item > span:not(.trust-item__icon) {
    min-width: 0;
}

.section {
    position: relative;
    overflow: hidden;
    padding: clamp(92px, 10vw, 150px) 0;
}

.section--dark {
    background: var(--ink);
}

.section--ink-soft {
    background: var(--ink-soft);
}

.section--light {
    background: var(--paper);
    color: var(--ink);
}

.section--paper-deep {
    background: var(--paper-deep);
    color: var(--ink);
}

.section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 54px;
}

.section__header > div:first-child {
    max-width: 770px;
}

.section__number {
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--font-display);
    font-size: 84px;
    line-height: 0.7;
}

.split-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.split-story__media {
    position: relative;
    min-height: 610px;
}

.split-story__media::before {
    position: absolute;
    z-index: 0;
    top: -28px;
    right: -28px;
    width: 65%;
    height: 60%;
    border: 1px solid rgba(215, 181, 99, 0.42);
    content: "";
}

.split-story__media img {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px 70px 4px 4px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.media-seal {
    position: absolute;
    z-index: 2;
    right: -38px;
    bottom: 50px;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 1px solid rgba(215, 181, 99, 0.7);
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-bright);
    text-align: center;
}

.media-seal span {
    max-width: 72px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.55;
    text-transform: uppercase;
}

.split-story__copy .section-title {
    max-width: 650px;
}

.split-story__copy > p {
    margin-bottom: 22px;
    color: var(--muted-dark);
    font-size: 17px;
}

.feature-lines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 26px;
    margin: 34px 0 38px;
    padding: 0;
    list-style: none;
}

.feature-lines li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid var(--line-dark);
    color: #292824;
    font-size: 12px;
    font-weight: 600;
}

.feature-lines i {
    color: var(--gold-deep);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.service-tile {
    position: relative;
    display: flex;
    min-height: 330px;
    grid-column: span 4;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    transition: border-color 300ms ease, transform 350ms var(--ease);
}

.service-tile:nth-child(1),
.service-tile:nth-child(6) {
    grid-column: span 6;
}

.service-tile:hover {
    border-color: rgba(215, 181, 99, 0.5);
    transform: translateY(-7px);
}

.service-tile::after {
    position: absolute;
    z-index: 0;
    right: -30px;
    bottom: -45px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(215, 181, 99, 0.15);
    border-radius: 50%;
    content: "";
    transition: transform 500ms var(--ease);
}

.service-tile:hover::after {
    transform: scale(1.3);
}

.service-tile > * {
    position: relative;
    z-index: 1;
}

.service-tile__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.service-tile__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(215, 181, 99, 0.36);
    border-radius: 50%;
    background: rgba(215, 181, 99, 0.06);
    color: var(--gold-bright);
}

.service-tile__index {
    color: #5d5a54;
    font-family: var(--font-display);
    font-size: 24px;
}

.service-tile h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 600;
    line-height: 1.08;
}

.service-tile p {
    max-width: 430px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
}

.service-tile .text-link {
    color: var(--gold);
    font-size: 10px;
}

.fleet-scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 18px;
}

.fleet-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: #f9f6ef;
    box-shadow: 0 16px 40px rgba(30, 24, 13, 0.05);
    transition: box-shadow 300ms ease, transform 350ms var(--ease);
}

.fleet-card:hover {
    box-shadow: 0 26px 60px rgba(30, 24, 13, 0.14);
    transform: translateY(-7px);
}

.fleet-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #d4cec2;
}

.fleet-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 45%);
    content: "";
}

.fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}

.fleet-card:hover .fleet-card__image img {
    transform: scale(1.05);
}

.fleet-card__badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.46);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.fleet-card__body {
    padding: 24px;
}

.fleet-card h3 {
    margin-bottom: 1px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.05;
}

.fleet-card__class {
    color: var(--gold-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fleet-card__meta {
    display: flex;
    gap: 14px;
    margin: 18px 0;
    color: var(--muted-dark);
    font-size: 10px;
}

.fleet-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-card__body > p {
    min-height: 60px;
    margin-bottom: 19px;
    color: var(--muted-dark);
    font-size: 12px;
    line-height: 1.65;
}

.fleet-card .text-link {
    color: var(--ink);
    font-size: 9px;
}

.video-story {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    isolation: isolate;
}

.video-story video {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
    filter: saturate(0.82) contrast(1.06);
}

.video-story::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.74) 48%, rgba(5, 5, 5, 0.2) 100%);
    content: "";
}

.video-story::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(0deg, var(--ink), transparent 25%, transparent 75%, var(--ink));
    content: "";
}

.video-story__inner {
    display: flex;
    min-height: 670px;
    align-items: center;
}

.video-story__copy {
    max-width: 660px;
}

.video-story__copy p {
    max-width: 580px;
    margin-bottom: 30px;
    color: #c8c3bb;
}

.signature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.signature-list {
    display: grid;
    gap: 1px;
    border-top: 1px solid var(--line);
}

.signature-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.signature-item__number {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 30px;
}

.signature-item h3 {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 600;
}

.signature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.quote-panel {
    position: sticky;
    top: 122px;
    padding: 44px;
    border: 1px solid rgba(215, 181, 99, 0.22);
    border-radius: 60px 8px 60px 8px;
    background:
        radial-gradient(circle at 90% 5%, rgba(215, 181, 99, 0.13), transparent 32%),
        var(--panel);
}

.quote-panel i {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 30px;
}

.quote-panel blockquote {
    margin: 0 0 26px;
    font-family: var(--font-display);
    font-size: clamp(29px, 3vw, 39px);
    font-weight: 500;
    line-height: 1.15;
}

.quote-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(50px, 8vw, 110px);
}

.faq-intro {
    position: sticky;
    top: 125px;
    align-self: start;
}

.faq-list {
    border-top: 1px solid var(--line-dark);
}

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

.faq-question {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
}

.faq-question i {
    color: var(--gold-deep);
    font-size: 13px;
    transition: transform 250ms ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 350ms var(--ease), opacity 250ms ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    max-width: 700px;
    margin: 0;
    padding: 0 48px 26px 0;
    color: var(--muted-dark);
    font-size: 14px;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.page-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    isolation: isolate;
}

.page-hero--compact {
    min-height: 480px;
}

.page-hero__media {
    position: absolute;
    z-index: -3;
    inset: 0;
}

.page-hero__media img,
.page-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 6, 6, 0.96) 0%, rgba(6, 6, 6, 0.73) 50%, rgba(6, 6, 6, 0.3) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 26%);
    content: "";
}

.page-hero__inner {
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 72px;
}

.page-hero__copy {
    max-width: 820px;
}

.page-title {
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(50px, 7vw, 88px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.92;
}

.page-hero__copy > p {
    max-width: 660px;
    margin-bottom: 30px;
    color: #c5c1b9;
    font-size: 17px;
    font-weight: 300;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: #99958d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--gold-bright);
}

.service-overview {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(60px, 8vw, 110px);
    align-items: start;
}

.service-overview__lead {
    color: var(--muted-dark);
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.25;
}

.service-overview__title {
    max-width: 590px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.02;
}

.service-tile--link {
    color: inherit;
    cursor: pointer;
}

.service-tile--link:focus-visible {
    position: relative;
    z-index: 2;
    outline: 2px solid var(--gold);
    outline-offset: -4px;
}

.service-tile--link:hover .text-link i,
.service-tile--link:focus-visible .text-link i {
    transform: translateX(4px);
}

.service-overview__body p {
    margin-bottom: 22px;
    color: var(--muted-dark);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.highlight-card {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.42);
}

.highlight-card i {
    margin-bottom: 24px;
    color: var(--gold-deep);
}

.highlight-card strong {
    display: block;
    font-size: 12px;
    line-height: 1.45;
}

.best-for {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.best-for span {
    padding: 9px 13px;
    border: 1px solid rgba(215, 181, 99, 0.3);
    border-radius: 999px;
    background: rgba(215, 181, 99, 0.06);
    color: var(--gold-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.process-card {
    min-height: 290px;
    padding: 34px;
    background: var(--ink-soft);
}

.process-card__number {
    display: block;
    margin-bottom: 54px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 30px;
}

.process-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 600;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.service-nav-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ink-soft);
}

.service-nav-strip__inner {
    display: flex;
    overflow-x: auto;
    gap: 0;
    scrollbar-width: none;
}

.service-nav-strip__inner::-webkit-scrollbar {
    display: none;
}

.service-nav-strip a {
    flex: 0 0 auto;
    padding: 17px 20px;
    border-right: 1px solid var(--line);
    color: #aaa69d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
}

.service-nav-strip a:hover,
.service-nav-strip a.is-current {
    background: rgba(215, 181, 99, 0.08);
    color: var(--gold-bright);
}

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

.fleet-grid .fleet-card__image {
    height: 290px;
}

.fleet-grid .fleet-card {
    border-color: rgba(8, 8, 8, 0.11);
    box-shadow: 0 18px 55px rgba(44, 37, 24, 0.08);
}

.fleet-note {
    margin-top: 28px;
    color: var(--muted-dark);
    font-size: 11px;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: clamp(45px, 7vw, 90px);
    align-items: start;
}

.form-card {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.form-card h2 {
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
}

.form-card__intro {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label,
.fieldset-label {
    color: #d7d3cb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    outline: 0;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    font-size: 13px;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field select {
    background-color: #1b1a16;
    color: #ffffff;
    color-scheme: dark;
}

.field select option {
    background: #ffffff;
    color: #111111;
}

.field textarea {
    min-height: 125px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(215, 181, 99, 0.8);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(215, 181, 99, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #68655f;
}

.coupon-field {
    padding: 18px;
    border: 1px solid rgba(215, 181, 99, 0.28);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(215, 181, 99, 0.08), rgba(255, 255, 255, 0.025));
}

.coupon-field__control {
    position: relative;
}

.coupon-field__control i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 16px;
    color: var(--gold);
    transform: translateY(-50%);
}

.coupon-field__control input {
    padding-left: 44px;
}

.checkbox-field {
    display: flex;
    grid-column: 1 / -1;
    align-items: start;
    gap: 12px;
    margin: 6px 0;
    color: var(--muted);
    font-size: 11px;
}

.checkbox-field input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: var(--gold);
}

.form-actions {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
}

.form-actions small {
    max-width: 270px;
    color: #77746d;
    font-size: 9px;
    line-height: 1.5;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.alert {
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 12px;
}

.alert--success {
    border-color: rgba(169, 214, 174, 0.35);
    background: rgba(169, 214, 174, 0.08);
    color: var(--success);
}

.alert--error {
    border-color: rgba(240, 168, 161, 0.35);
    background: rgba(240, 168, 161, 0.08);
    color: var(--danger);
}

.booking-aside {
    position: sticky;
    top: 125px;
}

.booking-aside__image {
    height: 360px;
    overflow: hidden;
    border-radius: 70px 10px 10px 10px;
}

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

.booking-aside__content {
    padding: 30px 8px 0;
}

.booking-aside__content h3 {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
}

.booking-aside__content p {
    color: var(--muted);
    font-size: 13px;
}

.booking-aside__content ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.booking-aside__content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9c5bd;
    font-size: 11px;
}

.booking-aside__content li i {
    color: var(--gold);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.contact-card {
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
}

.contact-card i {
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 20px;
}

.contact-card small {
    display: block;
    margin-bottom: 5px;
    color: #77746d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card a,
.contact-card span {
    font-family: var(--font-display);
    font-size: 23px;
    line-height: 1.15;
}

.location-band {
    display: grid;
    min-height: 450px;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: #e5ddd0;
}

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

.location-band__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(35px, 6vw, 72px);
}

.location-band__copy h2 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.location-band__copy p {
    color: var(--muted-dark);
}

.area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.area-cloud span {
    padding: 8px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: #393731;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-content {
    max-width: 850px;
    margin-inline: auto;
    color: var(--muted-dark);
}

.legal-content h2 {
    margin: 46px 0 14px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 34px;
}

.legal-content h3 {
    margin: 30px 0 10px;
    color: var(--ink);
}

.legal-content a {
    color: var(--gold-deep);
    text-decoration: underline;
}

.closing-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 9vw, 120px) 0;
    border-top: 1px solid var(--line);
    background: var(--panel);
}

.closing-cta__glow {
    position: absolute;
    top: -240px;
    left: 12%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(215, 181, 99, 0.1);
    filter: blur(100px);
    pointer-events: none;
}

.closing-cta__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;
}

.closing-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 70px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.closing-cta h2 em {
    color: var(--gold-bright);
    font-weight: 500;
}

.closing-cta__action p {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    padding: 76px 0 26px;
    background: #050505;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.65fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 55px;
}

.footer__brand > p {
    max-width: 350px;
    margin: 23px 0;
    color: #85827b;
    font-size: 12px;
}

.footer__logo {
    display: block;
    width: 104px;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__social {
    display: flex;
    gap: 9px;
}

.footer__social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #aaa69d;
    font-size: 12px;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer__social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.site-footer h3 {
    margin-bottom: 22px;
    color: #dfdcd5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer__links,
.footer__contact {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    color: #85827b;
    font-size: 11px;
    list-style: none;
}

.footer__links a,
.footer__contact a {
    transition: color 180ms ease;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--gold-bright);
}

.footer__contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
}

.footer__contact i {
    margin-top: 5px;
    color: var(--gold-deep);
    font-size: 10px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: #5f5c56;
    font-size: 9px;
}

.footer__bottom p {
    margin: 0;
}

.footer__bottom > div {
    display: flex;
    gap: 22px;
}

.footer__bottom a:hover {
    color: var(--gold);
}

.text-link--dark {
    color: var(--gold-deep);
}

.tiburon-hero__logo {
    width: min(310px, 27vw);
    flex: 0 0 auto;
    margin-left: auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.tiburon-hero__logo img {
    width: 100%;
    height: auto;
}

.tournament-facts {
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: var(--paper);
    color: var(--ink);
}

.tournament-facts__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tournament-facts__inner > div {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border-right: 1px solid var(--line-dark);
}

.tournament-facts__inner > div:first-child {
    border-left: 1px solid var(--line-dark);
}

.tournament-facts strong {
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1.1;
}

.tournament-facts span {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tournament-partner-panel {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.46);
}

.tournament-partner-panel img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.tournament-partner-panel small,
.tournament-partner-panel strong {
    display: block;
}

.tournament-partner-panel small {
    margin-bottom: 7px;
    color: var(--gold-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tournament-partner-panel strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 27px;
}

.tournament-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.tournament-service-grid article {
    min-height: 260px;
    padding: 30px;
    background: var(--ink-soft);
}

.tournament-service-grid i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 54px;
    border: 1px solid rgba(215, 181, 99, 0.26);
    border-radius: 14px;
    color: var(--gold);
}

.tournament-service-grid small {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tournament-service-grid h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
}

.mobile-action-bar {
    display: none;
}

.scroll-progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

button:disabled {
    cursor: wait;
    opacity: 0.72;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease, transform 700ms var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"] {
    transition-delay: 90ms;
}

[data-reveal-delay="2"] {
    transition-delay: 180ms;
}

[data-reveal-delay="3"] {
    transition-delay: 270ms;
}

@keyframes status-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(143, 197, 155, 0.08);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(143, 197, 155, 0.015);
    }
}

@keyframes hero-reveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .header__actions .button {
        display: none;
    }

    .nav-link {
        padding-inline: 9px;
        font-size: 10px;
    }

    .mega-menu {
        width: min(900px, calc(100vw - 34px));
    }

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

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

    .footer__grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 32px;
    }

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

@media (max-width: 920px) {
    :root {
        --header-height: 70px;
    }

    .site-shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .site-header {
        overflow: visible;
    }

    .service-bar__contact a:last-child,
    .service-bar__contact > span {
        display: none;
    }

    .primary-nav {
        position: absolute;
        z-index: 180;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        overscroll-behavior: contain;
        border-top: 1px solid var(--line);
        background: rgba(7, 7, 7, 0.99);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        visibility: hidden;
        -webkit-overflow-scrolling: touch;
        transition: opacity 220ms ease, transform 280ms var(--ease), visibility 0s linear 280ms;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .nav-list {
        display: block;
        height: auto;
        padding: 22px 18px 110px;
    }

    .nav-list > li,
    .nav-link-group {
        display: block;
        height: auto;
    }

    .nav-link-group {
        position: relative;
    }

    .nav-link {
        display: flex;
        min-height: 56px;
        padding: 0 12px;
        border-bottom: 1px solid var(--line);
        font-family: var(--font-display);
        font-size: 23px;
        font-weight: 600;
        letter-spacing: 0;
    }

    .nav-link::after {
        display: none;
    }

    .submenu-toggle {
        position: absolute;
        top: 11px;
        right: 3px;
        width: 42px;
        height: 42px;
        margin: 0;
        border: 1px solid var(--line);
        border-radius: 50%;
        touch-action: manipulation;
    }

    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 6px 0 18px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mega-menu.is-open {
        display: grid;
    }

    .mega-menu__intro {
        display: none;
    }

    .mega-menu__links {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .mega-menu__links > a {
        grid-template-columns: 32px 1fr;
        padding: 9px 12px;
    }

    .mega-menu__links small {
        -webkit-line-clamp: 2;
    }

    .menu-toggle {
        display: grid;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

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

    .hero__booking-card {
        display: none;
    }

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

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-dark);
    }

    .trust-item:nth-child(3) {
        padding-left: 0;
    }

    .split-story,
    .service-overview,
    .signature-grid,
    .faq-layout,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .split-story__media {
        min-height: 530px;
        margin-right: 26px;
    }

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

    .service-tile,
    .service-tile:nth-child(1),
    .service-tile:nth-child(6) {
        grid-column: auto;
    }

    .quote-panel,
    .faq-intro,
    .booking-aside {
        position: relative;
        top: auto;
    }

    .closing-cta__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .footer__brand {
        grid-column: 1 / -1;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .location-band {
        grid-template-columns: 1fr;
    }

    .location-band__image {
        min-height: 340px;
    }

    .tiburon-hero__logo {
        width: 210px;
        padding: 18px;
    }

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

    .tournament-facts__inner > div:nth-child(2) {
        border-right: 1px solid var(--line-dark);
    }

    .tournament-facts__inner > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-dark);
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .service-bar__inner {
        justify-content: center;
    }

    .service-bar__contact {
        display: none;
    }

    .brand__logo {
        width: 58px;
        height: 50px;
    }

    .language-switcher__trigger {
        min-width: 64px;
        height: 40px;
        padding-inline: 10px;
    }

    .hero {
        min-height: 720px;
    }

    .hero__content {
        min-height: 720px;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.62) 100%), linear-gradient(0deg, var(--ink), transparent 40%);
    }

    .display-title {
        font-size: clamp(46px, 15vw, 64px);
    }

    .hero__lead {
        font-size: 15px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero__assurance {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .trust-strip__inner {
        grid-template-columns: 1fr;
        padding: 10px 0;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3) {
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 82px 0;
    }

    .section__header {
        display: block;
        margin-bottom: 38px;
    }

    .section__number {
        display: none;
    }

    .section-title {
        font-size: clamp(38px, 12vw, 52px);
    }

    .split-story__media {
        min-height: 410px;
        margin-right: 12px;
    }

    .split-story__media::before {
        top: -14px;
        right: -14px;
    }

    .media-seal {
        right: -10px;
        bottom: 28px;
        width: 90px;
        height: 90px;
    }

    .feature-lines {
        grid-template-columns: 1fr;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .service-tile {
        min-height: 300px;
        padding: 25px;
    }

    .fleet-scroll,
    .fleet-grid {
        display: flex;
        overflow-x: auto;
        margin-right: -14px;
        padding-right: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .fleet-scroll::-webkit-scrollbar,
    .fleet-grid::-webkit-scrollbar {
        display: none;
    }

    .fleet-card {
        min-width: min(84vw, 330px);
        scroll-snap-align: start;
    }

    .video-story,
    .video-story__inner {
        min-height: 620px;
    }

    .signature-item {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }

    .quote-panel {
        padding: 30px;
    }

    .page-hero,
    .page-hero--compact {
        min-height: 540px;
    }

    .page-title {
        font-size: clamp(48px, 15vw, 66px);
    }

    .highlight-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        gap: 1px;
    }

    .process-card {
        min-height: auto;
    }

    .process-card__number {
        margin-bottom: 30px;
    }

    .field--full,
    .checkbox-field,
    .form-actions {
        grid-column: auto;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-aside__image {
        height: 300px;
    }

    .location-band__image {
        min-height: 260px;
    }

    .tiburon-hero .page-hero__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .tiburon-hero__logo {
        width: 145px;
        margin: 0;
        padding: 12px;
        border-radius: 18px;
    }

    .tournament-facts__inner {
        grid-template-columns: 1fr;
    }

    .tournament-facts__inner > div,
    .tournament-facts__inner > div:first-child,
    .tournament-facts__inner > div:nth-child(2) {
        min-height: 92px;
        border-right: 1px solid var(--line-dark);
        border-bottom: 1px solid var(--line-dark);
        border-left: 1px solid var(--line-dark);
    }

    .tournament-facts__inner > div:last-child {
        border-bottom: 0;
    }

    .tournament-service-grid {
        grid-template-columns: 1fr;
    }

    .tournament-service-grid article {
        min-height: 230px;
    }

    .tournament-partner-panel {
        grid-template-columns: 82px 1fr;
        padding: 18px;
    }

    .tournament-partner-panel img {
        width: 82px;
        height: 82px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .footer__grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        align-items: start;
        flex-direction: column;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 120;
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: grid;
        grid-template-columns: 0.65fr 1.35fr;
        overflow: hidden;
        padding: 6px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 999px;
        background: rgba(8, 8, 8, 0.9);
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(18px);
    }

    .mobile-action-bar a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 999px;
        color: #ddd9d1;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .mobile-action-bar__primary {
        background: var(--gold);
        color: var(--ink) !important;
    }

    .site-footer {
        padding-bottom: 110px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
