:root {
    --bg-light: #d8edf0;
    --ink: #24343f;
    --ink-soft: #53636e;
    --accent: #e0b35a;
    --accent-deep: #bf8c2f;
    --paper: #fdfcf8;
    --panel: #ffffff;
}

html {
    scroll-padding-top: 130px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    background: linear-gradient(180deg, #edf6f7 0%, #d3e8ea 100%);
}

h1,
h2,
h3,
h4,
.brand {
    font-family: "League Spartan", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(36, 52, 63, 0.12);
}

.brand {
    color: var(--ink);
    font-size: 1.45rem;
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    gap: 1.3rem;
}

.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--ink);
}

.btn-book {
    background: var(--accent);
    color: #1f2326;
    border: 1px solid var(--accent-deep);
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.btn-book:hover {
    background: var(--accent-deep);
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.hero-wrap {
    position: relative;
    min-height: 62vh;
    background-image: url('../images/frontpage-reference.png');
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 30, 0.18) 0%, rgba(8, 21, 30, 0.72) 100%);
}

.hero-content {
    padding: 4.5rem 0 3rem;
    color: #fff;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.82rem;
    opacity: 0.88;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0.4rem 0 0.8rem;
}

.hero-content p {
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.92);
}

.book-online-section,
.fleet-section {
    padding: 3.5rem 0;
}

.booking-cards-panel {
    border-radius: 18px;
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 18px 50px rgba(31, 47, 56, 0.16);
    border: 1px solid rgba(36, 52, 63, 0.08);
}

.book-online-section {
    background: linear-gradient(180deg, #e6f3f4 0%, #e1f0f1 100%);
}

.book-online-section h2,
.fleet-section h2,
.site-footer h4 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.book-online-section h2,
.fleet-section h2 {
    margin-bottom: 1rem;
}

.booking-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.booking-card {
    position: relative;
    background: var(--paper);
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid rgba(36, 52, 63, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.booking-card:hover {
    transform: translateY(-2px);
    border-color: rgba(191, 140, 47, 0.45);
    box-shadow: 0 12px 30px rgba(31, 47, 56, 0.12);
}

.booking-card.is-selected {
    border-color: var(--accent-deep);
    box-shadow: 0 0 0 3px rgba(191, 140, 47, 0.18);
}

.booking-card.booking-card-align-start {
    justify-content: flex-start;
}

.booking-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.booking-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(191, 140, 47, 0.14);
    color: #8d621a;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-weight: 700;
}

.booking-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.booking-cards-image {
    width: 100%;
    display: block;
}

.booking-card h3 {
    margin: 0.2rem 0 0.55rem;
    font-size: 1.35rem;
}

.booking-card p {
    color: var(--ink-soft);
    margin: 0 0 1rem;
}

.btn-booking-select {
    align-self: flex-start;
    border: 1px solid rgba(36, 52, 63, 0.2);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 0.42rem 0.85rem;
    font-weight: 700;
    font-size: 0.86rem;
}

.btn-booking-select:hover {
    border-color: var(--accent-deep);
    color: var(--accent-deep);
}

.booking-workflow {
    margin-top: 0.4rem;
}

.booking-form,
.booking-summary {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(36, 52, 63, 0.1);
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(31, 47, 56, 0.08);
}

.booking-summary h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.booking-summary-item span {
    color: var(--ink-soft);
}

.fleet-item {
    background: linear-gradient(120deg, #1e3444, #314f63);
    color: #f5f7f8;
    border-radius: 14px;
    padding: 2.2rem 1.2rem;
    text-align: center;
    font-weight: 600;
}

.fleet-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
}

.fleet-item p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(245, 247, 248, 0.84);
}

.site-footer {
    background: #132530;
    color: rgba(245, 247, 248, 0.88);
}

.site-footer h4 {
    color: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links a {
    color: rgba(245, 247, 248, 0.88);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 767.98px) {
    .hero-wrap {
        min-height: 52vh;
        background-position: center top;
    }

    .hero-content {
        padding: 3.4rem 0 2.2rem;
    }
}

body.frontpage-layout {
    margin: 0;
    color: #0f243e;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
}

.frontpage-layout h1,
.frontpage-layout h2,
.frontpage-layout h3 {
    font-family: 'Playfair Display', serif;
}

.frontpage-layout .btn,
.frontpage-layout button,
.frontpage-layout .nav-link {
    transition: all 0.25s ease;
}

.frontpage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.frontpage-topbar {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    color: #54687b;
    font-size: 0.9rem;
    padding: 0.85rem 0;
}

.frontpage-topbar a,
.frontpage-topbar span {
    color: inherit;
    text-decoration: none;
}

.frontpage-navbar {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
}

.frontpage-navbar .container-xl {
    border-radius: 999px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.frontpage-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.frontpage-navbar.is-scrolled .container-xl {
    background: rgba(255, 255, 255, 0.98);
}

.frontpage-brand {
    width: 142px;
    padding: 0.5rem 0.75rem;
}

.frontpage-brand img {
    width: 200px;
    height: auto;
    position: absolute;
    top: 0px;
    left: 10px;
}

.frontpage-toggler {
    border-radius: 999px;
    border-color: rgba(15, 36, 62, 0.28);
    background: rgba(255, 255, 255, 0.9);
}

.frontpage-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 36, 62, 0.15);
}

.frontpage-toggler .navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815,36,62,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.frontpage-layout .navbar-nav .nav-link {
    color: #0f243e;
    padding: 0.6rem 1rem;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 600;
}

.frontpage-layout .navbar-nav .nav-link:hover,
.frontpage-layout .navbar-nav .nav-link:focus {
    color: #b5915b;
}

.frontpage-layout .navbar-nav .frontpage-nav-cta .nav-link {
    background: #b5915b;
    border: 2px solid #b5915b;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    margin-left: 0.4rem;
}

.frontpage-layout .navbar-nav .frontpage-nav-cta .nav-link:hover,
.frontpage-layout .navbar-nav .frontpage-nav-cta .nav-link:focus {
    background: #ffffff;
    color: #b5915b;
    border-color: #b5915b;
}

.frontpage-hero {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: #0f243e;
}

.frontpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 36, 62, 0.2) 0%, rgba(15, 36, 62, 0.66) 100%);
    z-index: 1;
    pointer-events: none;
}

