* {
    box-sizing: border-box;
}

:root {
    --brand-primary: #24d0c7;
    --brand-primary-dark: #1fb8b0;
    --brand-accent: #c7a06c;
    --theme-background: #f5f7f9;
    --theme-surface: #ffffff;
    --theme-text: #243240;
    --theme-muted: #6f7d89;
    --theme-sidebar: #222222;
    --theme-sidebar-text: #ffffff;
    --theme-link: #243240;
    --theme-link-hover: #1fb8b0;
    --navy: var(--theme-text);
    --gold: var(--brand-accent);
    --gold-deep: var(--brand-primary-dark);
    --paper: var(--theme-surface);
    --sand: color-mix(in srgb, var(--theme-surface) 84%, var(--brand-accent) 16%);
    --ink: var(--theme-text);
    --muted: var(--theme-muted);
    --line: color-mix(in srgb, var(--theme-text) 10%, transparent);
    --hero-overlay: linear-gradient(180deg, rgba(12, 20, 28, 0.12) 0%, rgba(12, 20, 28, 0.48) 100%);
    --button-text: #ffffff;
    --header-height: 4.8rem;
    --sidebar-width: 18rem;
    --content-width: 1320px;
    --portal-width: 1680px;
    --radius-panel: 1rem;
    --radius-control: 1rem;
    --shadow-card: 0 16px 34px rgba(14, 26, 36, 0.08);
    --shadow-sidebar: 18px 0 40px rgba(13, 18, 24, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    font-family: "Raleway", "Avenir Next", Arial, sans-serif;
    background: var(--theme-background);
}

main {
    flex: 1 0 auto;
}

a,
button {
    transition: all 180ms ease;
}

a {
    color: var(--theme-link);
    text-decoration: none;
}

a:hover {
    color: var(--theme-link-hover);
}

button {
    font: inherit;
}

.wrap,
.shell {
    width: min(var(--content-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    background: color-mix(in srgb, var(--theme-surface) 92%, transparent);
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(36, 50, 64, 0.08);
}

.topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 4.15rem;
}

.logo,
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--theme-text);
}

.brand-mark {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.logo-copy strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.logo-copy small {
    display: block;
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.76rem;
}

.main-nav .jetmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .jetmenu li {
    list-style: none;
}

.main-nav .jetmenu a,
.main-nav .jetmenu button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    color: color-mix(in srgb, var(--theme-text) 72%, white 28%);
    padding: 0.9rem 0.95rem;
    line-height: 1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
}

.main-nav .jetmenu a:hover,
.main-nav .jetmenu button:hover,
.nav-accent,
.compact-lang a.active {
    color: var(--theme-link-hover);
}

.compact-lang {
    display: flex;
    gap: 0.2rem;
}

.compact-lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.advanced-search {
    display: none;
    background: var(--theme-surface);
    border-top: 1px solid rgba(36, 50, 64, 0.06);
}

.advanced-search.is-open {
    display: block;
}

.advanced-search-inner {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 0 1.15rem;
}

.form-field,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(36, 50, 64, 0.12);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--theme-surface) 92%, white 8%), color-mix(in srgb, var(--theme-surface) 98%, var(--brand-accent) 2%));
    color: var(--ink);
    padding: 0.95rem 1rem;
    outline: none;
    font: inherit;
    border-radius: var(--radius-control);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 18px rgba(36, 50, 64, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-field:focus,
select:focus,
textarea:focus {
    border-color: color-mix(in srgb, var(--brand-primary) 62%, var(--theme-text) 38%);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-primary) 18%, transparent), 0 10px 22px rgba(36, 50, 64, 0.08);
    transform: translateY(-1px);
}

select,
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--theme-link) 50%),
        linear-gradient(135deg, var(--theme-link) 50%, transparent 50%),
        linear-gradient(180deg, color-mix(in srgb, var(--theme-surface) 88%, white 12%), color-mix(in srgb, var(--theme-surface) 98%, var(--brand-accent) 2%));
    background-position:
        calc(100% - 1.45rem) calc(50% - 0.18rem),
        calc(100% - 1rem) calc(50% - 0.18rem),
        center center;
    background-size:
        0.45rem 0.45rem,
        0.45rem 0.45rem,
        100% 100%;
    background-repeat: no-repeat;
    padding-right: 3rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

