p {
    margin-top: 0;
    margin-bottom: 1.15em;
}
p,
.about-copy p,
.gallery-intro,
.availability-note {
    line-height: 1.65;
}


/* =========================================
   FONTS
   ========================================= */

@font-face {
    font-family: Headings;
    src: url('./fonts/FjallaOne-Regular.ttf');
}

@font-face {
    font-family: Headings;
    font-weight: bold;
    src: url('./fonts/FjallaOne-Regular.ttf');
}

@font-face {
    font-family: Header;
    src: url('./fonts/Indigo-Regular.otf');
}

@font-face {
    font-family: Header;
    font-weight: bold;
    src: url('./fonts/Indigo-Regular.otf');
}

@font-face {
    font-family: Body;
    src: url('./fonts/SourceSans3-VariableFont_wght.ttf');
}

@font-face {
    font-family: Body;
    font-weight: normal;
    src: url('./fonts/SourceSans3-VariableFont_wght.ttf');
}



/* =========================================
   DESIGN TOKENS
   ========================================= */

:root {
    --color-pink: #ff168a;
    --color-pink-alt: #F83B93;
    --color-brown: #411111;
    --color-white: #ffffff;

    --radius-small: 6px;
    --radius-medium: 8px;
    --radius-large: 12px;
}


/* =========================================
   TOP NAVIGATION BAR
   ========================================= */

#top-nav {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    z-index: 1000;

    background-color: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.15);
}


/* =========================================
   NAVIGATION LOGO / TITLE
   ========================================= */

.nav-title {
    position: absolute;
    left: 33%;
    transform: translateX(-50%);

    font-family: Header;

    color: #ff168a;

    font-size: 2rem;
    font-weight: bold;

    letter-spacing: 0.08em;

    text-decoration: none;
    white-space: nowrap;

    opacity: 1;

    -webkit-text-stroke-width: 0;
    text-shadow: none;

    transition:
        color 0.35s ease,
        opacity 0.35s ease;
}


.nav-title:hover {
    color: #ff168a;
    opacity: 1;
}


/* =========================================
   HAMBURGER BUTTON
   ========================================= */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    padding: 8px;

    cursor: pointer;

    z-index: 1001;
}


.menu-toggle span {
    display: block;

    width: 26px;
    height: 3px;

    margin: 5px 0;

    background-color: #411111;

    border-radius: 2px;

    transition: background-color 0.3s ease;
}


/* =========================================
   NAVIGATION LINKS
   ========================================= */

.nav-links {
    position: absolute;
    left: 52%;

    display: flex;
    align-items: center;

    gap: 32px;

    white-space: nowrap;
}


.nav-links a {
    font-family: Headings;

    color: #411111;

    font-size: 1.15rem;

    letter-spacing: 0.04em;

    text-decoration: none;

    opacity: 1;

    text-shadow: none;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


.nav-links a:hover {
    color: #ff168a;
    opacity: 1;
}


/* =========================================
   NAVIGATION HOVER / SCROLL STATES
   ========================================= */

#top-nav:hover,
#top-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.15);
}


#top-nav:hover .nav-title,
#top-nav.scrolled .nav-title {
    color: #ff168a;

    -webkit-text-stroke-width: 0;

    text-shadow: none;
}


#top-nav:hover .nav-links a,
#top-nav.scrolled .nav-links a {
    color: #411111;

    text-shadow: none;
}


#top-nav:hover .nav-links a:hover,
#top-nav.scrolled .nav-links a:hover {
    color: #ff168a;
    opacity: 1;
}


#top-nav:hover .menu-toggle span,
#top-nav.scrolled .menu-toggle span {
    background-color: #411111;
}


/* =========================================
   HERO BACKGROUND SLIDESHOW
   ========================================= */

.hero-background {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: -1;

    overflow: hidden;

    background-color: #411111;
}


.hero-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

    opacity: 0;

    transition: opacity 1.5s ease-in-out;
}


.hero-bg.active {
    opacity: 1;
}


/* =========================================
   HOME HERO
   ========================================= */

.hero {
    height: 30vh;
    min-height: 145px;
    max-height: 200px;
    position: relative;
}


