:root {
    --navy: #0b2f3a;
    --navy-deep: #07252e;
    --green: #315b4d;
    --green-soft: #dce8df;
    --sand: #f4efe4;
    --sand-deep: #e9dfcd;
    --paper: #fffdf8;
    --teak: #754328;
    --orange: #f0643b;
    --orange-dark: #8f2e18;
    --ink: #182629;
    --muted: #586669;
    --line: rgba(11, 47, 58, 0.17);
    --white-line: rgba(255, 255, 255, 0.2);
    --border-color: var(--line);
    --display: "Arial Narrow", "Aptos Narrow", "Helvetica Neue Condensed", sans-serif;
    --body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --primary-color: var(--orange);
    --text-light: var(--muted);
    --text-dark: var(--ink);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

[hidden] {
    display: none !important;
}

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

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

a {
    color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 0.98;
    text-wrap: balance;
}

h2 {
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    letter-spacing: -0.035em;
}

h3 {
    color: var(--navy);
}

::selection {
    color: var(--navy-deep);
    background: var(--orange);
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 0.7rem 1rem;
    color: white;
    background: var(--navy);
    text-decoration: none;
    transform: translateY(-160%);
}

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

.eyebrow,
.kicker,
.section-index,
.footer-label {
    margin-bottom: 1rem;
    font-family: var(--display);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow {
    color: #f7b09a;
}

.eyebrow--dark {
    color: var(--orange-dark);
}

.section-index {
    color: var(--teak);
}

.section-index--light {
    color: #e8b58c;
}

.lead {
    color: var(--navy);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    line-height: 1.6;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.85rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:disabled,
.button:disabled:hover {
    opacity: 0.58;
    cursor: wait;
    transform: none;
}

.button:focus-visible,
.text-link:focus-visible,
.nav__links a:focus-visible,
.menu-toggle:focus-visible,
.gallery-photo:focus-visible,
.gallery-video:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(240, 100, 59, 0.5);
    outline-offset: 3px;
}

.button .icon {
    width: 1.15rem;
    transition: transform 180ms ease;
}

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

.button--accent {
    color: var(--navy-deep);
    background: var(--orange);
}

.button--accent:hover {
    background: #f47d58;
}

.button--dark {
    color: #fff;
    background: var(--navy);
}

.button--dark:hover {
    background: var(--green);
}

.button--outline {
    color: var(--navy);
    background: transparent;
    border-color: rgba(11, 47, 58, 0.45);
}

.button--outline:hover {
    color: white;
    background: var(--navy);
    border-color: var(--navy);
}

.button--small {
    min-height: 44px;
    padding: 0.65rem 1.05rem;
    font-size: 0.86rem;
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding-bottom: 0.22rem;
    border-bottom: 1px solid currentColor;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.text-link--arrow .icon {
    width: 1rem;
    transition: transform 180ms ease;
}

.text-link--light {
    color: white;
}

.topbar {
    position: relative;
    z-index: 101;
    color: rgba(255, 255, 255, 0.82);
    background: var(--navy-deep);
}

.topbar__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.topbar p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
}

.topbar span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--orange);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--navy);
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid rgba(11, 47, 58, 0.11);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(7, 37, 46, 0.09);
}

.nav {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--navy);
    text-decoration: none;
}

.brand__mark {
    width: 48px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font-family: var(--display);
    font-size: 1.36rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand__text small {
    margin-top: 0.32rem;
    color: var(--teak);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.4vw, 2.4rem);
    margin-left: auto;
}

.nav__links a {
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.nav__links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav__links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__cta {
    margin-left: 0.5rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    color: var(--navy);
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    z-index: 98;
    top: 116px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2rem 24px 7rem;
    color: var(--navy);
    background: var(--sand);
    overflow-y: auto;
}

.mobile-menu.is-open {
    display: flex;
    flex-direction: column;
}

.mobile-menu > a:not(.button) {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.mobile-menu .button {
    margin-top: 2rem;
}

.hero {
    position: relative;
    display: block;
    min-height: 680px;
    color: white;
    background: var(--navy);
    overflow: hidden;
}

.hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 680px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(5rem, 9vw, 8.5rem) clamp(2.5rem, 5vw, 6rem) clamp(6.5rem, 10vw, 9rem) max(24px, calc((100vw - 1280px) / 2));
    background: linear-gradient(90deg, rgba(7, 37, 46, 0.96) 0%, rgba(7, 37, 46, 0.84) 31%, rgba(7, 37, 46, 0.38) 58%, rgba(7, 37, 46, 0.06) 100%);
}

.hero h1 {
    max-width: 660px;
    margin-bottom: 1.75rem;
    color: white;
    font-size: clamp(4.2rem, 6.7vw, 7.4rem);
    letter-spacing: -0.045em;
}

.hero h1 em {
    display: block;
    color: #f2b69c;
    font-family: inherit;
    font-style: normal;
}

.hero__intro {
    max-width: 620px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.65;
}

.hero__intro strong {
    color: white;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.hero__actions .text-link {
    color: white;
}

.hero__checks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    margin: 2.4rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--white-line);
    list-style: none;
}

.hero__checks li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.75rem;
    font-weight: 700;
}

.hero__checks .icon {
    color: #f4b196;
}

.hero__visual {
    position: absolute;
    inset: 0;
    min-width: 0;
    min-height: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 47, 58, 0.2), transparent 35%), linear-gradient(0deg, rgba(7, 37, 46, 0.38), transparent 35%);
    pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__visual img {
    object-fit: cover;
    object-position: center 54%;
}