input[type="date"] {
    letter-spacing: 0.02em;
}

.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button {
    border: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--button-text);
    font-weight: 700;
    padding: 0.95rem 1.45rem;
    border-radius: calc(var(--radius-control) - 0.1rem);
}

.button-secondary {
    border: 2px solid color-mix(in srgb, var(--theme-surface) 92%, transparent);
    background: transparent;
    color: var(--theme-surface);
    padding: 0.95rem 1.45rem;
    border-radius: calc(var(--radius-control) - 0.1rem);
}

.button-ghost {
    border: 1px dashed rgba(36, 50, 64, 0.18);
    background: transparent;
    color: var(--theme-text);
    padding: 0.95rem 1.45rem;
    border-radius: calc(var(--radius-control) - 0.1rem);
}

.action-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stack-md {
    display: grid;
    gap: 1rem;
}

.cancel-form {
    margin-top: 1rem;
}

.search-submit {
    width: 100%;
}

.home-page main {
    background: var(--theme-surface);
}

.sailor-hero {
    padding-top: 0;
}

.sailor-hero-image {
    min-height: 56rem;
    padding-top: 4.2rem;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sailor-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.sailor-hero-copy {
    position: relative;
    width: min(100%, 44rem);
    margin: 0 auto;
    padding-top: 3rem;
}

.hero-title {
    margin: 0;
    font-family: "Roboto Slab", serif;
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    line-height: 1.1;
    color: var(--theme-surface);
    font-weight: 400;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 2rem 0 0;
}

.hero-outline-button {
    min-width: 15.8rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: rgba(199, 160, 108, 0.72);
}

.sailor-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    background: var(--theme-surface);
    border-bottom: 1px solid rgba(36, 50, 64, 0.08);
}

.sailor-tab {
    padding: 1.35rem 1.2rem;
    border-right: 1px solid rgba(36, 50, 64, 0.08);
}

.sailor-tab:last-child {
    border-right: 0;
}

.sailor-tab strong {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 0.65rem;
    background: var(--brand-accent);
    color: var(--theme-surface);
    font-size: 0.8rem;
}

.sailor-tab span {
    display: block;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.sailor-tab small {
    display: block;
    color: var(--muted);
    line-height: 1.65;
}

.sailor-cta {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-accent) 92%, white) 0%, color-mix(in srgb, var(--brand-primary) 35%, var(--brand-accent) 65%) 100%);
}

.sailor-cta-inner {
    padding: 4rem 0;
    text-align: center;
    max-width: 64rem;
}

.sailor-cta-inner h2 {
    margin: 0 0 1rem;
    font-family: "Roboto Slab", serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    color: #132130;
}

.sailor-cta-inner p {
    margin: 0 0 1.6rem;
    color: rgba(19, 33, 48, 0.82);
    line-height: 1.9;
}

.white-button {
    background: var(--theme-surface);
    color: var(--navy);
    padding: 0.95rem 1.55rem;
}

.sailor-section {
    padding: 4.5rem 0 0;
}

.section-heading {
    margin-bottom: 1.6rem;
}

.page-title {
    margin: 0;
    font-family: "Roboto Slab", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.06;
}

.section-intro {
    margin-top: 1rem;
    max-width: 58rem;
    color: var(--muted);
    line-height: 1.9;
}

.deals-grid,
.grid-2,
.grid-3,
.grid-4,
.portal-grid,
.list-grid,
.check-grid,
.calendar,
.dashboard-grid,
.stat-grid,
.split-section {
    display: grid;
    gap: 1rem;
}

.deals-grid {
    gap: 1.5rem;
}

.deal-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--theme-surface);
    border: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(14, 26, 36, 0.08);
}

.deal-media {
    min-height: 25rem;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.deal-copy {
    padding: 2rem;
}

.deal-copy h3 {
    margin: 0.35rem 0 0.8rem;
    font-family: "Roboto Slab", serif;
    font-size: 2rem;
}

.deal-copy p {
    color: var(--muted);
    line-height: 1.85;
}

.deal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.deal-meta span {
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-accent) 16%, var(--theme-surface) 84%);
    color: color-mix(in srgb, var(--brand-accent) 72%, var(--theme-text) 28%);
    font-size: 0.82rem;
}

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

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

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