.frontpage-hero-carousel,
.frontpage-hero-carousel .carousel-inner,
.frontpage-hero-carousel .carousel-item {
    min-height: 100vh;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-img-bg {
    object-fit: cover;
}

.hero-slide-video-bg {
    overflow: hidden;
}

.hero-slide-video-bg iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    transform: scale(1.2);
}

.hero-slide-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 9.5rem;
    padding-bottom: 4rem;
}

.frontpage-hero h1 {
    color: #d4af37;
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.frontpage-hero-copy {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.6rem);
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.frontpage-hero-actions {
    margin-top: 2rem;
}

.frontpage-hero-actions .frontpage-gold-btn,
.frontpage-hero-actions .frontpage-navy-btn {
    background: #ffffff;
    color: #0f243e;
    border-color: #ffffff;
}

.frontpage-pill-btn {
    border-radius: 50px;
    padding: 0.75rem 1.2rem;
    border: 2px solid transparent;
    color: #ffffff;
    font-weight: 600;
    width: 270px;
    min-width: 270px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

/* Light background: default is bronze (#b5915b), hover turns white */
.frontpage-pill-btn:hover,
.frontpage-pill-btn:focus {
    background: #ffffff;
    color: #b5915b;
    border-color: #b5915b;
    transform: scale(1.03);
}

/* Dark background (hero): non-coral btns hover turns coral */
.frontpage-hero .frontpage-pill-btn:hover,
.frontpage-hero .frontpage-pill-btn:focus {
    background: #b5915b;
    color: #ffffff;
    border-color: #b5915b;
}

.frontpage-gold-btn {
    background: #d4af37;
}

.frontpage-navy-btn {
    background: #0f243e;
}

.frontpage-coral-btn,
.frontpage-book-btn {
    background: #b5915b;
}

.frontpage-social-btn {
    width: 200px;
    min-width: 200px;
    padding: 0.75rem 1.2rem;
    font-size: inherit;
    font-weight: 600;
    color: #ffffff !important;
    display: inline-flex;
    justify-content: center;
}

.frontpage-social-btn:hover,
.frontpage-social-btn:focus {
    color: #b5915b !important;
}

.hero-video-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-video-wrap iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.hero-slide-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.frontpage-language-strip {
    padding: 1.7rem 0 1.2rem;
    font-size: 1.45rem;
    color: #0f243e;
}

.frontpage-section {
    padding: 4.5rem 0;
}

.frontpage-section-title {
    color: #0f243e;
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 2rem;
}

.frontpage-about-section {
    background: #f5f5f5;
    padding-top: 1rem;
}

.frontpage-about-card {
    position: relative;
    padding-top: 1.5rem;
}

.frontpage-about-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(15, 36, 62, 0.24);
}

.frontpage-about-card::after {
    display: none;
}

.frontpage-about-card h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 1rem;
    color: #0f243e;
}