/* =========================================
   HOME MAIN AREA
   ========================================= */

.home-main {
    position: relative;
    background: transparent;
    padding: 0 20px 35px 20px;
}


/* =========================================
   HOME INTRO + FOOTER CARD
   ========================================= */

.home-intro {
    position: relative;
    width: min(1000px, 96%);
    margin: 0 auto;
    transform: translateY(-35px);
    box-sizing: border-box;
    padding: 30px 28px 4px 28px;
    text-align: center;
    background-color: #fff;
    border-radius:
        var(--radius-large)
        var(--radius-large)
        0 0;

    box-shadow:
        0 18px 45px rgba(65, 17, 17, 0.10),
        0 4px 12px rgba(65, 17, 17, 0.06);
}

.home-intro h3 {
    margin: 0 0 10px 0;
    font-family: Headings;
    color: #F83B93;
    font-size: clamp(1.9rem, 2.4vw, 2.15rem);
    line-height: 1.15;
}

.home-divider {
    display: block;

    width: auto;
    max-width: 110px;

    height: auto;

    margin: 5px auto 20px auto;
}

.home-intro p {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;

    font-family: Body;
    color: #411111;

    font-size: 1.05rem;
    line-height: 1.65;
}
/* =========================================
   HOME ABOUT SECTION
   ========================================= */

.home-about {
    width: 100%;

    margin-top: 0;
    padding-top: 0;

    border-top:
        1px solid rgba(65, 17, 17, 0.12);

    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.55s ease,
        transform 0.55s ease;

    scroll-margin-top: 95px;
}


.home-about.open {
    opacity: 1;
    transform: translateY(0);

    padding-top: 20px;
}