.split-section {
    grid-template-columns: 1.05fr 0.95fr;
}

.section,
.dashboard-panel,
.booking-panel,
.card,
.metric-card,
.modal-dialog {
    background: var(--theme-surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-panel);
}

.section,
.dashboard-panel,
.booking-panel,
.card {
    padding: 1.8rem;
}

.metric-card {
    padding: 1.15rem 1.2rem 1.25rem;
}

.soft-card {
    background: color-mix(in srgb, var(--theme-surface) 88%, var(--brand-accent) 12%);
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-accent) 22%, var(--theme-surface) 78%);
    color: color-mix(in srgb, var(--brand-accent) 74%, var(--theme-text) 26%);
    font-size: 0.82rem;
}

.calendar {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-cell {
    min-height: 5rem;
    border: 1px solid var(--line);
    padding: 0.7rem;
    background: color-mix(in srgb, var(--theme-surface) 92%, var(--theme-background) 8%);
}

.calendar-cell.option {
    background: color-mix(in srgb, var(--brand-primary) 12%, var(--theme-surface) 88%);
}

.calendar-cell.blocked {
    background: color-mix(in srgb, var(--brand-accent) 16%, var(--theme-surface) 84%);
}

.portal-page {
    background: var(--theme-background);
}

.portal-page main {
    padding-top: var(--header-height);
    padding-bottom: 2rem;
}

.portal-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 80;
    height: var(--header-height);
    background: color-mix(in srgb, var(--theme-surface) 94%, transparent);
    border-bottom: 1px solid rgba(36, 50, 64, 0.08);
    backdrop-filter: blur(12px);
}

.portal-header-inner {
    width: 100%;
    max-width: var(--portal-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.4rem 0 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.portal-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--theme-text);
}

.portal-logo-mark {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.55rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--theme-sidebar-text);
    font-size: 0.72rem;
    font-weight: 800;
}

.portal-logo-copy strong {
    display: block;
    font-size: 0.92rem;
}

.portal-logo-copy small {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
}

.portal-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.portal-header-actions a,
.portal-header-actions button {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
}

.portal-header-actions a:hover,
.portal-header-actions button:hover {
    color: var(--theme-link-hover);
}

.portal-user-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-primary) 14%, var(--theme-surface) 86%);
    color: var(--theme-text);
    font-size: 0.8rem;
    font-weight: 700;
}

.wp-admin-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
}

.wp-admin-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.1;
}

.wp-admin-subtitle {
    margin: 0.5rem 0 0;
    color: var(--muted);
    max-width: 52rem;
    line-height: 1.75;
}

.wp-admin-user {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.wp-sidebar-card {
    position: relative;
}

.wp-sidebar-title {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.wp-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wp-panel-header h2 {
    margin: 0;
}

.DashboardLayout {
    min-height: calc(100vh - var(--header-height));
}

.Sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--theme-sidebar);
    color: var(--theme-sidebar-text);
    padding: 1.1rem 0.9rem 1.4rem;
    box-shadow: var(--shadow-sidebar);
    overflow-y: auto;
}

.Sidebar-brand {
    margin: 0 0 1.25rem;
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: center;
    gap: 0.8rem;
}

.Sidebar-brand-mark {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--theme-sidebar-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.Sidebar-brand-copy strong,
.Sidebar-brand-copy small {
    display: block;
}

.Sidebar-brand-copy strong {
    font-size: 0.95rem;
}

.Sidebar-brand-copy small {
    margin-top: 0.15rem;
    color: color-mix(in srgb, var(--theme-sidebar-text) 56%, transparent);
    font-size: 0.72rem;
}

.Sidebar-nav {
    display: grid;
    gap: 1rem;
}

.Sidebar-group {
    display: grid;
    gap: 0.35rem;
}

.Sidebar-group > span {
    padding: 0 0.35rem;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--theme-sidebar-text) 46%, transparent);
}

.Sidebar-nav a {
    position: relative;
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.95rem;
    color: color-mix(in srgb, var(--theme-sidebar-text) 82%, transparent);
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
}