.frontpage-about-card p {
    color: #0f243e;
    line-height: 1.7;
}

.coastal-slider-section {
    padding-top: 5.6rem;
    overflow: hidden;
}

.coastal-slider-section .carousel-inner {
    height: 370px;
    overflow: hidden;
}

.coastal-slider-section .carousel-item {
    height: 370px;
    width: 100%;
}

.coastal-slider-section .carousel-fade .carousel-item {
    transition: opacity 0.45s ease-in-out;
}

.coastal-slide-row {
    min-height: 370px;
    height: 370px;
    margin-left: 0;
    margin-right: 0;
}

.coastal-slide-row > [class*='col-'] {
    height: 370px;
    padding-left: 0;
    padding-right: 0;
}

.coastal-slide-image-wrap,
.coastal-slide-copy {
    min-height: 370px;
    height: 370px;
    overflow: hidden;
}

.coastal-slide-image-wrap {
    background: #0f243e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coastal-slide-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
}

.coastal-slide-copy {
    padding: 3rem clamp(1.4rem, 5vw, 4rem);
    background: linear-gradient(180deg, rgba(15, 36, 62, 0.08), rgba(15, 36, 62, 0.14));
    color: #0f243e;
}

.coastal-slide-copy h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #d4af37;
    margin-bottom: 1rem;
}

.coastal-slide-copy p {
    line-height: 1.75;
    margin-bottom: 1rem;
}

.coastal-slide-copy .frontpage-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    border: 2px solid rgba(15, 36, 62, 0.4);
}

/* Carousel (light bg): coral btn hover → white with coral border */
.coastal-slide-copy .frontpage-book-btn:hover,
.coastal-slide-copy .frontpage-book-btn:focus {
    background: #ffffff;
    color: #b5915b;
    border-color: #b5915b;
}

.coastal-slide-duration {
    color: #0f243e;
    font-weight: 600;
}

.frontpage-indicators {
    bottom: -2.8rem;
}

.frontpage-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #b5915b;
}

.frontpage-carousel-control {
    width: 6%;
}

.frontpage-hero-carousel .carousel-control-prev,
.frontpage-hero-carousel .carousel-control-next {
    z-index: 3;
}

.frontpage-trips-section .frontpage-carousel-control {
    background: rgba(15, 36, 62, 0.55);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}

.frontpage-trips-section .carousel-control-prev {
    left: -4px;
}

.frontpage-trips-section .carousel-control-next {
    right: -4px;
}

.frontpage-trips-section .frontpage-carousel-control:hover {
    background: rgba(15, 36, 62, 0.8);
}

.frontpage-boats-section {
    padding-top: 6rem;
}

.frontpage-boat-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.frontpage-boat-card figcaption {
    margin-top: 1rem;
    text-align: center;
    background: #b5915b;
    color: #ffffff;
    border-radius: 50px;
    padding: 0.7rem 1.1rem;
    font-weight: 600;
}