.home-about[hidden] {
    display: none;
}
.home-welcome {
    padding-top: 60px;
    padding-bottom: 0;

    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.home-welcome.leaving {
    opacity: 0;
    transform: translateY(-18px);
}

.about-inner {
    width: min(820px, 100%);

    margin: 0 auto;

    text-align: center;
}


.about-inner h3 {
    margin:
        0 0 10px 0;
}


.about-copy {
    width: 100%;

    margin:
        0 auto
        18px auto;
}


.about-copy p {
    max-width: 760px;

    margin:
        0 auto
        18px auto;

    padding: 0;

    text-align: left;

    font-family: Body;

    font-size: 1.05rem;

    line-height: 1.6;

    color: #411111;
}



/* =========================================
   ABOUT FEATURE LIST
   ========================================= */

.about-features {
    width: 100%;

    margin:
        30px auto
        35px auto;

    padding:
        28px 30px;

    box-sizing: border-box;

    background-color:
        rgba(255, 22, 138, 0.045);

    border-radius: var(--radius-large);

    text-align: left;
}


.about-features ul {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 45px;

    row-gap: 14px;

    margin: 0;

    padding:
        0 0
        0 22px;

    font-family: Body;

    color: #411111;
}


.about-features li {
    padding-left: 4px;

    font-size: 1.1rem;

    line-height: 1.45;
}


.about-features li::marker {
    color: #ff168a;
}


.about-closing {
    margin:
        0 auto
        24px auto !important;

    padding: 0 !important;

    font-weight: 600;
}

/* =========================================
   MOBILE HOME
   ========================================= */

@media (max-width: 700px) {

    .hero {
        height: 20vh;
        min-height: 125px;
        max-height: 200px;
    }

    .home-main {
        padding: 0 8px 22px 8px;
    }

    .home-intro {
        width: 96%;
        transform: translateY(-35px);
        padding: 30px 20px 6px 20px;
        border-radius:
            var(--radius-large)
            var(--radius-large)
            0 0;
    }

    .home-intro h3 {
        font-size: 1.9rem;
    }

    .home-intro p {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    footer {
        width: 96%;
        margin-top: -35px;
        border-radius:
        0 0
        var(--radius-large)
        var(--radius-large);
    }

    .footer-row {
        padding: 10px 20px;
        gap: 16px;
    }

    .footer-brand {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-link {
        font-size: 0.95rem;
    }
    .home-about {
        margin-top: 28px;
        padding-top: 25px;
        scroll-margin-top: 85px;
    }


    .about-copy p {
        font-size: 1.1rem;
        line-height: 1.55;
    }


    .about-features {
        padding:
            24px 20px;

        margin-bottom: 30px;
    }


    .about-features ul {
        grid-template-columns: 1fr;

        row-gap: 12px;

        padding-left: 20px;
    }


    .about-features li {
        font-size: 0.98rem;
    }
    .about-photo {
    width: 100%;

    margin:
        8px auto
        28px auto;

    border-radius: 10px;
    }


    .about-photo img {
        aspect-ratio: 4 / 3;
    }
}


/* =========================================
   MAIN HEADINGS
   ========================================= */

h1 {

    font-family: Header;

    color: #ff168a;

    font-size: 6rem;

    margin-top: 30vh;

    letter-spacing: 0.1em;

    -webkit-text-stroke-width: 3px;

    -webkit-text-stroke-color: #FFF;

    /* #f4d434 */

}


h2 {

    font-family: Headings;

    /* color: #F83B93; */

    color: #fff;

    -webkit-text-stroke-width: 1px;

    -webkit-text-stroke-color: #333;

    font-size: 3rem;

}


h3 {

    font-family: Headings;

    color: #F83B93;

    font-size: clamp(2rem, 3vw, 2.3rem);
    line-height: 1.15;

}


h4 {

    font-family: Headings;

    color: #411111;

    font-size: 2rem;

}



/* =========================================
   BODY / MAIN
   ========================================= */

body {

    

    background-color: #411111;


}


main {

    background-color: #fff;

}


p {

    color: #411111;

    font-family: Body;

    line-height: 1.6;

    padding-left: 20vw;

    padding-right: 20vw;

}


.hidden-spacer {

    height: 56px;

}



/* =========================================
   FOOTER
   ========================================= */

footer {
    width: min(1000px, 96%);
    margin: -35px auto 0 auto;
    box-sizing: border-box;

    color: #fff;
    background-color: #ff168a;

    font-size: 0.8rem;
    font-family: Body;

    border-radius:
        0 0
        var(--radius-large)
        var(--radius-large);

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.16);

    overflow: hidden;
}


/* =========================================
   PINK BUTTON
   ========================================= */

.pink-button {
    display: inline-block;

    padding: 14px 30px;

    border: none;
    border-radius: var(--radius-medium);

    background-color: #ff168a;
    color: #fff;

    font-family: Headings;
    font-size: 1.1rem;
    letter-spacing: 0.06em;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(255, 22, 138, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.pink-button:hover {
    color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(255, 22, 138, 0.30);
}

.pink-button:active {
    transform: translateY(0);

    box-shadow:
        0 3px 8px rgba(255, 22, 138, 0.25);
}

/* =========================================
   HOME LEARN MORE SCROLL CUE
   ========================================= */

.learn-more-cue {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: auto;
    margin-bottom: 0;

    padding: 0 18px 2px 18px;

    border: none;
    background: transparent;

    color: #ff168a;

    cursor: pointer;

    opacity: 0.75;

    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}


.learn-more-text {
    font-family: Headings;
    font-size: 1.1rem;
    font-weight: bold;

    letter-spacing: 0.08em;

    line-height: 1.2;
}
.learn-more-arrow {
    display: block;

    width: 0;
    height: 0;

    margin-top: 2px;

    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
}

.learn-more-cue:hover,
.learn-more-cue:focus-visible {
    color: #ff168a;
    opacity: 1;
}


/* One compact row:
   business name on the left,
   footer links on the right. */

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin: 0;
    padding: 12px 35px;

    box-sizing: border-box;
}


.footer-brand {
    flex: 0 1 auto;

    color: #fff;

    font-family: Body;
    font-size: 0.9rem;

    white-space: nowrap;
}


.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    margin-left: auto;
}


.footer-link {
    border: none;

    color: #fff;

    opacity: 0.8;

    font-family: Headings;
    font-size: 1.1rem;

    text-decoration: none;

    padding: 0;

    transition:
        opacity 0.3s ease,
        color 0.3s ease;

    cursor: pointer;

    white-space: nowrap;
}


.footer-link:hover {
    opacity: 1;
    color: #fff;
}


/* Kept for older pages that may still use this class. */

.footer-nolink {
    font-size: 1.4rem;

    text-decoration-line: none;

    color: #f4d434;

    font-family: Headings;

    padding-inline: 1vw;

    cursor: pointer;

    opacity: 1;
}


.footer-nolink:hover {
    color: #f4d434;
}
.about-photo {
    width: min(760px, 100%);

    margin: 10px auto 38px auto;

    overflow: hidden;

    border-radius: var(--radius-large);

    box-shadow:
        0 10px 28px rgba(65, 17, 17, 0.16);

    background-color: #f7f7f7;
}


.about-photo img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.about-photo:hover img {
    transform: scale(1.015);
}


/* =========================================
   GENERAL LINKS
   ========================================= */

a {

    border: none;

    color: #ff168a;

    opacity: 1;

    font-family: Body;

    cursor: pointer;

    text-decoration-color: #ff168a;

    transition:
        color 0.25s ease,
        text-decoration-color 0.25s ease;

}


a:hover {

    color: #ff168a;

}



/* =========================================
   LISTS
   ========================================= */

li::before {

    color: #F83B93;

}



/* =========================================
   FORMS
   ========================================= */

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
    width: 100%;

    padding: 12px 14px;

    border:
        1px solid rgba(65, 17, 17, 0.18);

    border-radius: var(--radius-medium);

    box-sizing: border-box;

    margin-top: 8px;
    margin-bottom: 16px;

    background-color: #ffffff;
    color: #411111;

    font-family: Body;
    font-size: 1.1rem;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


textarea {
    resize: vertical;
}


/* Preserve the site's existing compact date-field width. */
input[type=date] {
    width: 50%;
}


input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
    outline: none;

    border-color: #ff168a;

    box-shadow:
        0 0 0 3px rgba(255, 22, 138, 0.10);
}


input[type=submit] {
    display: inline-block;

    padding: 14px 30px;

    border: none;
    border-radius: var(--radius-medium);

    background-color: #ff168a;
    color: #ffffff;

    font-family: Headings;
    font-size: 1.1rem;
    letter-spacing: 0.06em;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(255, 22, 138, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


input[type=submit]:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(255, 22, 138, 0.30);
}


input[type=submit]:active {
    transform: translateY(0);

    box-shadow:
        0 3px 8px rgba(255, 22, 138, 0.25);
}


/* =========================================
   FORM CONTAINER
   ========================================= */

.container {

    border-radius: var(--radius-large);

    background-color: #fff;

    padding: 20px;

}



/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 850px) {

    body {
        background-color: #F83B93;
    }


    h1 {
        font-size: 3rem;
        margin-top: 10vh;
    }


    h2 {
        font-size: 2.3rem;
    }


    /* =========================================
       MOBILE NAVBAR
       ========================================= */

    #top-nav {
        height: 70px;

        padding-left: 18px;
        padding-right: 18px;

        justify-content: center;
    }


    /* Center the logo */

    .nav-title {
        position: static;

        transform: none;

        font-size: 1.7rem;

        text-align: center;
    }


    /* Show hamburger button */

    .menu-toggle {
        display: block;

        position: absolute;

        right: 18px;
        top: 50%;

        transform: translateY(-50%);
    }


    /* Hide desktop menu by default */

    .nav-links {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        background-color: rgba(255, 255, 255, 0.97);

        box-shadow:
            0 5px 10px rgba(0, 0, 0, 0.15);
    }


    /* Show menu after hamburger is clicked */

    .nav-links.open {
        display: flex;
    }


    .nav-links a {
        width: 100%;

        box-sizing: border-box;

        padding: 16px 20px;

        text-align: center;

        font-size: 1.1rem;

        color: #411111;

        text-shadow: none;

        border-bottom:
            1px solid rgba(65, 17, 17, 0.12);
    }


    .nav-links a:hover {
        color: #ff168a;

        background-color:
            rgba(255, 22, 138, 0.05);
    }


    #top-nav.scrolled .nav-title {
        color: #ff168a;
    }

}
/* =========================================
   GALLERY PAGE
   ========================================= */