.Sidebar-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    bottom: 0.65rem;
    width: 0.2rem;
    border-radius: 999px;
    background: transparent;
    transition: background 180ms ease, transform 180ms ease;
    transform: scaleY(0.35);
}

.Sidebar-linkIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--theme-sidebar-text) 10%, transparent);
    color: transparent;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
}

.Sidebar-nav a[data-icon="DB"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='8' rx='1.5'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1.5'/%3E%3Crect x='14' y='11' width='7' height='10' rx='1.5'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1.5'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="BK"] .Sidebar-linkIcon,
.Sidebar-nav a[data-icon="NB"] .Sidebar-linkIcon,
.Sidebar-nav a[data-icon="OF"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 11h18'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="CL"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 9h18'/%3E%3Crect x='3' y='5' width='18' height='17' rx='2'/%3E%3Cpath d='M8 13h.01M12 13h.01M16 13h.01M8 17h.01M12 17h.01M16 17h.01'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="PT"] .Sidebar-linkIcon,
.Sidebar-nav a[data-icon="NP"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l5 5v13a1 1 0 0 1-1 1H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M14 3v6h6M9 13h6M9 17h6'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="US"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="ML"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="ST"] .Sidebar-linkIcon,
.Sidebar-nav a[data-icon="PR"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="AP"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 16.98h3a3 3 0 0 0 0-6h-1a5 5 0 0 0-9.7-1.5A4 4 0 0 0 3 13a4 4 0 0 0 4 4h3'/%3E%3Cpath d='m13 12-3 5h4l-3 5'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="TR"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8h14M8 4h8M9 12c1.4 4.5 4.3 7.5 8.5 9M15 12c-.8 2.5-2.1 4.7-4 6.5M4 12h7'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="IM"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5M10 13h4M10 17h4M8.5 9h.01'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="AC"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 1 1 8 0v3'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="DG"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V14M4 10V3M12 21v-8M12 9V3M20 21v-5M20 12V3'/%3E%3Cpath d='M1 14h6M9 9h6M17 12h6'/%3E%3C/svg%3E");
}

.Sidebar-nav a[data-icon="WB"] .Sidebar-linkIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 1 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.6 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 1 1 0-4h.09a1.65 1.65 0 0 0 1.51-1 1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 8.92 4.6 1.65 1.65 0 0 0 10 3.09V3a2 2 0 1 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9c.2.49.68.82 1.21.82H21a2 2 0 1 1 0 4h-.39c-.53 0-1.01.33-1.21.82Z'/%3E%3C/svg%3E");
}

.SidebarToggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: var(--theme-surface);
    box-shadow: var(--shadow-card);
    align-items: center;
    justify-content: center;
    gap: 0.24rem;
    flex-direction: column;
    cursor: pointer;
}

.SidebarToggle span {
    display: block;
    width: 1.1rem;
    height: 0.12rem;
    border-radius: 999px;
    background: var(--theme-text);
}

.SidebarOverlay {
    display: none;
}

.Sidebar-nav a.active,
.Sidebar-nav a:hover {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--button-text);
}

.Sidebar-nav a.active::before,
.Sidebar-nav a:hover::before {
    background: color-mix(in srgb, var(--button-text) 86%, transparent);
    transform: scaleY(1);
}

.Sidebar-nav a.active .Sidebar-linkIcon,
.Sidebar-nav a:hover .Sidebar-linkIcon {
    background: color-mix(in srgb, var(--button-text) 16%, transparent);
    color: var(--button-text);
}

.DashboardMain {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    padding: 1.5rem 1.5rem 2.5rem;
    min-height: calc(100vh - var(--header-height));
}

.eb-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0 1rem;
}

.eb-hero-banner {
    margin-bottom: 1.4rem;
    border-radius: calc(var(--radius-panel) + 0.35rem);
    padding: 1.25rem 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.75), transparent 26%),
        linear-gradient(135deg, var(--brand-primary) 0%, color-mix(in srgb, var(--brand-primary) 35%, white) 56%, color-mix(in srgb, var(--theme-surface) 94%, var(--brand-primary) 6%) 100%);
    box-shadow: 0 18px 42px color-mix(in srgb, var(--brand-primary) 16%, transparent);
}

.eb-hero-copy {
    display: grid;
    gap: 0.95rem;
}