.hero__tag {
    position: absolute;
    z-index: 2;
    top: 2rem;
    right: 2rem;
    display: flex;
    width: 140px;
    height: 140px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    border-radius: 50%;
    color: var(--navy);
    background: var(--sand);
    box-shadow: 0 14px 35px rgba(7, 37, 46, 0.18);
    text-align: center;
    transform: rotate(4deg);
}

.hero__tag span,
.hero__tag small {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero__tag strong {
    margin: 0.15rem 0;
    font-family: var(--display);
    font-size: 2.45rem;
    line-height: 1;
}

.hero__location {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 4.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    color: white;
    background: rgba(7, 37, 46, 0.82);
    backdrop-filter: blur(10px);
    font-size: 0.73rem;
    font-weight: 700;
}

.availability {
    background: var(--sand);
}

.availability__bar {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: end;
    grid-template-columns: 1.05fr 1fr 1.3fr 0.9fr 1.25fr;
    min-height: 126px;
    margin: 0;
    padding: 1.35rem;
    color: var(--navy);
    background: var(--paper);
    box-shadow: 0 20px 55px rgba(7, 37, 46, 0.15);
    transform: translateY(-42px);
}

.availability__heading {
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 0.9rem;
    padding-right: 1.1rem;
    border-right: 1px solid var(--line);
}

.availability__heading p {
    margin: 0;
    font-size: 0.76rem;
}

.availability__heading .kicker {
    margin-bottom: 0.38rem;
    color: var(--orange-dark);
}

.availability__number {
    color: var(--sand-deep);
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.availability__field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.42rem;
    padding: 0 0.95rem;
}

.availability__field > span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.availability__field input,
.availability__field select {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 0.15rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 600;
}

.availability__field select {
    cursor: pointer;
}

.availability__field input:focus,
.availability__field select:focus {
    outline: 0;
    border-color: var(--orange);
}

.input-shell {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.input-shell .icon {
    width: 1rem;
    color: var(--teak);
}

.availability__submit {
    align-self: center;
    width: 100%;
    padding-inline: 1rem;
    font-size: 0.78rem;
}

.availability__note {
    margin: -1.6rem 0 0;
    padding-bottom: 1.4rem;
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
}

.availability-calendar {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(11, 47, 58, 0.12);
    color: var(--navy);
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(7, 37, 46, 0.08);
}

.availability-calendar__header,
.availability-calendar__footer,
.availability-calendar__controls,
.availability-legend {
    display: flex;
    align-items: center;
}

.availability-calendar__header {
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.availability-calendar__header .kicker {
    margin: 0 0 0.35rem;
    color: var(--orange-dark);
}

.availability-calendar__header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.availability-calendar__controls {
    gap: 0.75rem;
}

.availability-calendar__controls p {
    min-width: 145px;
    margin: 0;
    font-family: var(--display);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.availability-calendar__controls button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    color: var(--navy);
    background: white;
    font-size: 1rem;
    cursor: pointer;
}

.availability-calendar__controls button:hover:not(:disabled),
.availability-calendar__controls button:focus-visible {
    border-color: var(--orange);
    outline: 0;
}

.availability-calendar__controls button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.availability-calendar__weekdays,
.availability-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
}

.availability-calendar__weekdays {
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.availability-day {
    display: flex;
    min-width: 0;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    border: 1px solid var(--line);
    color: var(--navy);
    background: white;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.availability-day:hover:not(:disabled),
.availability-day:focus-visible,
.availability-day.is-selected {
    border-color: var(--orange);
    outline: 0;
    background: #fff7f2;
    transform: translateY(-1px);
}

.availability-day:disabled {
    color: #7d898b;
    background: #f2f0ea;
    cursor: not-allowed;
}

.availability-day.is-full {
    background: #f8e9e4;
}

.availability-day--empty {
    border-color: transparent;
    background: transparent;
}

.availability-day__number {
    font-size: 0.78rem;
    font-weight: 700;
}

.availability-day__slots {
    display: grid;
    width: min(34px, 70%);
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.availability-day__slots i,
.availability-legend i {
    display: block;
    height: 4px;
    border-radius: 999px;
}

.availability-day__slots .is-free,
.availability-legend .is-free {
    background: #4a8a70;
}

.availability-day__slots .is-busy,
.availability-legend .is-busy {
    background: #c45c45;
}

.availability-day__slots .is-unknown,
.availability-legend .is-unknown {
    background: #a8b0ae;
}

.availability-calendar__footer {
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.availability-legend {
    flex: 0 0 auto;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 0.68rem;
}

.availability-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.availability-legend i {
    width: 18px;
}

#availability-status {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: right;
}

.fact-ribbon {
    padding: 1.9rem 0;
    color: white;
    background: var(--green);
}

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

.fact-ribbon__grid > div {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.4rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-ribbon__grid > div:first-child {
    padding-left: 0;
}

.fact-ribbon__grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.fact-ribbon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #f1b49d;
}

.fact-ribbon p {
    display: flex;
    margin: 0;
    flex-direction: column;
    line-height: 1.3;
}

.fact-ribbon strong {
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.fact-ribbon span {
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.72rem;
}

.section {
    padding: clamp(6rem, 10vw, 10rem) 0;
}

.boat-section {
    background: var(--paper);
}

.boat-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(3rem, 7vw, 7.5rem);
}

.boat-section__media {
    position: relative;
    min-height: 690px;
}

.boat-section__media::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -24px;
    right: 34px;
    bottom: 42px;
    left: -24px;
    border: 1px solid var(--teak);
}

.boat-section__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 690px;
    object-fit: cover;
    object-position: 50% 52%;
}

.boat-section__stamp {
    position: absolute;
    z-index: 2;
    right: -30px;
    bottom: -26px;
    display: flex;
    width: 126px;
    height: 126px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 9px solid var(--paper);
    border-radius: 50%;
    color: white;
    background: var(--orange);
    line-height: 1;
    transform: rotate(-8deg);
}

.boat-section__stamp span {
    font-family: var(--display);
    font-size: 2.05rem;
    font-weight: 700;
}

.boat-section__stamp strong {
    margin-top: 0.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.boat-section__copy h2 {
    font-size: clamp(3.2rem, 5vw, 5.5rem);
}

.boat-section__copy > p:not(.eyebrow, .section-index) {
    color: var(--muted);
}

.boat-section__copy .lead {
    color: var(--navy);
}

.lined-list {
    margin: 2rem 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.lined-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 600;
}

.lined-list span {
    color: var(--orange-dark);
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 700;
}

.tariffs {
    background: var(--sand);
}

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: clamp(3rem, 7vw, 7rem);
    margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.section-heading h2,
.onboard__intro h2,
.occasions__intro h2 {
    margin-bottom: 0;
}

.section-heading > p,
.onboard__intro > p {
    margin-bottom: 0.4rem;
    color: var(--muted);
}

.section-heading--compact {
    align-items: end;
    margin-bottom: 2.5rem;
}

.section-heading--compact h2 {
    max-width: 850px;
    font-size: clamp(3rem, 5vw, 4.8rem);
}

.tariff-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tariff-card {
    display: flex;
    min-height: 590px;
    flex-direction: column;
    padding: clamp(1.75rem, 3vw, 2.7rem);
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--paper);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tariff-card:hover,
.tariff-card.is-selected {
    border-color: var(--orange);
    box-shadow: 0 18px 45px rgba(7, 37, 46, 0.1);
    transform: translateY(-5px);
}

.tariff-card--featured {
    color: white;
    background: var(--navy);
    border-color: var(--navy);
}

.tariff-card--featured h3,
.tariff-card--featured .tariff-card__price {
    color: white;
}

.tariff-card--featured .tariff-card__time,
.tariff-card--featured li {
    color: rgba(255, 255, 255, 0.7);
}

.tariff-card--featured li {
    border-color: var(--white-line);
}

.tariff-card__top {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.7rem;
}

.tariff-card__number {
    margin: 0;
    color: var(--teak);
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
}

.tariff-card--featured .tariff-card__number {
    color: #ebb699;
}

.tariff-card__badge {
    padding: 0.4rem 0.6rem;
    color: var(--orange-dark);
    background: #fbe5dc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.tariff-card--featured .tariff-card__badge {
    color: white;
    background: rgba(240, 100, 59, 0.22);
}

.tariff-card h3 {
    margin-bottom: 0.25rem;
    font-size: clamp(2.3rem, 3.3vw, 3.4rem);
}

.tariff-card__time {
    margin-bottom: 1.8rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.tariff-card__price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(4.8rem, 6.2vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.85;
}

.tariff-card__price > span {
    margin: 0.25rem 0.15rem 0 0;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.tariff-card__price small {
    align-self: flex-end;
    margin: 0 0 0.35rem 0.6rem;
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
}

.tariff-card ul {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.tariff-card li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.15rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
}

.tariff-card li::before {
    content: "";
    position: absolute;
    top: 1.22rem;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.tariff-card .button {
    width: 100%;
    margin-top: auto;
    font-size: 0.78rem;
}

.tariff-card--featured .button--accent {
    color: var(--navy-deep);
}

.tariffs__footnote {
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: 0.71rem;
    text-align: center;
}

.onboard {
    background: var(--paper);
}

.onboard__intro {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
    gap: clamp(3rem, 7vw, 8rem);
    margin-bottom: 3.5rem;
}

.onboard__intro > p {
    max-width: 430px;
}

.onboard__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
    gap: 1rem;
}

.onboard__photo {
    position: relative;
    min-height: 665px;
    margin: 0;
    overflow: hidden;
}

.onboard__photo img {
    width: 100%;
    height: 665px;
    object-fit: cover;
    object-position: 47% 50%;
}

.onboard__photo figcaption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 0.65rem 0.8rem;
    color: white;
    background: rgba(7, 37, 46, 0.85);
    font-size: 0.72rem;
    font-weight: 700;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.facility {
    display: flex;
    min-height: 222px;
    justify-content: center;
    flex-direction: column;
    padding: 1.8rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.facility .icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1.5rem;
    color: var(--orange-dark);
}

.facility h3 {
    margin-bottom: 0.5rem;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
}

.facility p {
    margin: 0;
    color: var(--muted);
    font-size: 0.74rem;
}

.route-section {
    padding: clamp(6rem, 10vw, 10rem) 0;
    color: white;
    background: var(--green);
    overflow: hidden;
}

.route-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(400px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(4rem, 8vw, 9rem);
}

.route-section h2 {
    color: white;
    font-size: clamp(3.7rem, 5.5vw, 6rem);
}

.route-section__copy > p:not(.eyebrow, .section-index, .route-section__note) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.72);
}

.route-map {
    position: relative;
    margin: 2.7rem 0 1.7rem;
}

.route-map__line {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.route-stop {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1rem;
}

.route-stop:last-child {
    margin-bottom: 0;
}

.route-stop > span {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    background: var(--green);
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 700;
}

.route-stop--active > span {
    color: var(--navy);
    background: #f2b49a;
    border-color: #f2b49a;
}

.route-stop p {
    display: flex;
    margin: 0;
    flex-direction: column;
}

.route-stop strong {
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.route-stop small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
}

.route-section__note {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.7rem;
}

.route-section__photo {
    position: relative;
    min-height: 700px;
    margin: 0;
}

.route-section__photo::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -30px;
    right: -80px;
    bottom: 60px;
    left: 80px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.route-section__photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: 50% 52%;
}

.route-section__photo figcaption {
    position: absolute;
    z-index: 2;
    right: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    color: var(--navy);
    background: var(--sand);
    font-size: 0.72rem;
    font-weight: 700;
}

.gallery-section {
    background: var(--sand);
}

.gallery-mosaic {
    display: grid;
    grid-auto-rows: 250px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.gallery-photo,
.gallery-video {
    position: relative;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: var(--navy);
    cursor: pointer;
    overflow: hidden;
}

.gallery-photo {
    cursor: zoom-in;
}

.gallery-photo--wide {
    grid-column: span 2;
}

.gallery-photo--tall {
    grid-row: span 2;
}

.gallery-photo img,
.gallery-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-position, center);
    transition: opacity 240ms ease, transform 500ms ease;
}

.gallery-photo--position-53 {
    --photo-position: center 53%;
}

.gallery-photo--position-58 {
    --photo-position: center 58%;
}

.gallery-photo--position-60 {
    --photo-position: center 60%;
}

.gallery-photo--position-62 {
    --photo-position: center 62%;
}

.gallery-photo--position-67 {
    --photo-position: center 67%;
}

.gallery-photo--position-76 {
    --photo-position: center 76%;
}

.gallery-photo:hover img,
.gallery-video:hover img {
    opacity: 0.76;
    transform: scale(1.025);
}

.gallery-item__label {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem 0.65rem;
    color: var(--navy);
    background: var(--sand);
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-photo:hover .gallery-item__label,
.gallery-photo:focus-visible .gallery-item__label,
.gallery-video:hover .gallery-item__label,
.gallery-video:focus-visible .gallery-item__label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background: rgba(7, 37, 46, 0.82);
    box-shadow: 0 14px 34px rgba(7, 37, 46, 0.28);
    transform: translate(-50%, -50%);
    transition: background 180ms ease, transform 180ms ease;
    place-items: center;
}

.gallery-video__play::before {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid white;
    content: "";
}

.gallery-video:hover .gallery-video__play,
.gallery-video:focus-visible .gallery-video__play {
    background: var(--orange);
    transform: translate(-50%, -50%) scale(1.06);
}

.safety-band {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    color: white;
    background: var(--navy);
}

.safety-band__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(200px, 0.68fr) minmax(270px, 0.9fr) minmax(400px, 1.25fr);
    gap: clamp(2rem, 4vw, 4.5rem);
}

.skipper-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.skipper-card::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(7, 37, 46, 0.88));
    content: "";
    pointer-events: none;
}