.gallery-body {
    margin: 0;
    background-color: #fff;
}


.gallery-page {
    min-height: 100vh;

    padding-top: 78px;

    padding-bottom: 70px;

    background-color: #fff;
}



/* =========================================
   GALLERY HEADING
   ========================================= */

.gallery-heading {
    text-align: center;

    padding: 45px 20px 35px 20px;
}


.gallery-heading h3 {
    margin-top: 0;
    margin-bottom: 5px;
}


.gallery-divider {
    display: block;

    width: auto;
    max-width: 110px;

    height: auto;

    margin: 0 auto;
}


.gallery-intro {
    max-width: 650px;

    margin: 15px auto 0 auto;

    padding: 0 20px;

    color: #411111;

    font-family: Body;

    font-size: 1.1rem;

    line-height: 1.5;
}



/* =========================================
   PHOTO GRID
   ========================================= */

.photo-grid {
    width: min(1400px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}



/* Individual photo tile */

.gallery-photo {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    padding: 0;

    border: none;
    border-radius: var(--radius-medium);

    overflow: hidden;

    background-color: #eee;

    cursor: pointer;
}


.gallery-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}



.gallery-photo:hover img {
    transform: scale(1.04);

    filter: brightness(0.9);
}



/*
   Small pink overlay that appears
   when hovering with a mouse.
*/