.eb-hero-copy p {
    margin: 0;
    max-width: 46rem;
    color: color-mix(in srgb, var(--theme-text) 76%, white 24%);
    line-height: 1.6;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button-row.left {
    justify-content: flex-start;
}

.dark-outline {
    border-color: rgba(16, 32, 47, 0.2);
    color: var(--theme-text);
    background: color-mix(in srgb, var(--theme-surface) 42%, transparent);
}

.wp-admin-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 14rem auto;
    gap: 0.85rem;
    margin: 1rem 0 1.4rem;
}

.dashboard-panel form label,
.card form label,
form.grid-2 > label,
form.stack-md > label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--theme-text);
}

.dashboard-panel form label span,
.card form label span {
    color: var(--muted);
}

.metric-label,
.hint,
.inline-feedback,
.portal-page p,
.portal-page li,
.portal-page td,
.portal-page th {
    color: var(--muted);
}

.metric-value {
    margin-top: 0.6rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--theme-text);
}

.grid-span-2 {
    grid-column: span 2;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius-panel) - 0.1rem);
    background: color-mix(in srgb, var(--theme-surface) 98%, transparent);
}

thead th {
    padding: 1rem 1.05rem;
    background: color-mix(in srgb, var(--theme-background) 74%, var(--theme-surface) 26%);
    color: color-mix(in srgb, var(--theme-text) 72%, transparent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

tbody tr {
    transition: background 180ms ease, transform 180ms ease;
}

tbody tr:nth-child(even) {
    background: color-mix(in srgb, var(--theme-background) 30%, var(--theme-surface) 70%);
}

tbody tr:hover {
    background: color-mix(in srgb, var(--brand-primary) 10%, var(--theme-surface) 90%);
}

th,
td {
    text-align: left;
    padding: 1rem 1.05rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

tbody td {
    color: var(--theme-text);
}

tbody tr:last-child td {
    border-bottom: 0;
}

td small {
    display: inline-block;
    margin-top: 0.2rem;
    color: var(--muted);
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--theme-surface) 90%, var(--theme-background) 10%);
}

.message {
    margin-bottom: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid color-mix(in srgb, var(--brand-accent) 36%, var(--theme-surface) 64%);
    background: color-mix(in srgb, var(--brand-accent) 14%, var(--theme-surface) 86%);
}

.message.error {
    border-color: color-mix(in srgb, #d65c5c 38%, var(--theme-surface) 62%);
    background: color-mix(in srgb, #d65c5c 10%, var(--theme-surface) 90%);
}

.site-footer {
    margin-top: auto;
    background: color-mix(in srgb, var(--navy) 94%, black 6%);
    color: color-mix(in srgb, var(--theme-sidebar-text) 84%, transparent);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr 0.95fr;
    gap: 2.2rem;
    padding: 4.1rem 0 3rem;
}

.footer-columns h3 {
    margin: 0 0 1.1rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.footer-columns h3::after {
    content: "";
    display: block;
    width: 2rem;
    height: 2px;
    margin-top: 0.6rem;
    background: var(--gold);
}

.footer-columns p {
    margin: 0 0 0.55rem;
    line-height: 1.8;
}

.footer-columns a {
    display: block;
    margin: 0 0 0.55rem;
    color: color-mix(in srgb, var(--theme-sidebar-text) 70%, transparent);
}

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

.footer-brand {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0.4rem;
}

.footer-wheel {
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 999px;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.footer-brand strong {
    color: #fff;
    letter-spacing: 0.15em;
    font-size: 1.05rem;
}

.footer-brand small {
    color: color-mix(in srgb, var(--theme-sidebar-text) 60%, transparent);
    letter-spacing: 0.13em;
    font-size: 0.66rem;
}

.footer-social {
    display: flex;
    align-items: start;
    gap: 0.6rem;
    padding-top: 0.25rem;
}

.footer-social a {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--theme-sidebar-text) 10%, transparent);
    color: color-mix(in srgb, var(--theme-sidebar-text) 84%, transparent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--theme-sidebar-text) 12%, transparent);
    padding: 1.55rem 0 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: color-mix(in srgb, var(--theme-sidebar-text) 60%, transparent);
    font-size: 0.92rem;
}

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

.settings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.25rem;
    align-items: start;
}

.settings-stack {
    display: grid;
    gap: 1.25rem;
}

.settings-cluster {
    margin: 0;
    padding: 1.1rem 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius-panel) - 0.1rem);
    display: grid;
    gap: 0.9rem;
}