.skipper-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 52%;
}

.skipper-card figcaption {
    position: absolute;
    z-index: 3;
    right: 1.25rem;
    bottom: 1.1rem;
    left: 1.25rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.skipper-card figcaption strong {
    color: white;
    font-family: var(--display);
    font-size: 2rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.skipper-card figcaption span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 700;
}

.safety-band__heading {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.safety-band__heading > .icon {
    width: 3.4rem;
    height: 3.4rem;
    color: #f2b49a;
}

.safety-band h2 {
    max-width: 600px;
    margin: 0;
    color: white;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.safety-band__intro {
    max-width: 520px;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.safety-band__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--white-line);
    border-left: 1px solid var(--white-line);
    list-style: none;
}

.safety-band__list li {
    display: flex;
    min-height: 108px;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border-right: 1px solid var(--white-line);
    border-bottom: 1px solid var(--white-line);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.75rem;
}

.safety-band__list li span {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
}

.occasions {
    background: var(--paper);
}

.occasions__intro {
    margin-bottom: 3rem;
}

.occasion-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.occasion {
    min-height: 270px;
    padding: 2rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.occasion > span {
    display: block;
    margin-bottom: 5rem;
    color: var(--orange-dark);
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 700;
}

.occasion h3 {
    margin-bottom: 0.7rem;
    font-size: 2rem;
}

.occasion p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.faq-section {
    background: var(--sand);
}

.faq-section__grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(4rem, 8vw, 9rem);
}

.faq-section__intro {
    position: sticky;
    top: 130px;
}

.faq-section__intro h2 {
    font-size: clamp(3.4rem, 5vw, 5rem);
}

.faq-section__intro > p:not(.eyebrow, .section-index) {
    color: var(--muted);
}

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

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

.faq-list summary {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem 0;
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 1px solid rgba(11, 47, 58, 0.35);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--navy);
    transform: translate(-50%, -50%);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
    max-width: 720px;
    margin: -0.2rem 4rem 1.8rem 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.booking-section {
    padding: clamp(6rem, 10vw, 9rem) 0;
    color: white;
    background: var(--navy);
}

.booking-section__grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(4rem, 8vw, 9rem);
}

.booking-summary {
    position: sticky;
    top: 130px;
}

.booking-summary h2 {
    color: white;
    font-size: clamp(3.4rem, 5vw, 5.4rem);
}

.booking-summary > p:not(.eyebrow, .section-index, .booking-summary__contact) {
    color: rgba(255, 255, 255, 0.65);
}

.booking-summary__card {
    margin-top: 2.3rem;
    padding: 1.6rem;
    border: 1px solid var(--white-line);
    background: rgba(255, 255, 255, 0.04);
}

.booking-summary__card > p {
    margin-bottom: 1.2rem;
    color: #ebb699;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-summary__card > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--white-line);
}

.booking-summary__card > div span {
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.booking-summary__card > div strong {
    color: #f2b49a;
    font-family: var(--display);
    font-size: 2rem;
    line-height: 1;
}

.booking-summary__card dl {
    margin: 0.7rem 0 0;
}

.booking-summary__card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.55rem;
}

.booking-summary__card dt,
.booking-summary__card dd {
    margin: 0;
    font-size: 0.72rem;
}

.booking-summary__card dt {
    color: rgba(255, 255, 255, 0.48);
}

.booking-summary__card dd {
    text-align: right;
}

.booking-summary__contact {
    margin-top: 1.7rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.72rem;
}

.booking-summary__contact a {
    color: white;
    font-weight: 700;
}

.booking-form-wrap {
    color: var(--ink);
    background: var(--paper);
}

.booking-form {
    padding: clamp(1.8rem, 4vw, 3.5rem);
}

.booking-form__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--line);
}