.gallery-photo::after {
    content: "VIEW";

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -40%);

    padding: 7px 14px;

    font-family: Headings;

    font-size: 0.9rem;

    letter-spacing: 0.08em;

    color: #fff;

    background-color:
        rgba(255, 22, 138, 0.9);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.gallery-photo:hover::after {
    opacity: 1;

    transform:
        translate(-50%, -50%);
}
/* Smooth entrance for newly loaded gallery photos */

.gallery-photo {
    opacity: 0;
    transform: translateY(14px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


.gallery-photo.gallery-photo-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   GALLERY TRIGGER
   ========================================= */

    .gallery-load-trigger {
        width: 100%;
        height: 1px;
    }




/* =========================================
   LIGHTBOX
   ========================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    align-items: center;
    justify-content: center;

    background-color:
        rgba(20, 10, 10, 0.94);

    padding: 25px;

    box-sizing: border-box;
}


.lightbox.open {
    display: flex;
}


body.lightbox-open {
    overflow: hidden;
}



/* =========================================
   LARGE PHOTO
   ========================================= */

.lightbox-image-container {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    max-width: calc(100vw - 170px);

    max-height: calc(100vh - 60px);
}


.lightbox-image {
    display: block;

    max-width: 100%;

    max-height: calc(100vh - 100px);

    width: auto;
    height: auto;

    object-fit: contain;

    user-select: none;

    -webkit-user-select: none;
}



/* =========================================
   IMAGE COUNTER
   ========================================= */

.lightbox-counter {
    margin-top: 10px;

    color: #fff;

    font-family: Body;

    font-size: 0.95rem;

    opacity: 0.8;
}



/* =========================================
   LIGHTBOX CLOSE BUTTON
   ========================================= */

.lightbox-close {
    position: absolute;

    top: 12px;
    right: 20px;

    z-index: 5002;

    width: 50px;
    height: 50px;

    padding: 0;

    border: none;

    background: transparent;

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 3rem;

    line-height: 1;

    cursor: pointer;

    opacity: 0.8;

    transition: opacity 0.2s ease;
}


.lightbox-close:hover {
    opacity: 1;
}



/* =========================================
   LIGHTBOX ARROWS
   ========================================= */

.lightbox-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5001;

    width: 60px;
    height: 80px;

    border: none;

    background-color:
        rgba(0, 0, 0, 0.25);

    color: #fff;

    font-size: 2.5rem;

    cursor: pointer;

    opacity: 0.8;

    transition:
        opacity 0.2s ease,
        background-color 0.2s ease;
}


.lightbox-arrow:hover {
    opacity: 1;

    background-color:
        rgba(255, 22, 138, 0.75);
}


.lightbox-left {
    left: 20px;
}


.lightbox-right {
    right: 20px;
}




/* =========================================
   TABLET GALLERY
   ========================================= */

@media (max-width: 1000px) {

    .photo-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}



/* =========================================
   MOBILE GALLERY
   ========================================= */

@media (max-width: 700px) {

    .gallery-page {
        padding-top: 70px;
    }


    .gallery-heading {
        padding:
            30px 15px
            25px 15px;
    }


    .gallery-heading h3 {
        font-size: 2rem;
    }


    .gallery-intro {
        font-size: 1.1rem;
    }


    .photo-grid {
        width: calc(100% - 20px);

        grid-template-columns:
            repeat(2, 1fr);

        gap: 6px;
    }


    /*
       No hover label needed on phones.
    */

    .gallery-photo::after {
        display: none;
    }


    .gallery-photo:hover img {
        transform: none;

        filter: none;
    }



    /* -----------------------------
       MOBILE LIGHTBOX
       ----------------------------- */

    .lightbox {
        padding: 0;
    }


    .lightbox-image-container {
        max-width: 100vw;

        max-height: 100vh;

        width: 100%;
    }


    .lightbox-image {
        max-width: 100%;

        max-height: calc(100vh - 70px);
    }


    .lightbox-close {
        top: 8px;

        right: 8px;

        width: 45px;
        height: 45px;

        font-size: 2.5rem;

        background-color:
            rgba(0, 0, 0, 0.35);

        border-radius: 50%;
    }


    /*
       Smaller translucent arrows on phones.
       Swipe also works.
    */

    .lightbox-arrow {
        width: 44px;
        height: 65px;

        font-size: 1.8rem;

        background-color:
            rgba(0, 0, 0, 0.35);
    }


    .lightbox-left {
        left: 0;
    }


    .lightbox-right {
        right: 0;
    }

}



/* =========================================
   SMALL MOBILE FOOTER
   ========================================= */

@media (max-width: 560px) {

    .footer-row {
        flex-wrap: wrap;
        justify-content: center;

        padding: 10px 16px;

        row-gap: 7px;
    }

    .footer-brand {
        width: 100%;

        text-align: center;

        white-space: normal;
    }

    .footer-links {
        width: 100%;

        justify-content: center;

        margin-left: 0;

        gap: 18px;
    }

}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 400px) {

    .photo-grid {
        width: calc(100% - 12px);

        gap: 4px;
    }


    .gallery-heading {
        padding-left: 10px;

        padding-right: 10px;
    }

}
/* Keep homepage card and footer perfectly aligned */