.settings-cluster legend {
    padding: 0 0.35rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.preview-card {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    display: grid;
    gap: 1rem;
}

.preview-stage {
    padding: 1.4rem;
    border-radius: calc(var(--radius-panel) + 0.1rem);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, color-mix(in srgb, var(--theme-surface) 96%, transparent) 0%, color-mix(in srgb, var(--theme-background) 84%, var(--theme-surface) 16%) 100%);
}

.preview-mini-hero {
    min-height: 13rem;
    padding: 1.5rem;
    border-radius: calc(var(--radius-panel) + 0.2rem);
    color: var(--theme-surface);
    background: var(--hero-overlay), var(--preview-hero-image, none), linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 76%, black 24%) 0%, color-mix(in srgb, var(--navy) 72%, black 28%) 100%);
    background-size: cover, cover, cover;
    background-position: center, center, center;
    display: grid;
    align-content: end;
    gap: 0.7rem;
}

.preview-mini-hero p {
    margin: 0;
    line-height: 1.6;
    color: color-mix(in srgb, var(--theme-surface) 84%, transparent);
}

.preview-mini-hero .hint {
    font-size: 0.76rem;
    color: color-mix(in srgb, var(--theme-surface) 72%, transparent);
}

.preview-cta p {
    margin: 0;
    line-height: 1.6;
    color: var(--muted);
}

.preview-mini-hero strong {
    font-size: 1.35rem;
}

.preview-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.preview-swatch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.preview-swatch {
    padding: 0.85rem;
    border-radius: calc(var(--radius-panel) - 0.1rem);
    border: 1px solid var(--line);
}

.preview-swatch-background {
    background: var(--theme-background);
}

.preview-swatch-surface {
    background: var(--theme-surface);
}

.preview-swatch-primary {
    background: var(--brand-primary);
    color: var(--button-text);
}

.preview-swatch-accent {
    background: var(--brand-accent);
}

.preview-swatch-sidebar {
    background: var(--theme-sidebar);
    color: var(--theme-sidebar-text);
}

.preview-swatch-paper {
    background: var(--paper);
}

.preview-cta {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(34rem, calc(100% - 1.5rem));
    margin: 8vh auto 0;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.8rem;
    cursor: pointer;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.modal-title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
}

.modal-copy {
    margin: 0 0 1.2rem;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .main-nav .jetmenu,
    .compact-lang,
    .advanced-search-inner,
    .sailor-tabs,
    .deal-card,
    .grid-2,
    .grid-3,
    .grid-4,
    .portal-grid,
    .check-grid,
    .calendar,
    .dashboard-grid,
    .stat-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .sailor-hero-image {
        min-height: 78vh;
    }

    .portal-header-inner,
    .portal-header-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .DashboardMain {
        width: 100%;
        margin-left: 0;
        padding: 1rem;
    }

    .eb-topbar {
        align-items: center;
        gap: 0.85rem;
    }

    .Sidebar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        bottom: 0;
        width: min(22rem, calc(100vw - 2rem));
        min-height: 0;
        box-shadow: 0 18px 40px rgba(13, 18, 24, 0.28);
        transform: translateX(-110%);
        transition: transform 220ms ease;
        z-index: 90;
    }

    .SidebarToggle {
        display: inline-flex;
    }

    .SidebarOverlay {
        position: fixed;
        inset: var(--header-height) 0 0 0;
        z-index: 85;
        border: 0;
        background: rgba(10, 16, 22, 0.45);
    }

    body.sidebar-open .Sidebar {
        transform: translateX(0);
    }

    body.sidebar-open .SidebarOverlay {
        display: block;
    }

    .wp-admin-filters {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .settings-layout {
        grid-template-columns: 1fr;
    }

    .preview-card {
        position: static;
    }
}

.home-page {
    background: var(--paper);
}