.booking-form__heading span {
    color: var(--navy);
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 700;
    text-transform: uppercase;
}

.booking-form__heading p {
    margin: 0;
    padding: 0.35rem 0.55rem;
    color: var(--green);
    background: var(--green-soft);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-form fieldset {
    min-width: 0;
    margin: 0 0 2.4rem;
    padding: 0;
    border: 0;
}

.booking-form legend {
    margin-bottom: 1.3rem;
    padding: 0;
    color: var(--orange-dark);
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

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

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.45rem;
}

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

.form-field > span {
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
}

.form-field > span small {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: white;
    font-size: 0.78rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
    height: 52px;
    padding: 0 0.85rem;
}

.form-field textarea {
    min-height: 120px;
    padding: 0.85rem;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 100, 59, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #667477;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-field,
.form-legal {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0 0 1.3rem;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.55;
}

.form-legal {
    display: block;
}

.check-field input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 0.12rem;
    accent-color: var(--orange);
}

.check-field a,
.form-legal a {
    color: var(--navy);
    font-weight: 700;
}

.booking-form__note {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.6;
    text-align: center;
}

.form-message {
    display: none;
    margin-top: 1rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    font-size: 0.72rem;
    text-align: center;
}

.form-message.is-visible {
    display: block;
}

.form-message.info {
    color: var(--navy);
    background: var(--green-soft);
    border-color: rgba(49, 91, 77, 0.28);
}

.form-message.success {
    color: #174d3b;
    background: #deefe6;
    border-color: rgba(49, 91, 77, 0.34);
}

.form-message.error {
    color: #802f21;
    background: #fbe5dc;
    border-color: rgba(240, 100, 59, 0.3);
}

.site-footer {
    padding: 4rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    background: var(--navy-deep);
}

.site-footer__top {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--white-line);
}