.home-intro,
footer {
    width: min(1000px, 96%);
    box-sizing: border-box;
}

/* ==========================================================
   AVAILABILITY PAGE
   ========================================================== */


/* Give the availability card enough room for the calendar */

.availability-intro {
    padding-bottom: 45px;
}



/* ==========================================================
   CALENDAR CONTAINER
   ========================================================== */

.availability-calendar {
    width: min(560px, 100%);

    margin:
        20px auto
        25px auto;
}



/* ==========================================================
   MONTH / YEAR HEADER
   ========================================================== */

.calendar-header {
    display: grid;

    grid-template-columns:
        50px 1fr 50px;

    align-items: center;

    margin-bottom: 24px;
}


.calendar-title {
    text-align: center;
}


.calendar-year {
    font-family:
        Body,
        sans-serif;

    font-size: 1.1rem;

    font-weight: 600;

    color: #411111;

    letter-spacing: 2px;

    margin-bottom: 3px;
}


.calendar-month {
    font-family:
        Headings,
        sans-serif;

    font-size: 1.65rem;

    font-weight: bold;

    color: #F83B93;

    text-transform: uppercase;

    letter-spacing: 1px;
}



/* ==========================================================
   PREVIOUS / NEXT ARROWS
   ========================================================== */

.calendar-arrow {
    border: 0;

    background: transparent;

    color: #411111;

    font-size: 1.6rem;

    line-height: 1;

    cursor: pointer;

    padding: 10px;

    border-radius: 50%;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}