.home-page body,
.home-page,
.home-page .site-header,
.home-page .site-footer,
.home-page p,
.home-page li,
.home-page a,
.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
    font-family: "Jost", "Avenir Next", Arial, sans-serif;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page .hero-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: 0.01em;
}

.sirene-hero {
    min-height: 88vh;
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.sirene-hero-inner {
    text-align: center;
    color: #fff;
    padding: 7.5rem 0 6.5rem;
    max-width: 60rem;
}

.sirene-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--gold);
}

.sirene-kicker::before,
.sirene-kicker::after {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: color-mix(in srgb, var(--gold) 70%, transparent);
}

.sirene-hero h1 {
    margin: 1.3rem 0 0;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.95;
    font-weight: 500;
}

.sirene-hero p {
    max-width: 44rem;
    margin: 1.4rem auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.sirene-hero-actions {
    margin-top: 2.1rem;
    display: inline-flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sirene-booking-strip {
    position: relative;
    z-index: 6;
    margin-top: -3.2rem;
    margin-bottom: 2rem;
}

.sirene-booking-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 1rem;
}

.sirene-booking-grid label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 0.45rem;
}

.sirene-booking-submit-wrap {
    display: flex;
    align-items: end;
}

.sirene-booking-submit {
    width: 100%;
}

.sirene-section {
    padding: 5.2rem 0;
}

.sirene-soft-bg {
    background: color-mix(in srgb, var(--sand) 35%, #ffffff);
}

.sirene-service-grid,
.sirene-counter-grid,
.sirene-testimonial-grid,
.sirene-crew-grid {
    display: grid;
    gap: 1.25rem;
}

.sirene-service-grid,
.sirene-counter-grid,
.sirene-crew-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.sirene-service-card,
.sirene-counter-card,
.sirene-testimonial-card,
.sirene-crew-card {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 1.45rem;
}

.sirene-service-card strong {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--gold) 78%, white);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
}

.sirene-service-card h3,
.sirene-crew-card h3 {
    margin: 0.8rem 0 0.35rem;
    font-size: 1.7rem;
    line-height: 1.06;
    color: var(--navy);
}