.brand--footer {
    color: white;
}

.brand--footer .brand__text small {
    color: #e6ac8e;
}

.site-footer__top > p {
    max-width: 420px;
    margin: 0;
    font-size: 0.74rem;
}

.footer-mail {
    justify-self: end;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.site-footer__middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 3.2rem 0;
}

.footer-label {
    margin-bottom: 1rem;
    color: #e8b295;
}

.site-footer address,
.site-footer__middle p:not(.footer-label),
.site-footer__middle nav {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    font-style: normal;
    line-height: 1.8;
}

.site-footer address a {
    color: inherit;
    text-decoration-color: rgba(255, 255, 255, 0.32);
    text-underline-offset: 0.18em;
}

.site-footer address a:hover {
    color: white;
}

.site-footer__middle nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.site-footer__middle nav a {
    text-decoration: none;
}

.site-footer__middle nav a:hover {
    color: white;
}

.site-footer__middle .text-link {
    margin-top: 1rem;
    font-size: 0.7rem;
}

.site-footer__middle .footer-contact-links {
    gap: 0.3rem;
}

.site-footer__middle .footer-contact-links a {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__middle .footer-contact-links a:hover,
.site-footer__middle .footer-contact-links a:focus-visible {
    color: white;
    border-color: var(--orange);
    outline: 0;
}

.whatsapp-float {
    position: fixed;
    z-index: 85;
    right: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: white;
    background: #1f9d57;
    box-shadow: 0 12px 34px rgba(7, 37, 46, 0.24);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    color: white;
    background: #16864a;
    outline: 3px solid rgba(31, 157, 87, 0.28);
    outline-offset: 3px;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(7, 37, 46, 0.3);
}

.whatsapp-float svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.site-footer__bottom {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--white-line);
    font-size: 0.72rem;
}

.site-footer__bottom p {
    margin: 0 auto 0 0;
}

.site-footer__bottom a {
    text-decoration: none;
}

.mobile-booking {
    display: none;
}

