:root {
    --ink: #102c33;
    --ink-soft: #38545a;
    --ocean: #0b4651;
    --ocean-deep: #072f38;
    --sea-glass: #9bc5bf;
    --foam: #edf5f1;
    --cream: #f7f1e7;
    --sand: #d8b37c;
    --coral: #d66d55;
    --white: #fffdfa;
    --line: rgba(16, 44, 51, 0.16);
    --shadow: 0 24px 70px rgba(7, 47, 56, 0.18);
    --radius: 24px;
    --shell: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(3.3rem, 7vw, 6.8rem);
}

h1 em {
    color: var(--coral);
    font-weight: 400;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 4vw, 4rem);
}

h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

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

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ocean-deep);
    border-radius: 8px;
    transform: translateY(-160%);
}

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

.site-header {
    position: relative;
    z-index: 10;
    background: rgba(255, 253, 250, 0.95);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.brand-mark {
    width: 45px;
    height: 45px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ocean-deep);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-style: italic;
    box-shadow: 0 5px 16px rgba(7, 47, 56, 0.15);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.brand small {
    margin-top: -2px;
    color: var(--ink-soft);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav a,
.footer-links a {
    text-decoration: none;
}

.site-nav a:not(.nav-cta):hover,
.footer-links a:hover {
    color: var(--coral);
}

.nav-cta {
    padding: 11px 20px;
    color: var(--white);
    background: var(--ocean);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background:
        radial-gradient(circle at 9% 0%, rgba(155, 197, 191, 0.34), transparent 34%),
        linear-gradient(135deg, var(--white), var(--foam));
}

.hero::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -190px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(11, 70, 81, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(11, 70, 81, 0.035), 0 0 0 140px rgba(11, 70, 81, 0.025);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.hero h1 {
    font-size: clamp(3.15rem, 5.3vw, 5.75rem);
}

.eyebrow {
    margin-bottom: 20px;
    color: var(--ocean);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--sea-glass);
}

.hero-lead {
    max-width: 710px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.button {
    min-height: 52px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 650;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 12px 32px rgba(214, 109, 85, 0.28);
}

.button-primary:hover {
    background: #c95c45;
}

.button-quiet {
    color: var(--ocean);
    border-color: var(--line);
}

.button-light {
    color: var(--ocean-deep);
    background: var(--white);
}

.microcopy {
    margin: 22px 0 0;
    color: #667a7d;
    font-size: 0.82rem;
}

.hero-card {
    overflow: hidden;
    background: rgba(255, 253, 250, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.photo-card {
    margin: 0;
    background: var(--white);
}

.photo-card > img {
    width: 100%;
    height: 445px;
    display: block;
    object-fit: cover;
    object-position: 54% center;
}

.photo-card figcaption {
    padding: 25px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.photo-card figcaption strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 500;
}

.photo-card figcaption > span:last-child {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.horizon {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(#efd9ba 0 48%, #4d9ba1 48% 62%, #0b4651 62% 100%);
}

.sun {
    position: absolute;
    top: 50px;
    right: 58px;
    width: 62px;
    height: 62px;
    background: #e37e5e;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(227, 126, 94, 0.45);
}

.wave {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 55px;
    border-radius: 50%;
}

.wave-one {
    top: 143px;
    background: #82c0bc;
}

.wave-two {
    top: 177px;
    background: var(--ocean);
}

.boat {
    position: absolute;
    top: 126px;
    left: 35%;
    color: var(--ocean-deep);
    font-size: 2.2rem;
    transform: rotate(45deg);
}

.hero-card-copy {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px 14px;
    padding: 26px 30px 30px;
}

.hero-card-copy p {
    margin: 0;
}

.card-number {
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.section {
    padding: 105px 0;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    color: var(--white);
    background: var(--ocean-deep);
}

.section-heading {
    max-width: 770px;
    margin-bottom: 55px;
}

.section-heading > p:last-child,
.split-callout p,
.page-hero-grid > p,
.promise-list p {
    color: var(--ink-soft);
}

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

.feature-card {
    padding: 34px;
    background: rgba(255, 253, 250, 0.72);
    border: 1px solid rgba(16, 44, 51, 0.1);
    border-radius: 18px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 42px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background: var(--ocean);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
}

.split-callout,
.promise-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: clamp(45px, 9vw, 130px);
}

.split-callout h2,
.split-callout p {
    color: var(--white);
}

.split-callout p {
    font-size: 1.15rem;
}

.text-link {
    color: var(--sea-glass);
    font-weight: 700;
    text-decoration: none;
}

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

.large-copy {
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.captain-preview {
    overflow: hidden;
}

.captain-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
}

.captain-view {
    margin: 0;
}

.captain-view img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    object-position: 50% top;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.captain-view figcaption,
.boat-gallery figcaption,
.vessel-ad p {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.captain-hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--ocean-deep);
}

.captain-hero-image,
.captain-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.captain-hero-image {
    object-fit: cover;
    object-position: center;
}

.captain-hero-shade {
    background: linear-gradient(90deg, rgba(5, 31, 37, 0.88), rgba(5, 31, 37, 0.2) 62%, rgba(5, 31, 37, 0.05));
}

.captain-hero-copy {
    position: relative;
    z-index: 1;
    padding-block: 100px 80px;
}

.captain-hero-copy h1 {
    max-width: 840px;
    margin-bottom: 20px;
    font-size: clamp(3.4rem, 7vw, 7rem);
}

.captain-hero-copy > p:last-child {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: clamp(45px, 9vw, 135px);
}

.profile-title {
    position: sticky;
    top: 35px;
}

.trip-rules {
    margin-top: 45px;
    border-top: 1px solid var(--line);
}

.trip-rules p {
    margin: 0;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
    border-bottom: 1px solid var(--line);
}

.trip-rules span {
    color: var(--ink-soft);
}

.vessel-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(45px, 9vw, 125px);
}

.vessel-ad {
    margin: 0;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
}

.vessel-ad img {
    width: 100%;
    display: block;
}

.vessel-ad p {
    margin-bottom: 0;
    padding-inline: 4px;
}

.spec-list {
    margin: 42px 0 20px;
    border-top: 1px solid var(--line);
}

.spec-list div {
    padding: 17px 0;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.spec-list dt {
    color: var(--ink-soft);
    font-size: 0.77rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.spec-list dd {
    margin: 0;
    font-weight: 650;
}

.fine-print {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

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

.boat-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.boat-gallery figure {
    margin: 0;
}

.boat-gallery img {
    width: 100%;
    height: 470px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.boat-gallery .gallery-wide {
    grid-column: 1 / -1;
}

.boat-gallery .gallery-wide img {
    height: 620px;
}

.boat-gallery .gallery-short img {
    height: 520px;
    object-position: center top;
}

.photo-interlude {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: var(--ocean-deep);
}

.photo-interlude > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-interlude::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 31, 37, 0.85), transparent 70%);
}

.photo-interlude-card {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), 720px);
    margin: 0 max(24px, calc((100vw - var(--shell)) / 2)) 55px;
    padding: clamp(30px, 5vw, 50px);
    color: var(--white);
    background: rgba(5, 31, 37, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.photo-interlude-card h2 {
    margin-bottom: 16px;
}

.photo-interlude-card p:last-child {
    margin-bottom: 0;
    color: #d3e2e0;
}

.page-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--foam), var(--white));
}

.page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(3rem, 6vw, 5.7rem);
}

.page-hero-grid > p {
    margin-top: 54px;
    font-size: 1.18rem;
}

.compact-hero {
    padding-block: 80px;
}

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

.journey-step {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    border-bottom: 1px solid var(--line);
}

.journey-step > span {
    color: var(--coral);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.16em;
}

.journey-step h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.journey-step p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.promise-list p {
    padding: 0 0 22px;
    border-bottom: 1px solid var(--line);
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 70px;
}

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

.faq-list h2 {
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.faq-list p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.centered-callout {
    text-align: center;
}

.centered-callout h2 {
    margin-bottom: 35px;
}

.contact-hero {
    padding-block: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(45px, 9vw, 130px);
}

.contact-grid h1 {
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.contact-card {
    padding: clamp(30px, 5vw, 52px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card a {
    color: var(--coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-decoration: none;
}

.contact-card p:not(.contact-label) {
    margin: 12px 0 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.contact-card hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.contact-label {
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.notice-card {
    max-width: 900px;
    padding: 38px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    background: rgba(255, 253, 250, 0.72);
    border-radius: 18px;
}

.notice-card .feature-icon {
    margin: 0;
    text-transform: lowercase;
}

.notice-card h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.notice-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(45px, 8vw, 110px);
}

.form-intro {
    position: sticky;
    top: 35px;
}

.form-intro p:last-child {
    color: var(--ink-soft);
}

.contact-form-card {
    position: relative;
    padding: clamp(28px, 5vw, 52px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-field {
    min-width: 0;
}

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

.form-field > label,
.form-field > legend {
    margin-bottom: 9px;
    display: block;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.4;
}

fieldset.form-field {
    margin: 0;
    padding: 0;
    border: 0;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(16, 44, 51, 0.25);
    border-radius: 10px;
    font: inherit;
    line-height: 1.4;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(11, 70, 81, 0.12);
}

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

.choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
}

.choice-list input {
    margin: 0 7px 0 0;
    accent-color: var(--coral);
}

.choice-list label {
    margin-right: 14px;
    color: var(--ink-soft);
}

.choice-list br {
    display: none;
}

.consent-field {
    padding: 18px 20px;
    background: var(--foam);
    border-radius: 12px;
}

.consent-field input {
    margin-right: 9px;
    accent-color: var(--coral);
}

.consent-field label {
    font-weight: 600;
}

.form-submit {
    width: 100%;
    margin-top: 30px;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
}

.form-privacy {
    margin: 14px 0 0;
    color: var(--ink-soft);
    font-size: 0.76rem;
    text-align: center;
}

.form-status {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: 10px;
    font-weight: 650;
}

.form-status-success {
    color: #174f3d;
    background: #e3f2ea;
    border: 1px solid #a8d4bd;
}

.form-status-error {
    color: #78382b;
    background: #fae8e2;
    border: 1px solid #e4b1a4;
}

.form-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-footer {
    padding: 68px 0 28px;
    color: var(--white);
    background: #051f25;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand .brand-mark {
    background: var(--ocean-deep);
}

.footer-grid p {
    margin: 20px 0 0;
    color: #a9bec0;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-note {
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #809da0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

@media (max-width: 850px) {
    .nav-shell {
        padding-block: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-cta {
        margin-left: auto;
    }

    .hero-grid,
    .page-hero-grid,
    .contact-grid,
    .promise-grid,
    .split-callout,
    .captain-preview-grid,
    .profile-grid,
    .vessel-grid {
        grid-template-columns: 1fr;
    }

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

    .form-intro {
        position: static;
    }

    .hero-card {
        max-width: 520px;
        transform: none;
    }

    .profile-title {
        position: static;
    }

    .vessel-ad {
        max-width: 430px;
        transform: none;
    }

    .captain-hero {
        min-height: 600px;
    }

    .captain-hero-shade {
        background: linear-gradient(0deg, rgba(5, 31, 37, 0.9), rgba(5, 31, 37, 0.12) 78%);
    }

    .boat-gallery img,
    .boat-gallery .gallery-wide img,
    .boat-gallery .gallery-short img {
        height: 440px;
    }

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

    .feature-icon {
        margin-bottom: 25px;
    }

    .page-hero-grid > p {
        margin-top: 0;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
        overflow-x: hidden;
    }

    .shell {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
    }

    .hero-grid {
        display: block;
    }

    .hero-copy {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.65rem, 12vw, 3.05rem);
        line-height: 1.02;
    }

    .hero h1 em {
        display: block;
        margin-top: 10px;
    }

    .hero .eyebrow {
        max-width: 100%;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 1.04rem;
    }

    .hero-card {
        width: 100%;
        margin-top: 55px;
    }

    .site-nav {
        font-size: 0.88rem;
    }

    .nav-cta {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .hero,
    .page-hero,
    .section {
        padding-block: 72px;
    }

    .journey-step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

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

    .photo-card > img {
        height: 390px;
    }

    .captain-view img {
        height: 210px;
    }

    .trip-rules p,
    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .boat-gallery {
        grid-template-columns: 1fr;
    }

    .boat-gallery .gallery-wide {
        grid-column: auto;
    }

    .boat-gallery img,
    .boat-gallery .gallery-wide img,
    .boat-gallery .gallery-short img {
        height: 340px;
    }

    .boat-gallery .gallery-short img {
        height: 170px;
        object-position: center top;
    }

    .photo-interlude {
        min-height: 620px;
    }

    .notice-card {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

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

    .button {
        transition: none;
    }
}