.calendar-arrow:hover {
    color: #ff168a;

    background-color:
        rgba(255, 22, 138, 0.08);

    transform:
        scale(1.1);
}


.calendar-arrow:disabled {
    opacity: 0.2;

    cursor: default;

    background: transparent;

    transform: none;
}



/* ==========================================================
   WEEKDAY LABELS
   ========================================================== */

.calendar-weekdays {
    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    align-items: center;

    margin-bottom: 10px;

    font-family:
        Headings,
        sans-serif;

    font-size: 1.1rem;

    font-weight: bold;

    color: #411111;

    text-align: center;
}


.calendar-weekdays .sunday {
    color: #F83B93;
}



/* ==========================================================
   CALENDAR GRID
   ========================================================== */

.calendar-days {
    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    row-gap: 10px;

    align-items: center;

    text-align: center;
}



/* ==========================================================
   INDIVIDUAL DAYS
   ========================================================== */

.calendar-day {
    position: relative;

    width: 100%;
    height: 40px;

    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family:
        Body,
        sans-serif;

    font-size: 1.1rem;

    font-weight: 600;

    color: #411111;
}


/* The visible date number */

.calendar-day-number {
    position: relative;

    z-index: 2;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;
}


/* Sunday numbers are pink */

.calendar-day.sunday {
    color: #F83B93;
}



/* ==========================================================
   BOOKED DAYS / CONNECTED BOOKING RANGES
   ========================================================== */

/*
   Each booked date keeps its circular marker.
   Narrow bars are drawn behind adjacent booked dates so
   consecutive dates read as one continuous reservation.

   The JavaScript decides connections from the final status
   of each date, not from individual configuration lines.
   Therefore two touching ranges automatically join together.
*/

.calendar-day.booked
.calendar-day-number {
    background-color: #F83B93;

    color: #ffffff;

    font-weight: bold;
}


/* Connector to the booked date immediately before this one */

.calendar-day.booked.connect-prev::before {
    content: "";

    position: absolute;

    z-index: 1;

    top: 50%;
    left: 0;
    right: 50%;

    height: 40px;

    transform: translateY(-50%);

    background-color: #F83B93;
}


/* Connector to the booked date immediately after this one */

.calendar-day.booked.connect-next::after {
    content: "";

    position: absolute;

    z-index: 1;

    top: 50%;
    left: 50%;
    right: 0;

    height: 40px;

    transform: translateY(-50%);

    background-color: #F83B93;
}


/* A booked Sunday should still have white text */

.calendar-day.sunday.booked
.calendar-day-number {
    color: #ffffff;
}


/* Invisible spaces before the first day of a month */

.calendar-day.empty {
    visibility: hidden;
}



/* ==========================================================
   BOOKED LEGEND
   ========================================================== */

.calendar-legend {
    display: flex;

    justify-content: center;

    align-items: center;

    margin:
        10px auto
        30px auto;

    font-family:
        Body,
        sans-serif;

    font-size: 1.1rem;

    color: #411111;
}


.legend-booked {
    display: inline-flex;

    align-items: center;

    gap: 9px;
}


.legend-circle {
    width: 26px;
    height: 26px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: #F83B93;

    color: #F83B93;

    font-family:
        Body,
        sans-serif;

    font-size: 0.8rem;

    font-weight: bold;
}



/* ==========================================================
   AVAILABILITY TEXT
   ========================================================== */

.availability-note {
    margin:
        15px auto
        25px auto;

    text-align: center;

    font-weight: 600;

    line-height: 1.5;
}


.availability-booking-title {
    margin:
        15px auto
        18px auto;

    color: #411111;

    text-align: center;
}



/* ==========================================================
   MOBILE AVAILABILITY CALENDAR
   ========================================================== */