.sirene-service-card p,
.sirene-crew-card p,
.sirene-testimonial-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.sirene-welcome-grid,
.sirene-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.sirene-welcome-image,
.sirene-offer-grid figure {
    min-height: 31rem;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.sirene-welcome-copy h2,
.sirene-offer h2,
.sirene-heading h2,
.sirene-cta-final h2 {
    margin: 0.95rem 0 0.9rem;
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    line-height: 0.95;
    font-weight: 500;
    color: var(--navy);
}

.sirene-welcome-copy p,
.sirene-offer p,
.sirene-cta-final p {
    margin: 0 0 1.5rem;
    color: var(--muted);
    line-height: 1.9;
}

.sirene-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.sirene-yacht-grid,
.sirene-gallery-grid {
    display: grid;
    gap: 1.35rem;
}

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

.sirene-yacht-card {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.sirene-yacht-card figure {
    min-height: 24rem;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.sirene-yacht-copy {
    padding: 1.35rem;
}

.sirene-yacht-copy h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--navy);
}

.sirene-yacht-copy p {
    margin: 0.65rem 0 1rem;
    color: var(--muted);
    line-height: 1.8;
}

.sirene-yacht-copy a {
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
}

.sirene-counter-card h3 {
    margin: 0;
    font-size: 1.9rem;
    color: var(--gold);
}

.sirene-counter-card p {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.sirene-offer {
    background: linear-gradient(135deg, color-mix(in srgb, var(--navy) 88%, #000) 0%, color-mix(in srgb, var(--navy) 68%, var(--gold) 32%) 100%);
    color: #fff;
    padding: 5.5rem 0;
}

.sirene-offer .sirene-kicker,
.sirene-offer h2,
.sirene-offer p {
    color: #fff;
}

.sirene-offer .button {
    background: linear-gradient(135deg, var(--gold) 0%, color-mix(in srgb, var(--gold) 72%, #8f6d3f) 100%);
    color: #fff;
}

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

.sirene-gallery-grid figure {
    margin: 0;
    min-height: 15rem;
    background-size: cover;
    background-position: center;
}

.sirene-testimonial-card h4 {
    margin: 1rem 0 0.35rem;
    font-size: 1.45rem;
    color: var(--navy);
}

.sirene-testimonial-card small {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-size: 0.64rem;
}

.sirene-cta-final {
    padding: 6rem 0;
    text-align: center;
    background: color-mix(in srgb, var(--sand) 20%, #ffffff);
}

.home-page .site-footer {
    margin-top: 0;
}

@media (max-width: 1200px) {
    .sirene-booking-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sirene-service-grid,
    .sirene-counter-grid,
    .sirene-crew-grid,
    .sirene-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.55rem;
    }

    .sirene-hero {
        min-height: 74vh;
    }

    .sirene-hero-inner {
        padding: 5.7rem 0 5rem;
    }

    .sirene-booking-grid,
    .sirene-yacht-grid,
    .sirene-gallery-grid,
    .sirene-welcome-grid,
    .sirene-offer-grid,
    .sirene-service-grid,
    .sirene-counter-grid,
    .sirene-testimonial-grid,
    .sirene-crew-grid {
        grid-template-columns: 1fr;
    }

    .sirene-booking-strip {
        margin-top: 0;
    }

    .sirene-welcome-image,
    .sirene-offer-grid figure,
    .sirene-yacht-card figure {
        min-height: 20rem;
    }
}

/* Sirene home-2 refinement overrides */
.home-page .site-header {
    background: linear-gradient(180deg, rgba(6, 21, 35, 0.72) 0%, rgba(6, 21, 35, 0.3) 70%, transparent 100%);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.home-page .brand,
.home-page .logo,
.home-page .logo-copy strong,
.home-page .logo-copy small,
.home-page .main-nav .jetmenu a,
.home-page .main-nav .jetmenu button,
.home-page .compact-lang a {
    color: #f3f6f9;
}

.home-page .logo-copy small,
.home-page .compact-lang a {
    color: rgba(243, 246, 249, 0.72);
}

.home-page .main-nav .jetmenu a:hover,
.home-page .main-nav .jetmenu button:hover,
.home-page .compact-lang a.active {
    color: var(--gold);
}

.home-page .main-nav .jetmenu .nav-book-now {
    color: var(--gold);
}

.home-page .brand-mark {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 0.62rem;
}

.sirene-hero {
    min-height: 94vh;
}

.sirene-hero-inner {
    max-width: 66rem;
    padding: 9.2rem 0 7.8rem;
}

.sirene-hero h1 {
    font-size: clamp(3.4rem, 8.2vw, 7.2rem);
    letter-spacing: 0;
}

.sirene-hero p {
    max-width: 47rem;
    font-size: 1.12rem;
}

.home-page .button {
    padding: 1rem 1.8rem;
    border-radius: 0;
    letter-spacing: 0.08em;
    font-size: 0.73rem;
    text-transform: uppercase;
}

.home-page .button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    border-radius: 0;
    letter-spacing: 0.08em;
    font-size: 0.73rem;
    text-transform: uppercase;
}

.sirene-booking-grid {
    border: 0;
    box-shadow: 0 24px 42px rgba(6, 21, 35, 0.15);
    padding: 1.4rem;
}

.sirene-service-card,
.sirene-counter-card,
.sirene-testimonial-card,
.sirene-crew-card,
.sirene-yacht-card {
    border-radius: 0;
}

.sirene-service-card h3,
.sirene-crew-card h3 {
    font-size: 2rem;
}

.sirene-welcome-copy h2,
.sirene-offer h2,
.sirene-heading h2,
.sirene-cta-final h2 {
    font-size: clamp(2.5rem, 4.8vw, 5.2rem);
}

.sirene-heading {
    margin-bottom: 2.5rem;
}

.sirene-gallery-grid {
    gap: 1rem;
}

.sirene-gallery-grid figure {
    min-height: 17rem;
}

.sirene-cta-final {
    padding: 7rem 0;
}

@media (max-width: 860px) {
    .home-page .site-header {
        background: rgba(6, 21, 35, 0.9);
    }

    .sirene-hero {
        min-height: 78vh;
    }

    .sirene-hero-inner {
        padding: 7.1rem 0 5.4rem;
    }

    .sirene-hero h1 {
        font-size: clamp(2.7rem, 12vw, 4.3rem);
    }
}