.frontpage-extra-hero {
    background: #0f243e;
    border-radius: 0;
}

.frontpage-extra-media {
    background: #0f243e;
}

.frontpage-extra-video {
    width: 100%;
    min-height: 100%;
    height: 100%;
    object-fit: cover;
}

.frontpage-extra-copy {
    min-height: 100%;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    color: #ffffff;
}

.frontpage-extra-copy h3 {
    color: #ffffff;
    font-style: italic;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    margin: 0;
}

.frontpage-service-row {
    background: #ffffff;
}

.frontpage-service-image {
    min-height: 250px;
}

.frontpage-service-copy {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frontpage-service-copy h3 {
    color: #0f243e;
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
    margin-bottom: 0.8rem;
}

.frontpage-service-copy p {
    margin: 0;
    line-height: 1.7;
    color: #0f243e;
}

.frontpage-booking-section {
    padding-top: 3.8rem;
    scroll-margin-top: 130px;
}

.frontpage-calendar-wrap {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 35px rgba(15, 36, 62, 0.08);
    padding: 1.1rem;
}

.frontpage-calendar-table {
    margin-bottom: 0;
    border-color: rgba(15, 36, 62, 0.08);
}

.frontpage-calendar-table th,
.frontpage-calendar-table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.frontpage-calendar-table thead th {
    color: #0f243e;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.08);
}

.frontpage-calendar-table .is-active {
    background: rgba(181, 145, 91, 0.16);
    color: #0f243e;
    font-weight: 700;
}

.frontpage-calendar-table .is-muted {
    background: rgba(15, 36, 62, 0.06);
}

.frontpage-feedback {
    font-size: 0.95rem;
}

.frontpage-trips-section {
    padding-top: 3.5rem;
}

.frontpage-trip-card {
    overflow: hidden;
}

.frontpage-trip-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.frontpage-trip-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 1rem;
    background: rgba(15, 36, 62, 0.72);
    color: #ffffff;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

.frontpage-footer {
    padding: 3rem 0 4rem;
}

.frontpage-footer-grid {
    border-top: 1px solid rgba(15, 36, 62, 0.18);
    border-bottom: 1px solid rgba(15, 36, 62, 0.18);
}


.frontpage-footer-item {
    padding: 2.5rem 1rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(15, 36, 62, 0.18);
    align-items: center;
    text-align: center;
}

.frontpage-footer-grid > div:first-child .frontpage-footer-item {
    border-left: 0;
}

.frontpage-footer-item span,
.frontpage-footer-item strong,
.frontpage-footer-item a {
    color: #0f243e;
}

.frontpage-footer-item span {
    font-size: 1rem;
    margin-bottom: 3rem;
}

.frontpage-footer-item strong {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.frontpage-footer-item a {
    text-decoration: none;
}

.trip-banner-wrap {
    width: 100%;
    background: #000;
}

.trip-banner-wrap .ratio {
    width: 100%;
}

.trip-banner-image {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.trip-gallery-card {
    border-radius: 10px;
    overflow: hidden;
}

.trip-gallery-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    width: 100%;
}

.trip-gallery-caption {
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0.2rem 0;
    text-align: center;
}

.frontpage-whatsapp-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1060;
    width: 270px;
    max-width: calc(100vw - 32px);
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 0.85rem 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    font-weight: 700;
}

.frontpage-whatsapp-sticky:hover,
.frontpage-whatsapp-sticky:focus {
    color: #ffffff;
    transform: translateY(-2px);
}

.frontpage-whatsapp-pill-btn {
    background: #25d366;
    color: #ffffff;
    border: none;
}

.frontpage-whatsapp-pill-btn:hover,
.frontpage-whatsapp-pill-btn:focus {
    background: #1da851;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .frontpage-header {
        position: absolute;
    }

    .frontpage-topbar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    .frontpage-navbar {
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 8px 24px rgba(15, 36, 62, 0.1);
    }

    .frontpage-navbar .container-xl {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .frontpage-navbar .navbar-collapse {
        margin-top: 1.35rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        padding: 1.25rem 1rem 1rem;
    }

    .frontpage-layout .navbar-nav .frontpage-nav-cta .nav-link {
        margin-left: 0;
        margin-top: 0.45rem;
        text-align: center;
    }

    .frontpage-brand {
        width: 122px;
        padding: 0;
    }

    .frontpage-brand img {
        width: 122px;
        position: static;
        top: auto;
        left: auto;
        display: block;
    }

    .frontpage-hero {
        min-height: 88vh;
    }

    .hero-slide-content {
        min-height: 88vh;
        padding-top: 9rem;
    }

    .frontpage-language-strip {
        font-size: 1.1rem;
    }

    .coastal-slide-copy,
    .coastal-slide-image-wrap {
        height: auto;
        min-height: 320px;
    }

    .coastal-slider-section .carousel-inner {
        height: auto;
        overflow: visible;
    }

    .coastal-slider-section .carousel-item {
        height: auto;
    }

    .coastal-slide-row,
    .coastal-slide-row > [class*='col-'] {
        height: auto;
        min-height: 0;
    }

    .coastal-slide-image-wrap {
        height: 300px;
        min-height: 300px;
    }

    .coastal-slide-copy {
        min-height: 280px;
    }

    .frontpage-carousel-control {
        width: 12%;
    }

    .frontpage-footer-item {
        border-left: 0;
        border-top: 1px solid rgba(15, 36, 62, 0.18);
        min-height: auto;
    }

    .frontpage-footer-grid > div:first-child .frontpage-footer-item {
        border-top: 0;
    }
}

@media (max-width: 767.98px) {
    .frontpage-hero h1 {
        font-size: 2.3rem;
    }

    .frontpage-hero-copy {
        font-size: 1rem;
    }

    .frontpage-pill-btn {
        width: 220px;
        min-width: 220px;
        max-width: 100%;
    }

    .frontpage-section {
        padding: 3rem 0;
    }

    .coastal-slide-copy,
    .coastal-slide-image-wrap {
        min-height: 0;
    }

    .coastal-slide-image-wrap {
        height: 240px;
        min-height: 240px;
    }

    .coastal-slide-copy {
        height: auto;
        padding: 2rem 1.25rem;
        min-height: 0;
    }

    .coastal-slide-copy h3 {
        font-size: clamp(1.55rem, 7vw, 2rem);
        margin-bottom: 0.7rem;
    }

    .coastal-slide-copy p {
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }

    .coastal-slide-copy .frontpage-book-btn {
        width: auto;
        min-width: 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .frontpage-about-card,
    .frontpage-about-card p,
    .frontpage-service-copy,
    .frontpage-service-copy p {
        text-align: center;
    }

    .frontpage-extra-copy {
        text-align: center;
    }

    .frontpage-calendar-table th,
    .frontpage-calendar-table td {
        padding: 0.7rem 0.45rem;
        font-size: 0.85rem;
    }

    .frontpage-footer-item span {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .site-header .btn-book {
        padding: 0.5rem 0.65rem;
        font-size: 1rem;
        line-height: 1;
    }

    .site-header .brand {
        font-size: 1.1rem;
    }

    .site-header [aria-label="Language selector"] img {
        width: 26px;
        height: 17px;
    }

    .hero-slide-content {
        padding-top: 11rem;
    }
}

@media (max-width: 420px) {
    .coastal-slider-section {
        padding-top: 4.4rem;
    }

    .coastal-slide-copy {
        padding: 1.35rem 1rem;
    }

    .coastal-slide-image-wrap {
        height: 210px;
        min-height: 210px;
    }

    .coastal-slide-copy h3 {
        font-size: 1.45rem;
    }

    .coastal-slide-copy p {
        font-size: 0.95rem;
    }

    .coastal-slide-duration {
        font-size: 0.92rem;
    }

    .frontpage-indicators {
        bottom: -2.1rem;
    }
}