@media (max-width: 600px) {

    .availability-intro {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 38px;
    }


    .availability-calendar {
        width: 100%;

        margin-top: 15px;
    }


    .calendar-header {
        grid-template-columns:
            42px 1fr 42px;

        margin-bottom: 20px;
    }


    .calendar-month {
        font-size: 1.4rem;
    }


    .calendar-year {
        font-size: 0.9rem;
    }


    .calendar-arrow {
        font-size: 1.35rem;

        padding: 8px;
    }


    .calendar-weekdays {
        font-size: 0.9rem;
    }


    .calendar-days {
        row-gap: 6px;
    }


    .calendar-day {
        width: 100%;
        height: 34px;

        font-size: 0.9rem;
    }


    .calendar-day-number {
        width: 34px;
        height: 34px;
    }


    .calendar-day.booked.connect-prev::before,
    .calendar-day.booked.connect-next::after {
        height: 12px;
    }


    .calendar-legend {
        font-size: 0.9rem;

        margin-bottom: 25px;
    }


    .legend-circle {
        width: 24px;
        height: 24px;
    }
    .calendar-day.booked.connect-prev::before,
    .calendar-day.booked.connect-next::after {
        height: 34px;
    }

}
/* ==========================================================
   CLICKABLE MONTH / YEAR
   ========================================================== */

.calendar-title {
    position: relative;

    text-align: center;
}


.calendar-title-button {
    display: block;

    width: fit-content;

    margin-left: auto;
    margin-right: auto;

    border: 0;

    background: transparent;

    cursor: pointer;

    padding:
        2px 10px;

    border-radius: var(--radius-medium);

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.calendar-title-button:hover {
    background-color:
        rgba(255, 22, 138, 0.08);
}


.calendar-year.calendar-title-button {
    font-family:
        Body,
        sans-serif;

    font-size: 1.1rem;

    font-weight: 600;

    color: #411111;

    letter-spacing: 2px;

    margin-bottom: 2px;
}


.calendar-month.calendar-title-button {
    font-family:
        Headings,
        sans-serif;

    font-size: 1.65rem;

    font-weight: bold;

    color: #F83B93;

    text-transform: uppercase;

    letter-spacing: 1px;
}



/* ==========================================================
   MONTH / YEAR POPUP
   ========================================================== */

.calendar-picker {
    position: absolute;

    left: 50%;

    top: calc(100% + 10px);

    transform:
        translateX(-50%);

    z-index: 20;

    min-width: 250px;

    padding: 14px;

    background-color: #ffffff;

    border:
        1px solid
        rgba(65, 17, 17, 0.12);

    border-radius: var(--radius-large);

    box-shadow:
        0 10px 30px
        rgba(65, 17, 17, 0.18);
}


.calendar-picker[hidden] {
    display: none;
}



/* ==========================================================
   MONTH PICKER
   ========================================================== */

.month-picker-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 6px;
}


.month-picker-grid button {
    border: 0;

    background: transparent;

    padding:
        10px 8px;

    border-radius: var(--radius-medium);

    font-family:
        Body,
        sans-serif;

    font-size: 0.95rem;

    color: #411111;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.month-picker-grid button:hover {
    background-color:
        rgba(255, 22, 138, 0.10);

    color: #ff168a;
}


.month-picker-grid button.selected {
    background-color: #ff168a;

    color: #ffffff;
}



/* ==========================================================
   YEAR PICKER
   ========================================================== */

.year-picker {
    min-width: 180px;
}


.year-picker button {
    display: block;

    width: 100%;

    border: 0;

    background: transparent;

    padding:
        9px 15px;

    border-radius: var(--radius-medium);

    font-family:
        Body,
        sans-serif;

    font-size: 1.1rem;

    color: #411111;

    cursor: pointer;

    text-align: center;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.year-picker button:hover {
    background-color:
        rgba(255, 22, 138, 0.10);

    color: #ff168a;
}


.year-picker button.selected {
    background-color: #ff168a;

    color: #ffffff;
}

.home-welcome {
    padding-top: 60px;
    padding-bottom: 4px;
}

/* ==========================================================
   MOBILE PICKER
   ========================================================== */

@media (max-width: 600px) {

    .calendar-picker {
        min-width: 230px;

        padding: 12px;
    }


    .month-picker-grid button {
        min-height: 42px;

        padding: 8px 5px;
    }

}
/* =========================================
   TEMPORARY HOMEPAGE SCROLL SPACE
   ========================================= */

.home-scroll-trigger-space {
    height: 35vh;
    min-height: 220px;
}

.home-welcome {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
}