.mobile-booking.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    visibility: hidden;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 4rem 6rem;
    color: white;
    background: rgba(7, 37, 46, 0.96);
}

.lightbox figure {
    display: grid;
    max-width: min(1100px, 100%);
    max-height: 85vh;
    margin: 0;
    place-items: center;
}

.lightbox img,
.lightbox video {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.lightbox video {
    width: min(1100px, 100%);
    background: #03171d;
}

.lightbox figcaption {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    text-align: center;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: white;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

.lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--prev {
    left: 1.5rem;
}

.lightbox__nav--next {
    right: 1.5rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
    color: var(--navy);
    background: white;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

/* Booking administration */
.admin-page {
    min-height: 100vh;
    color: var(--ink);
    background: var(--sand);
}

.admin-header {
    color: white;
    background: var(--navy-deep);
}

.admin-header__inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.admin-header__inner > a:last-child {
    color: white;
    font-size: 0.76rem;
    font-weight: 700;
}

.admin-main {
    padding-block: clamp(3rem, 7vw, 6rem);
}

.admin-login {
    max-width: 620px;
    margin: 0 auto;
    padding: clamp(1.8rem, 5vw, 3.5rem);
    background: var(--paper);
    box-shadow: 0 20px 55px rgba(7, 37, 46, 0.12);
}

.admin-login h1,
.admin-dashboard h1 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.admin-login > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.65;
}

.admin-login form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem;
    margin-top: 1.8rem;
}

.admin-dashboard__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-toolbar,
.admin-manual-block {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    background: var(--paper);
}

.admin-filter-form,
.admin-inline-form,
.admin-move-form {
    display: grid;
    align-items: end;
    gap: 1rem;
}

.admin-filter-form {
    grid-template-columns: repeat(2, minmax(170px, 1fr)) auto;
}

.admin-manual-block summary,
.admin-move-control summary {
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
}

.admin-inline-form {
    grid-template-columns: minmax(160px, 0.8fr) minmax(210px, 1fr) minmax(260px, 1.5fr) auto;
    margin-top: 1.25rem;
}

.admin-message {
    min-height: 1.5em;
    margin: 1rem 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.admin-bookings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.admin-booking-card,
.admin-empty {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 12px 34px rgba(7, 37, 46, 0.07);
}

.admin-booking-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.admin-booking-card__heading h2 {
    margin: 0 0 0.35rem;
    color: var(--navy);
    font-size: 1.35rem;
}

.admin-booking-card__heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.admin-status {
    flex: 0 0 auto;
    padding: 0.35rem 0.55rem;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-status--pending {
    color: #7b4a16;
    background: #f7e5bf;
}

.admin-status--confirmed {
    color: #174d3b;
    background: #dcece4;
}

.admin-status--cancelled {
    color: #7c3427;
    background: #f5dfd8;
}

.admin-booking-card dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.admin-booking-card dl > div {
    display: grid;
    grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1.3fr);
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(11, 47, 58, 0.08);
    font-size: 0.72rem;
}

.admin-booking-card dt {
    color: var(--muted);
}

.admin-booking-card dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.admin-booking-card dd a {
    color: var(--navy);
    font-weight: 700;
}

.admin-booking-card__actions {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.admin-move-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--line);
}

.admin-move-control summary {
    font-size: 0.72rem;
}

.admin-move-form {
    grid-template-columns: 1fr 1.2fr;
    margin-top: 1rem;
}

.admin-move-form button {
    grid-column: 1 / -1;
}

/* Compatibility styling for the separate terms page. */
.navbar {
    position: sticky;
    z-index: 50;
    top: 0;
    color: white;
    background: var(--navy);
}

.navbar .container {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar .logo h1 {
    margin: 0;
    color: white;
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: 0.02em;
}

.navbar .brand {
    color: white;
}

.navbar .brand__text small {
    color: #e8b295;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.terms-page .terms-content {
    max-width: 900px;
    padding: 40px 20px;
    background: white;
    margin: 0 auto;
}

.terms-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.terms-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.terms-content p,
.terms-content li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.terms-content ul {
    margin-left: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.terms-divider {
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.terms-effective-date {
    margin-top: 2rem;
    color: #767676;
    font-size: 0.9rem;
}

.footer {
    margin-top: 3rem;
    padding: 2rem 20px;
    color: white;
    background: var(--navy-deep);
    text-align: center;
}

.footer p {
    margin: 0.4rem 0;
}

.footer a {
    color: #f0b195;
}

.site-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-block: 0.2rem;
    padding: 0.42rem 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(240, 100, 59, 0.11);
    border: 1px solid rgba(240, 100, 59, 0.38);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-credit strong {
    color: #f0b195;
    font-weight: 800;
}

.site-credit:hover {
    color: white;
    background: rgba(240, 100, 59, 0.2);
    border-color: rgba(240, 100, 59, 0.7);
    transform: translateY(-1px);
}

.site-credit:hover strong {
    color: #ffd0bb;
}

.site-credit:focus-visible {
    outline: 3px solid rgba(240, 100, 59, 0.55);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .nav__links {
        gap: 1.2rem;
    }

    .nav__links a {
        font-size: 0.76rem;
    }

    .hero {
        grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
    }

    .hero h1 {
        font-size: clamp(4rem, 6.7vw, 6.4rem);
    }

    .availability__bar {
        grid-template-columns: 0.9fr 1fr 1.2fr 0.8fr 1.2fr;
    }

    .availability__heading {
        gap: 0.5rem;
    }

    .availability__number {
        font-size: 2.4rem;
    }

    .fact-ribbon__grid > div {
        padding-inline: 1rem;
    }

    .fact-ribbon span {
        display: none;
    }

    .onboard__layout {
        grid-template-columns: 1fr 0.95fr;
    }
}

@media (max-width: 1020px) {
    .nav__links,
    .nav__cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        position: relative;
        display: block;
        min-height: 650px;
        overflow: hidden;
    }

    .hero__copy {
        position: relative;
        z-index: 2;
        min-height: 650px;
        padding: 5rem max(24px, calc((100vw - 880px) / 2)) 6rem;
        background: linear-gradient(90deg, rgba(7, 37, 46, 0.94) 0%, rgba(7, 37, 46, 0.82) 58%, rgba(7, 37, 46, 0.35) 100%);
    }

    .hero h1 {
        max-width: 780px;
        font-size: clamp(4.6rem, 10vw, 7rem);
    }

    .hero__visual {
        position: absolute;
        inset: 0;
        min-height: 0;
        height: 100%;
        max-height: none;
    }

    .hero__visual::after {
        background: linear-gradient(0deg, rgba(7, 37, 46, 0.35), transparent 50%);
    }

    .hero__tag {
        top: auto;
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .hero__location {
        display: none;
    }

    .availability__bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 0;
        padding: 1.6rem;
    }

    .availability__heading {
        grid-column: 1 / -1;
        padding-bottom: 1rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .availability__submit {
        align-self: end;
    }

    .availability__field input,
    .availability__field select,
    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 1rem;
    }

    .fact-ribbon__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem 0;
    }

    .fact-ribbon__grid > div:nth-child(2) {
        border-right: 0;
    }

    .boat-section__grid,
    .route-section__grid,
    .faq-section__grid,
    .booking-section__grid {
        grid-template-columns: 1fr;
    }

    .boat-section__media,
    .boat-section__media img {
        min-height: 620px;
        height: 68vw;
        max-height: 760px;
    }

    .boat-section__copy {
        max-width: 760px;
    }

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

    .tariff-card--featured {
        grid-column: 1 / -1;
        min-height: 520px;
    }

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

    .onboard__photo,
    .onboard__photo img {
        min-height: 620px;
        height: 65vw;
        max-height: 740px;
    }

    .facility {
        min-height: 185px;
    }

    .route-section__copy {
        max-width: 760px;
    }

    .route-section__photo,
    .route-section__photo img {
        min-height: 650px;
        height: 70vw;
        max-height: 800px;
    }

    .safety-band__grid {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }

    .skipper-card {
        width: 100%;
        max-width: 520px;
    }

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

    .faq-section__intro,
    .booking-summary {
        position: static;
    }

    .faq-section__intro {
        max-width: 700px;
    }

    .booking-summary {
        max-width: 760px;
    }

    .booking-summary__card {
        max-width: 520px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-mail {
        display: none;
    }

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

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

@media (max-width: 760px) {
    html {
        scroll-padding-top: 90px;
    }

    body {
        font-size: 15px;
    }

    .admin-header__inner,
    .admin-dashboard__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-header__inner {
        justify-content: center;
        gap: 0.7rem;
        padding-block: 1rem;
    }

    .admin-login form,
    .admin-filter-form,
    .admin-inline-form,
    .admin-move-form {
        grid-template-columns: 1fr;
    }

    .admin-move-form button {
        grid-column: auto;
    }

    .admin-booking-card dl > div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .home-page {
        padding-bottom: 72px;
    }

    .shell {
        width: min(680px, calc(100% - 32px));
    }

    .topbar__inner {
        min-height: 31px;
        gap: 0.6rem;
    }

    .topbar p {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .topbar p:nth-of-type(2),
    .topbar span:nth-of-type(1) {
        display: none;
    }

    .nav {
        min-height: 70px;
    }

    .brand__mark {
        width: 39px;
        height: 29px;
    }

    .brand__text strong {
        font-size: 1.12rem;
    }

    .brand__text small {
        font-size: 0.58rem;
    }

    .mobile-menu {
        top: 101px;
    }

    .hero {
        min-height: 590px;
    }

    .hero__copy {
        min-height: 590px;
        padding: 4rem 16px 4.5rem;
        background: linear-gradient(90deg, rgba(7, 37, 46, 0.94) 0%, rgba(7, 37, 46, 0.84) 68%, rgba(7, 37, 46, 0.55) 100%);
    }

    .hero h1 {
        margin-bottom: 1.35rem;
        font-size: clamp(3.25rem, 14.5vw, 4.8rem);
    }

    .hero__intro {
        font-size: 1rem;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__checks {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 2rem;
    }

    .hero__tag {
        display: none;
    }

    .hero__tag strong {
        font-size: 2rem;
    }

    .hero__location {
        right: 1rem;
        bottom: 1rem;
    }

    .availability {
        padding: 1rem 0 2.5rem;
    }

    .availability__bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.35rem;
        transform: none;
    }

    .availability__heading {
        grid-column: auto;
    }

    .availability__field {
        padding: 0;
    }

    .availability__note {
        margin: 0.9rem 0 0;
        padding: 0;
    }

    .availability-calendar {
        margin-top: 1.25rem;
        padding: 1rem;
    }

    .availability-calendar__header,
    .availability-calendar__footer {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .availability-calendar__controls {
        justify-content: space-between;
    }

    .availability-calendar__controls p {
        min-width: 0;
    }

    .availability-calendar__weekdays,
    .availability-calendar__grid {
        gap: 0.25rem;
    }

    .availability-day {
        min-height: 54px;
    }

    .availability-legend {
        flex-wrap: wrap;
    }

    #availability-status {
        text-align: left;
    }

    .fact-ribbon {
        display: none;
    }

    .fact-ribbon__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fact-ribbon__grid > div {
        min-height: 66px;
        padding: 0.7rem 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .fact-ribbon__grid > div:last-child {
        border-bottom: 0;
    }

    .fact-ribbon span {
        display: inline;
    }

    .section,
    .route-section {
        padding: 4.8rem 0;
    }

    h2 {
        font-size: clamp(2.7rem, 12vw, 3.8rem);
    }

    .boat-section__grid {
        gap: 4.2rem;
    }

    .boat-section__media,
    .boat-section__media img {
        min-height: 480px;
        height: 118vw;
        max-height: 650px;
    }

    .boat-section__media::before {
        top: -14px;
        right: 18px;
        left: -10px;
    }

    .boat-section__stamp {
        right: -6px;
        width: 105px;
        height: 105px;
        border-width: 7px;
    }

    .section-heading,
    .onboard__intro {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

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

    .tariff-card,
    .tariff-card--featured {
        min-height: 500px;
        grid-column: auto;
    }

    .tariff-card__price {
        font-size: 5.8rem;
    }

    .onboard__photo,
    .onboard__photo img {
        min-height: 500px;
        height: 120vw;
        max-height: 650px;
    }

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

    .facility {
        min-height: 160px;
        padding: 1.25rem;
    }

    .facility .icon {
        margin-bottom: 1rem;
    }

    .facility h3 {
        font-size: 1.35rem;
    }

    .facility p {
        font-size: 0.75rem;
    }

    .route-section__grid {
        gap: 4rem;
    }

    .route-section__photo,
    .route-section__photo img {
        min-height: 510px;
        height: 120vw;
        max-height: 680px;
    }

    .route-section__photo::before {
        top: -16px;
        right: -16px;
        bottom: 28px;
        left: 35px;
    }

    .gallery-mosaic {
        grid-auto-rows: 190px;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-photo--wide {
        grid-column: span 2;
    }

    .gallery-photo--tall {
        grid-row: span 2;
    }

    .gallery-item__label {
        display: none;
    }

    .gallery-video__play {
        width: 58px;
        height: 58px;
    }

    .safety-band__heading {
        flex-direction: column;
    }

    .skipper-card {
        max-width: 440px;
    }

    .safety-band__list {
        grid-template-columns: 1fr;
    }

    .safety-band__list li {
        min-height: 76px;
    }

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

    .occasion {
        min-height: 205px;
        padding: 1.35rem;
    }

    .occasion > span {
        margin-bottom: 2.2rem;
    }

    .occasion h3 {
        font-size: 1.65rem;
    }

    .occasion p {
        font-size: 0.75rem;
    }

    .faq-list summary {
        min-height: 78px;
        font-size: 0.86rem;
    }

    .booking-section__grid {
        gap: 3.5rem;
    }

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

    .availability__field input,
    .availability__field select,
    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 1rem;
    }

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

    .site-footer {
        padding-top: 3rem;
    }

    .site-footer__top,
    .site-footer__middle {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        gap: 1.3rem;
    }

    .site-footer__middle {
        gap: 2rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
        padding: 1.5rem 0;
    }

    .site-footer__bottom p {
        margin-right: 0;
    }

    .mobile-booking {
        position: fixed;
        z-index: 90;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 72px;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.8rem 16px;
        color: white;
        background: var(--navy-deep);
        box-shadow: 0 -8px 28px rgba(7, 37, 46, 0.18);
        text-decoration: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .whatsapp-float {
        right: 0.85rem;
        bottom: 84px;
        min-width: 50px;
        min-height: 50px;
        justify-content: center;
        padding: 0.65rem;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .mobile-booking > span:first-child {
        display: flex;
        align-items: baseline;
        gap: 0.3rem;
    }

    .mobile-booking small {
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.68rem;
        text-transform: uppercase;
    }

    .mobile-booking strong {
        font-family: var(--display);
        font-size: 1.6rem;
    }

    .mobile-booking > span:last-child {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 0.9rem;
        color: var(--navy-deep);
        background: var(--orange);
        font-size: 0.76rem;
        font-weight: 700;
    }

    .mobile-booking .icon {
        width: 1rem;
    }

    .lightbox {
        padding: 4rem 1rem;
    }

    .lightbox__nav {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .lightbox__nav--prev {
        left: calc(50% - 58px);
    }

    .lightbox__nav--next {
        right: calc(50% - 58px);
    }

    .terms-content {
        margin-block: 1.5rem;
    }

    .terms-page .navbar .container {
        min-height: 70px;
        gap: 1rem;
    }

    .terms-page .navbar .brand__text small {
        display: none;
    }

    .terms-page .nav-links {
        gap: 0.85rem;
    }

    .terms-page .nav-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 430px) {
    .brand__text small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(3rem, 14.5vw, 4rem);
    }

    .hero__copy {
        min-height: 570px;
    }

    .gallery-mosaic {
        grid-auto-rows: 170px;
    }

    .gallery-photo--tall {
        grid-row: span 1;
    }

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

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
