/* ==================================================
   COLOR PALETTE
================================================== */

:root {
    --primary-color: #830c4f;
    --primary-hover: #531f55;
    --accent-color: #ff99d8;

    --background-color: #fff9f4;
    --card-color: #ffffff;

    --text-color: #262b12;
    --light-text-color: #5d5d5d;

    --border-color: #e8ddd7;
}


/* ==================================================
   GALLERY IMAGE FORMATS
================================================== */

/*
16:9  - Wide landscape
4:3   - Standard landscape
1:1   - Square
2:3   - Standard portrait
9:16  - Tall portrait
*/


/* ==================================================
   GLOBAL
================================================== */

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;

    overflow-x: hidden;

    scroll-behavior: smooth;
}

body {
    margin: 0;

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;

    min-height: 100vh;

    background-color: var(--background-color);
    color: var(--text-color);

    font-family: "Cormorant Garamond", Georgia, serif;
}

main {
    width: 90%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 60px 0;
}

a {
    color: inherit;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
    font-size: 58px;
    line-height: 1.1;
}

h2 {
    color: var(--primary-color);

    font-size: 34px;
    line-height: 1.2;
}

h3 {
    color: var(--primary-color);

    font-size: 24px;
    line-height: 1.2;
}

p {
    color: var(--light-text-color);

    font-size: 18px;
    line-height: 1.7;
}

.script-title {
    font-family: "Rouge Script", cursive;
}

.script-accent {
    font-family: "WindSong", cursive;
}

.small-heading {
    color: var(--accent-color);

    margin-bottom: 15px;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ==================================================
   NAVIGATION
================================================== */

.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 20px 5%;

    background-color: var(--card-color);
    border-bottom: 1px solid var(--border-color);
}

.site-name {
    flex-shrink: 0;

    color: var(--primary-color);

    font-family: "WindSong", cursive;
    font-size: 30px;
    font-weight: normal;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;
}

.nav-links a {
    padding: 5px 0;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 16px;
    font-weight: bold;

    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;

    border-bottom: 2px solid transparent;

    transition:
        color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-hover);

    border-bottom-color: var(--accent-color);

    transform: scale(1.05);
}

/* Hidden on larger screens; displayed at the mobile breakpoint below. */

.nav-toggle {
    display: none;

    width: 44px;
    height: 44px;
    padding: 9px;

    background-color: transparent;
    color: var(--primary-color);

    border: 1px solid transparent;
    border-radius: 4px;

    cursor: pointer;
}

.nav-toggle:hover {
    background-color: rgba(131, 12, 79, 0.07);
}

.nav-toggle:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-toggle-bar {
    display: block;

    width: 24px;
    height: 2px;
    margin: 5px auto;

    background-color: currentColor;
    border-radius: 2px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* ==================================================
   HOME PAGE HERO
================================================== */

.hero {
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    min-height: 800px;

    padding: 50px 0 50px 5%;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)
        ),
        url("/images/hero.jpg");

    background-size: 130%;
    background-position: left top;
    background-repeat: no-repeat;

    text-align: center;
}

.hero::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 4px;

    background: linear-gradient(
        to bottom,
        rgba(255, 249, 244, 0),
        var(--background-color)
    );

    pointer-events: none;
}

.hero-overlay {
    width: 90%;
    max-width: 420px;

    padding: 55px 45px;

    background-color: rgba(255, 255, 255, 0.82);

    border-radius: 8px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.hero h1 {
    margin-bottom: 18px;

    color: var(--primary-color);

    font-size: 68px;
}

.wedding-date {
    margin-bottom: 5px;

    color: var(--text-color);

    font-size: 25px;
    font-weight: bold;
}

.hero-location {
    margin-bottom: 30px;
}

/* ==================================================
   HOME PAGE SAVE-THE-DATE VIDEO
================================================== */

.save-the-date-section {
    max-width: 820px;

    margin: 0 auto 75px;

    text-align: center;
}


.save-the-date-video {
    overflow: hidden;

    width: 100%;
    max-width: 720px;

    margin: 0 auto;
    padding: 10px;

    background-color: var(--card-color);

    border: 1px solid var(--border-color);
    border-radius: 10px;

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.save-the-date-video video {
    display: block;

    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;

    background-color: #000;

    border-radius: 6px;
}

.save-the-date-video video:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.save-the-date-caption {
    margin: 18px 0 0;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 15px;
    font-weight: bold;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Save-the-date video on phones */

@media (max-width: 500px) {

    .save-the-date-section {
        margin-bottom: 55px;
    }

    .save-the-date-section .script-title {
        font-size: 46px;
    }

    .save-the-date-video {
        padding: 6px;

        border-radius: 8px;
    }

    .save-the-date-video video {
        border-radius: 4px;
    }

    .save-the-date-caption {
        font-size: 13px;

        letter-spacing: 1.5px;
    }

}

/* ==================================================
   STANDARD PAGE HEADERS
================================================== */

.page-header {
    position: relative;
    overflow: hidden;

    padding: 90px 20px;

    background-color: var(--primary-color);
    color: white;

    text-align: center;
}

.page-header::before,
.page-header::after {
    content: "";

    position: absolute;
    right: 0;
    left: 0;

    height: 4px;

    pointer-events: none;
}

.page-header::before {
    top: 0;

    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0),
        var(--card-color)
    );
}

.page-header::after {
    bottom: 0;

    background: linear-gradient(
        to bottom,
        rgba(255, 249, 244, 0),
        var(--background-color)
    );
}

.page-header h1 {
    margin-bottom: 15px;

    color: white;
}

.page-header p {
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.82);
}

.page-header .script-title {
    font-size: 76px;
    font-weight: normal;
}


/* ==================================================
   BUTTONS AND LINKS
================================================== */

.button {
    display: inline-block;

    padding: 14px 28px;

    background-color: var(--primary-color);
    color: white;

    border: 2px solid var(--primary-color);
    border-radius: 4px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    font-weight: bold;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary-button:hover {
    color: white;
}

.text-link {
    color: var(--primary-color);

    font-weight: bold;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}


/* ==================================================
   GENERAL CONTENT
================================================== */

.intro-section,
.content-section,
.form-section {
    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}

.content-section {
    padding: 45px;

    background-color: var(--card-color);

    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.card-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.card {
    padding: 35px;

    background-color: var(--card-color);

    border: 1px solid var(--border-color);
    border-radius: 8px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card p:last-child {
    margin-bottom: 0;
}

.registry-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.registry-card .button {
    margin-top: auto;
}
.registry-grid {
    max-width: 900px;

    margin: 0 auto;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

/* ==================================================
   OUR STORY PAGE
================================================== */
.farmers-trigger {
    color: inherit;

    cursor: pointer;
}

.farmers-trigger:hover {
    color: var(--accent-color, #ff99d8);
}

.farmers-trigger:focus-visible {
    outline: 1px dashed var(--accent-color, #ff99d8);
    outline-offset: 3px;
}
.split-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 500px;

    margin-bottom: 50px;

    background-color: var(--card-color);

    border: 1px solid var(--border-color);
    border-radius: 8px;

    overflow: hidden;
}

.split-image {
    min-height: 450px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-image {
    background-image: url("/images/story.jpg");
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;
}

.split-text p:last-child {
    margin-bottom: 0;
}
/* ==================================================
   WEDDING COUNTDOWN
================================================== */

.countdown-section {
    width: min(900px, calc(100% - 40px));
    margin: 75px auto;

    text-align: center;
}

.countdown-section h2 {
    margin: 8px 0 35px;

    font-family: "WindSong", cursive;
    font-size: clamp(42px, 6vw, 66px);
    font-weight: normal;
    line-height: 1.1;

    color: var(--primary-color);
}

.wedding-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.countdown-part {
    position: relative;

    padding: 10px 15px 14px;
}

.countdown-part:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 15%;
    right: -10px;

    width: 1px;
    height: 70%;

    background-color: rgba(131, 12, 79, 0.22);
}

.countdown-number {
    display: block;

    color: var(--primary-color);

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.countdown-label {
    display: block;

    margin-top: 12px;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ==================================================
   WEDDING COUNTDOWN — PHONE
================================================== */

@media (max-width: 600px) {

    .countdown-section {
        margin: 55px auto;
    }

    .wedding-countdown {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 10px;
    }

    .countdown-part:nth-child(2)::after {
        display: none;
    }

    .countdown-part:nth-child(3)::after {
        right: -5px;
    }

}

/* ==================================================
   SCHEDULE PAGE
================================================== */

.schedule-location {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-top: 25px;
}

.schedule-location p {
    margin: 0;
}

.schedule-location .button {
    flex-shrink: 0;
}


/* Phone layout */

@media (max-width: 600px) {

    .schedule-location {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }

}

.timeline {
    max-width: 850px;

    margin: 0 auto 50px;
}

.timeline-item {
    display: grid;

    grid-template-columns: 140px 1fr;

    gap: 35px;

    padding: 30px 0;

    border-bottom: 1px solid var(--border-color);
}

.timeline-item h2 {
    margin-bottom: 8px;

    font-size: 27px;
}

.timeline-item p:last-child {
    margin-bottom: 0;
}

.event-time {
    color: var(--accent-color);

    font-size: 20px;
    font-weight: bold;
}


/* ==================================================
   NOTICE BOX
================================================== */

.notice-box {
    max-width: 800px;

    margin: 45px auto 0;
    padding: 30px;

    background-color: rgba(255, 153, 216, 0.12);

    border-left: 5px solid var(--accent-color);

    text-align: center;
}

.notice-box h2 {
    font-size: 27px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}


/* Makes the entire notice box clickable */

.notice-box-link {
    display: block;

    max-width: 800px;
    margin: 45px auto 0;

    color: inherit;
    text-decoration: none;
}

.notice-box-link .notice-box {
    margin: 0;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.notice-box-link:hover .notice-box {
    background-color: rgba(131, 12, 79, 0.08);

    border-left-color: var(--primary-color);

    color: var(--primary-color);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* ==================================================
   FAQ LINK TARGETS
   Scrolls to and briefly highlights the linked FAQ box
================================================== */

#dress-code,
#contact-questions {
    scroll-margin-top: 120px;
}

#dress-code:target,
#contact-questions:target {
    animation: faq-highlight 4s ease-out;
}
#wedding-locations {
    scroll-margin-top: 180px;
}

#wedding-locations:target .travel-card {
    animation: faq-highlight 4s ease-out;
}

/* Highlight animation for linked FAQ boxes */

@keyframes faq-highlight {
    0% {
        background-color: rgba(255, 153, 216, 0.30);

        border-color: var(--accent-color);

        box-shadow:
            0 0 0 4px rgba(255, 153, 216, 0.25);
    }

    100% {
        background-color: var(--card-color);

        border-color: var(--border-color);

        box-shadow: none;
    }
}
/* ==================================================
   RSVP PAGE
================================================== */

.form-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 320px;

    margin-top: 30px;
    padding: 30px;

    background-color: var(--card-color);

    border: 2px dashed var(--border-color);
    border-radius: 8px;
}

.form-placeholder p {
    margin: 0;
}

.form-section iframe {
    width: 100%;
    min-height: 900px;

    border: 0;
}


/* ==================================================
   BRIDAL PARTY PAGE
================================================== */

.party-secret-hint {
    max-width: 600px;
    margin: 38px auto 15px;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-align: center;

    opacity: 0.55;

    transition: opacity 0.2s ease;
}

.party-secret-hint:hover {
    opacity: 1;
}

/* ==================================================
   GROOMSMEN EASTER EGG
================================================== */

.party-photo.groomsman-trigger {
    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.party-photo.groomsman-trigger:hover {
    transform: translateY(-3px);

    box-shadow: 0 9px 20px rgba(83, 31, 85, 0.16);
}

.party-photo.groomsman-found {
    animation: groomsman-found 0.45s ease;
}

@keyframes groomsman-found {

    0%,
    100% {
        transform: scale(1);
    }

    45% {
        transform: scale(0.96) rotate(-1deg);
    }

    70% {
        transform: scale(1.03) rotate(1deg);
    }

}


/* ==================================================
   SECRET GROUP CHAT
================================================== */

.groomsmen-chat {
    width: min(620px, calc(100% - 30px));
    max-height: 88vh;

    padding: 0;

    background-color: transparent;

    border: 0;
    border-radius: 18px;

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.groomsmen-chat::backdrop {
    background-color: rgba(35, 20, 29, 0.72);

    backdrop-filter: blur(5px);
}

.chat-window {
    overflow: hidden;

    background-color: #f3f1f2;

    border-radius: 18px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 22px;

    background-color: var(--primary-color);
    color: white;
}

.chat-header h2 {
    margin: 3px 0 0;

    color: white;

    font-size: 25px;
}

.chat-kicker {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    font-style: italic;
}

.chat-close {
    flex-shrink: 0;

    width: 42px;
    height: 42px;
    margin-left: 18px;
    padding: 0;

    background: rgba(255, 255, 255, 0.12);
    color: white;

    font-size: 30px;
    line-height: 1;

    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.chat-close:hover {
    background-color: rgba(255, 255, 255, 0.22);
}

.chat-messages {
    max-height: calc(88vh - 94px);
    overflow-y: auto;

    padding: 24px 18px 30px;
}

.chat-message {
    width: fit-content;
    max-width: 78%;
    margin: 0 0 14px;
    padding: 10px 14px;

    border-radius: 18px;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

.chat-message p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
}

.chat-message.incoming {
    margin-right: auto;

    background-color: white;
    color: #2f282c;

    border-bottom-left-radius: 5px;
}

.chat-message.outgoing {
    margin-left: auto;

    background-color: var(--primary-color);
    color: white;

    border-bottom-right-radius: 5px;
}

.chat-name {
    margin-bottom: 4px !important;

    color: var(--primary-color);

    font-size: 12px !important;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.outgoing .chat-name {
    color: var(--accent-color);
}

.chat-emoji {
    font-size: 27px !important;
}

.voice-message {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 3px;
    padding: 6px 0;

    background: none;
    color: var(--primary-color);

    font-family: Arial, sans-serif;

    border: 0;

    cursor: default;
}

.voice-play {
    display: grid;
    place-items: center;

    width: 28px;
    height: 28px;

    background-color: var(--primary-color);
    color: white;

    border-radius: 50%;
}

.voice-wave {
    letter-spacing: -2px;
}

.chat-system-message {
    margin: 25px auto;

    color: #756a70;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-style: italic;
    text-align: center;
}

.chat-status {
    margin-top: 28px;
    padding: 22px;

    background-color: #fff9f4;

    border: 1px solid rgba(131, 12, 79, 0.18);
    border-radius: 10px;
}

.chat-status h3 {
    margin: 0 0 17px;

    color: var(--primary-color);

    text-align: center;
}

.chat-status p {
    margin: 8px 0;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
}

.chat-message.outgoing p:not(.chat-name) {
    color: white;
}


/* ==================================================
   SECRET GROUP CHAT — PHONE
================================================== */

@media (max-width: 600px) {

    .groomsmen-chat {
        width: calc(100% - 18px);
        max-height: 94vh;
    }

    .chat-header {
        padding: 17px;
    }

    .chat-header h2 {
        font-size: 21px;
    }

    .chat-messages {
        max-height: calc(94vh - 88px);
        padding: 18px 12px 24px;
    }

    .chat-message {
        max-width: 88%;
    }

}


.party-section {
    width: 100%;
}

.party-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;
}

.party-member {
    padding: 32px;

    background-color: var(--card-color);

    border: 1px solid var(--border-color);
    border-radius: 8px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

    text-align: left;
}

/* Clears the floated portrait so every card
   properly contains its image. */

.party-member::after {
    content: "";
    display: block;
    clear: both;
}

.party-member h3 {
    margin-bottom: 5px;

    font-size: 28px;
}

.party-role {
    margin-bottom: 20px;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 15px;
    font-weight: bold;

    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Portrait image.
   The paragraph wraps beside it like an article. */

.party-photo {
    float: left;

    width: 190px;
    aspect-ratio: 2 / 3;

    margin: 4px 24px 14px 0;

    object-fit: cover;
    object-position: center;

    border-radius: 6px;
}

.party-member > p:not(.party-role):not(.party-author) {
    margin-bottom: 14px;

    font-size: 17px;
    line-height: 1.65;
}

.party-author {
    margin: 8px 0 0;

    color: var(--primary-color);

    font-size: 16px;
    font-style: italic;

    text-align: right;
}


/* ==================================================
   GALLERY PAGE
================================================== */

.photo-grid {
    min-width: 0;
    max-width: 100%;

    column-count: 3;
    column-gap: 18px;
}

.photo-grid img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 18px;
    break-inside: avoid;

    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}


/* ==================================================
   FAQ PAGE
================================================== */

.faq-list {
    max-width: 850px;

    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    padding: 30px 35px;

    background-color: var(--card-color);

    border: 1px solid var(--border-color);
    border-radius: 7px;
}

.faq-item h2 {
    margin-bottom: 20px;

    font-size: 24px;
}

.faq-item h3 {
    display: inline-block;

    margin: 0 0 18px;
    padding-bottom: 8px;

    font-size: 20px;

    border-bottom: 2px solid var(--primary-color);
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item hr {
    margin: 30px 0;

    border: 0;
    border-top: 1px solid var(--border-color);
}


/* Attire */

.attire-columns {
    display: flex;

    gap: 40px;

    margin-top: 25px;
}

.attire-column {
    flex: 1;
}


/* FAQ Contact */

.faq-contact-section {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 45px;

    align-items: center;
}

.faq-contact-text p {
    margin-bottom: 22px;
}

.faq-contact-text p:last-child {
    margin-bottom: 0;
}

.faq-before-contact {
    padding: 22px 25px;

    background-color: var(--background-color);

    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.faq-before-contact p {
    margin: 0 0 18px;
}

.faq-before-contact p:last-child {
    margin-bottom: 0;
}

.faq-contact-label {
    margin-bottom: 18px !important;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 12px;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-contact-person {
    text-align: center;
}

.faq-contact-person img {
    display: block;

    width: 170px;
    height: 170px;

    margin: 0 auto 14px;

    object-fit: cover;

    border-radius: 50%;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-contact-name {
    margin: 0;

    color: var(--primary-color);

    font-family: "WindSong", cursive;
    font-size: 30px;
    line-height: 1;
}

.faq-contact-title {
    margin: 6px 0 0;

    color: var(--primary-color);

    font-family: "Cormorant SC", Georgia, serif;
    font-size: 12px;

    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================================================
   BOTTOM NAVIGATION
================================================== */

.bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px 5%;

    background-color: rgba(131, 12, 79, 0.07);

    border-top: 1px solid rgba(131, 12, 79, 0.14);
    border-bottom: 1px solid rgba(131, 12, 79, 0.18);
}

.bottom-nav .nav-links {
    width: 100%;
    max-width: none;
}


/* ==================================================
   FOOTER
================================================== */

footer {
    position: relative;

    padding: 45px 20px;

    background-color: var(--primary-color);

    text-align: center;
}

footer::before {
    content: "";

    position: absolute;
    top: -4px;
    right: 0;
    left: 0;

    height: 8px;

    background: linear-gradient(
        to bottom,
        rgba(131, 12, 79, 0),
        rgba(131, 12, 79, 1)
    );

    pointer-events: none;
}

footer p {
    margin: 5px 0;

    color: white;
}

footer p:first-child {
    margin-bottom: 12px;

    font-family: "WindSong", cursive;
    font-size: 44px;
    font-weight: normal;
    line-height: 1;
}

footer p:last-child {
    font-size: 22px;

    letter-spacing: 1px;
}


/* ==================================================
   NAVIGATION BREAKPOINT
================================================== */

@media (max-width: 1356px) {

    .main-nav {
        flex-direction: column;

        gap: 15px;

        padding: 18px;
    }

    .nav-links {
        max-width: 750px;

        gap: 12px 24px;
    }

}

/* ==================================================
   BRIDAL PARTY BREAKPOINT
================================================== */

@media (max-width: 944px) {

    .party-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   HERO BREAKPOINT
================================================== */

@media (max-width: 886px) {

    .hero {
        display: block;

        min-height: 0;

        padding: 0;

        background-image: none;

        text-align: center;
    }

    .hero::before {
        content: "";

        display: block;

        width: 100%;
        aspect-ratio: 4 / 3;

        background-image:
            linear-gradient(
                rgba(0, 0, 0, 0.15),
                rgba(0, 0, 0, 0.15)
            ),
            url("/images/hero.jpg");

        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-overlay {
        width: 100%;
        max-width: none;

        padding: 35px 20px 45px;

        background-color: var(--background-color);

        border-radius: 0;

        box-shadow: none;
    }

}

/* ==================================================
   TRAVEL PAGE
================================================== */

.travel-section-heading {
    max-width: 900px;
    margin: 70px auto 32px;

    text-align: center;
}

.travel-section-heading:first-child {
    margin-top: 0;
}

.travel-section-heading h2 {
    margin-bottom: 16px;
}

.travel-section-heading p {
    margin-bottom: 0;
}
.travel-location-grid,
.travel-airport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;
    align-items: start;

    margin-bottom: 85px;
}

.travel-location-grid .travel-card,
.travel-airport-grid .travel-card {
    height: auto;
}

.travel-card h3 {
    margin-bottom: 12px;
}

.travel-card .button {
    margin-top: 10px;
}

/* Optional highlighted arrival information */

.travel-note {
    margin: 24px 0;
    padding: 18px 20px;

    background-color: rgba(255, 153, 216, 0.12);

    border-left: 4px solid var(--accent-color);
}

.travel-note p {
    margin: 0;

    font-size: 17px;
    line-height: 1.6;
}
.travel-hotel-grid .travel-card h2,
.travel-hotel-grid .travel-card .small-heading,
.travel-location-grid .travel-card h2,
.travel-location-grid .travel-card .small-heading {
    text-align: center;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 800px) {

    main {
        padding: 50px 0;
    }

    .nav-links a {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .page-header {
        padding: 65px 20px;
    }

    .page-header h1 {
        font-size: 44px;
    }

    .page-header .script-title {
        font-size: 62px;
    }

    .card-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 350px;
    }

    .split-text {
        padding: 40px 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .photo-grid {
    column-count: 2;
}

.travel-location-grid,
.travel-airport-grid {
    grid-template-columns: 1fr;

    gap: 25px;
    margin-bottom: 65px;
}

.travel-section-heading {
    margin-top: 55px;
}

}


/* ==================================================
   PHONE / FAQ CONTACT
================================================== */

@media (max-width: 645px) {

    .faq-contact-section {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .faq-contact-person {
        order: -1;
    }

    .faq-contact-person img {
        width: 150px;
        height: 150px;
    }

    .faq-contact-name {
        font-size: 38px;
    }

    .faq-contact-title {
        font-size: 11px;
    }

    .attire-columns {
        flex-direction: column;

        gap: 20px;
    }

}


/* ==================================================
   SMALL PHONE
================================================== */

@media (max-width: 500px) {

    main {
        width: 92%;

        padding: 40px 0;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 29px;
    }

    p {
        font-size: 17px;
    }

    .site-name {
        font-size: 22px;
    }

    .nav-links {
        gap: 9px 14px;
    }

    .nav-links a {
        font-size: 14px;
    }


    /* HERO */

    .hero h1 {
        font-size: 40px;
    }

    .wedding-date {
        font-size: 21px;
    }


    /* PAGE HEADERS */

    .page-header h1 {
        font-size: 37px;
    }

    .page-header .script-title {
        font-size: 53px;
    }


    /* GENERAL CONTENT */

    .content-section,
    .card,
    .faq-item {
        padding: 28px 22px;
    }

    /* BRIDAL PARTY */

    .party-member {
        padding: 24px 20px;
    }

    .party-member h3 {
        font-size: 25px;
    }

    .party-role {
        margin-bottom: 16px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .party-photo {
        float: left;
        width: 42%;
        margin: 3px 18px 10px 0;
    }

    .party-member > p:not(.party-role):not(.party-author) {
        font-size: 16px;
        line-height: 1.6;
    }

    .party-author {
        font-size: 15px;
    }

    /* GALLERY */

    .photo-grid {
        column-count: 1;
    }
}

/* Slow gallery hover zoom */

.gallery-photo {
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 6px;
    background: transparent;
    break-inside: avoid;
    line-height: 0;
}

.gallery-photo img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    box-shadow: none;
    transform: scale(1);
    transition: transform 5s ease;
}

.gallery-photo:hover img {
    transform: scale(1.08);
}

/* Disable hover animation on touchscreens */

@media (hover: none) {
    .gallery-photo img {
        transition: none;
    }
}

/* BACK TO TOP BUTTON */

html {
    scroll-behavior: smooth;
}

.back-to-top {
    margin: 46px 0 14px;
    text-align: center;
}

.back-to-top a {
    display: inline-block;
    padding: 11px 25px;
    color: var(--primary-color);
    font-family: "Cormorant SC", serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.back-to-top a:hover,
.back-to-top a:focus-visible {
    color: #fff;
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ==================================================
   OUR STORY PAGE — EXPANDABLE CHAPTERS AND CAROUSELS
   ================================================== */
/* Chapter 6: no-photo message */

.story-no-photo {
    width: min(100%, 900px);
    margin: 2.5rem auto;
}

.story-no-photo .carousel-frame {
    position: relative;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    min-height: 320px;
    aspect-ratio: 16 / 9;
    padding: clamp(3rem, 8vw, 6rem);

    overflow: hidden;
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.5),
            transparent 70%
        ),
        #f1e9e4;

    border: 1px solid rgba(112, 70, 92, 0.22);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(66, 38, 53, 0.12);
}

.story-no-photo .carousel-frame::before {
    content: "No photographic evidence";
    position: absolute;
    top: clamp(1.25rem, 4vw, 2rem);

    color: #8a6477;
    font-family: "Cormorant SC", serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.story-no-photo p {
    max-width: 29ch;
    margin: 0;

    color: #70465d;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
    font-weight: 500;
    line-height: 1.25;
    text-wrap: balance;
}

.story-no-photo p::before,
.story-no-photo p::after {
    color: #b48b9f;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2em;
}

.story-no-photo p::before {
    content: "“";
}

.story-no-photo p::after {
    content: "”";
}

@media (max-width: 600px) {
    .story-no-photo .carousel-frame {
        min-height: 280px;
        aspect-ratio: auto;
        padding: 4.5rem 1.75rem 3rem;
        border-radius: 14px;
    }
}
.story-accordion,
.story-chapter {
    overflow-anchor: none;
}
   
.story-accordion {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto 70px;

    border-top: 1px solid var(--border-color, #ded3cc);
}

.story-intro {
    max-width: 720px;
    margin: 0 auto 34px;

    font-size: 19px;
    line-height: 1.7;
    text-align: center;
}

.story-chapter {
    margin: 0;
    overflow: hidden;

    background-color: transparent;

    border: 0;
    border-bottom: 1px solid var(--border-color, #ded3cc);
    border-radius: 0;
}

.story-chapter summary {
    position: relative;

    display: grid;
    grid-template-columns: 180px 1fr 26px;
    gap: 25px;
    align-items: center;

    padding: 28px 18px;

    cursor: pointer;
    list-style: none;

    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.story-chapter summary::-webkit-details-marker {
    display: none;
}

.story-chapter summary:hover {
    padding-left: 26px;

    background-color: rgba(255, 153, 216, 0.08);
}

/* Closed chapter hover preview */

.story-chapter:not([open]) summary:hover {
    background-color: #830c4f;

    transition:
        background-color 0.35s ease,
        padding-left 0.2s ease;
}

.story-chapter:not([open]) summary:hover .chapter-author {
    color: var(--accent-color, #ff99d8);
}

.story-chapter:not([open]) summary:hover .chapter-title {
    color: white;
}

.story-chapter:not([open]) summary:hover .chapter-toggle::before,
.story-chapter:not([open]) summary:hover .chapter-toggle::after {
    background-color: var(--accent-color, #ff99d8);
}

.story-chapter summary:focus-visible {
    outline: 2px solid var(--primary-color, #851747);
    outline-offset: -3px;
}

.story-chapter[open] {
    margin: 12px 0;

    background-color: var(--card-color, #fff);

    border: 1px solid var(--border-color, #ded3cc);
    border-radius: 7px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.story-chapter[open] summary {
    background-color: rgba(255, 153, 216, 0.07);

    border-bottom: 1px solid var(--border-color, #ded3cc);
}

.chapter-author {
    color: var(--primary-color, #851747);

    font-family: "Cormorant SC", serif;
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.chapter-title {
    color: var(--text-color, #493f3a);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
}

.chapter-toggle {
    position: relative;

    width: 20px;
    height: 20px;
}

.chapter-toggle::before,
.chapter-toggle::after {
    content: "";

    position: absolute;
    top: 9px;
    left: 2px;

    width: 16px;
    height: 2px;

    background-color: var(--primary-color, #851747);

    transition: transform 0.25s ease;
}

.chapter-toggle::after {
    transform: rotate(90deg);
}

.story-chapter[open] .chapter-toggle::after {
    transform: rotate(0);
}

.chapter-content {
    padding: 4px 36px 36px;

    border-top: 0;
}

.chapter-content p {
    margin: 22px 0 0;

    font-size: 18px;
    line-height: 1.75;
}

.elizabeth-placeholder {
    margin-top: 26px;
    padding: 24px 26px;

    background-color: rgba(121, 27, 69, 0.045);

    border-left: 3px solid var(--primary-color, #851747);
}

.elizabeth-placeholder p {
    margin-top: 0;
}

.elizabeth-placeholder ul {
    margin: 18px 0;
    padding-left: 22px;
}

.elizabeth-placeholder li {
    margin: 9px 0;

    line-height: 1.55;
}

.prompt-note {
    font-style: italic;

    opacity: 0.8;
}

        .chapter-carousel {
            max-width: 760px;
            margin: 30px auto 0;
        }

        .carousel-frame {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: #eee6e1;
            border-radius: 7px;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-slide.is-visible {
            display: block;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            z-index: 2;
            display: grid;
            width: 46px;
            height: 58px;
            padding: 0;
            color: #fff;
            font-family: Georgia, serif;
            font-size: 28px;
            line-height: 1;
            place-items: center;
            cursor: pointer;
            background: rgba(40, 27, 31, 0.48);
            border: 0;
            transform: translateY(-50%);
            transition: background-color .2s ease;
        }

        .carousel-arrow:hover,
        .carousel-arrow:focus-visible {
            background: rgba(121, 27, 69, 0.86);
        }

        .carousel-arrow:focus-visible {
            outline: 2px solid #fff;
            outline-offset: -4px;
        }

        .carousel-arrow.previous {
            left: 0;
            border-radius: 0 5px 5px 0;
        }

        .carousel-arrow.next {
            right: 0;
            border-radius: 5px 0 0 5px;
        }

        .carousel-counter {
            position: absolute;
            right: 14px;
            bottom: 12px;
            z-index: 2;
            padding: 5px 10px;
            color: #fff;
            font-family: "Cormorant SC", serif;
            font-size: 13px;
            letter-spacing: 1px;
            background: rgba(40, 27, 31, 0.58);
            border-radius: 20px;
        }

        .chapter-carousel figcaption {
            margin-top: 10px;
            color: var(--text-color, #493f3a);
            font-size: 15px;
            font-style: italic;
            line-height: 1.45;
            text-align: center;
            opacity: .78;
        }

/* ==================================================
   OPEN STORY CHAPTER — DARK READING MODE
================================================== */

.story-chapter {
    transition:
        background-color 1.5s ease,
        border-color 1.5s ease,
        box-shadow 1.5s ease;
}

.story-chapter summary {
    transition:
        background-color 1.5s ease,
        color 1.5s ease,
        padding-left 0.2s ease;
}

.chapter-content {
    background-color: transparent;

    transition:
        background-color 1.5s ease,
        color 1.5s ease;
}


/* The complete opened chapter */

.story-chapter[open] {
    background-color: #830c4f;

    border-color: #830c4f;

    box-shadow: 0 10px 28px rgba(83, 31, 85, 0.18);
}


/* The clickable chapter header */

.story-chapter[open] summary {
    background-color: #830c4f;

    border-bottom-color: rgba(255, 255, 255, 0.20);
}


/* The story text area */

.story-chapter[open] .chapter-content {
    background-color: #6f465d;
    color: #fff9f4;
}

.story-chapter[open] .chapter-content p {
    color: #fff9f4;
}

.story-chapter[open] .chapter-content a {
    color: var(--accent-color, #ff99d8);
}


/* Header text and accordion icon */

.story-chapter[open] .chapter-author {
    color: var(--accent-color, #ff99d8);
}

.story-chapter[open] .chapter-title {
    color: white;
}

.story-chapter[open] .chapter-toggle::before,
.story-chapter[open] .chapter-toggle::after {
    background-color: var(--accent-color, #ff99d8);
}


/* ==================================================
   STORY ACCORDION — PHONE
================================================== */

@media (max-width: 700px) {

    .story-accordion {
        width: min(100% - 22px, 980px);
    }

    .story-chapter summary {
        grid-template-columns: 1fr 24px;

        gap: 8px 14px;
        padding: 20px;
    }

    .chapter-author {
        grid-column: 1;
    }

    .chapter-title {
        grid-column: 1;
    }

    .chapter-toggle {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .chapter-content {
        padding: 2px 20px 26px;
    }

    .chapter-content p {
        font-size: 17px;
    }

    .elizabeth-placeholder {
        padding: 20px;
    }

}

/* ==================================================
   HAMBURGER NAVIGATION — 450PX AND BELOW
================================================== */

@media (max-width: 450px) {

    .main-nav {
        flex-direction: row;
        flex-wrap: wrap;

        gap: 0 14px;

        padding: 14px 5%;
    }

    .main-nav .site-name {
        flex: 1;

        min-width: 0;

        font-size: 22px;
        white-space: normal;
    }

    .nav-toggle {
        display: block;
        flex-shrink: 0;
    }

    .main-nav .nav-links {
        display: none;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        max-width: none;

        gap: 0;

        margin-top: 13px;
        padding: 8px 0 2px;

        border-top: 1px solid var(--border-color);
    }

    .main-nav .nav-links.is-open {
        display: flex;
    }

    .main-nav .nav-links a {
        width: 100%;
        padding: 12px 4px;

        font-size: 15px;
        text-align: center;

        border-bottom: 1px solid rgba(131, 12, 79, 0.10);
    }

    .main-nav .nav-links a:last-child {
        border-bottom: 0;
    }

    .main-nav .nav-links a:hover,
    .main-nav .nav-links a.active {
        background-color: rgba(131, 12, 79, 0.07);
        border-bottom-color: var(--accent-color);

        transform: none;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}

/* Hotel recommendation carousels */
        .hotel-guide {
            width: min(1380px, calc(100% - 2rem));
            margin: 0 auto 5rem;
        }

        .hotel-intro {
            max-width: 760px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .hotel-intro p:last-child {
            margin-bottom: 0;
        }

        .hotel-category-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.75rem;
            align-items: stretch;
        }

        .hotel-category {
            position: relative;
            min-width: 0;
            margin: 0;
        }

        .hotel-category-header {
            position: absolute;
            z-index: 2;
            top: 2.8rem;
            left: 0;
            width: 100%;
            pointer-events: none;
        }

        .hotel-category-heading {
            display: none;
        }

        .carousel-controls {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
        }

        .carousel-button {
            display: grid;
            width: 38px;
            height: 38px;
            padding: 0;
            place-items: center;
            border: 1px solid currentColor;
            border-radius: 50%;
            background: transparent;
            color: inherit;
            font: inherit;
            font-size: 1.25rem;
            cursor: pointer;
            pointer-events: auto;
            transition: background-color .2s ease, color .2s ease, opacity .2s ease;
        }

        .carousel-button:hover,
        .carousel-button:focus-visible {
            background: currentColor;
            outline: none;
        }

        .carousel-button:hover span,
        .carousel-button:focus-visible span {
            filter: invert(1);
        }

        .carousel-button:disabled {
            cursor: default;
            opacity: .35;
        }

        .hotel-track {
            display: grid;
            grid-auto-columns: 100%;
            grid-auto-flow: column;
            gap: 1.25rem;
            overflow-x: auto;
            padding: .25rem 0 1rem;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

        .hotel-track::-webkit-scrollbar {
            display: none;
        }

        .hotel-card {
            display: flex;
            min-width: 0;
            min-height: 100%;
            flex-direction: column;
            scroll-snap-align: start;
            padding-top: 2.9rem;
        }

        .hotel-card > .small-heading {
            min-height: 2.5rem;
            margin-right: 3rem;
            margin-left: 3rem;
            text-align: center;
        }

        .hotel-card h4 {
            margin: .25rem 0 .75rem;
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            line-height: 1.05;
            text-align: center;
        }

        .hotel-card .travel-address {
            margin-top: 0;
        }

        .hotel-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin: .2rem 0 1.1rem;
            padding: 0;
            list-style: none;
        }

        .hotel-highlights li {
            padding: .35rem .7rem;
            border: 1px solid rgba(74, 70, 61, .3);
            border-radius: 999px;
            font-size: .88rem;
            line-height: 1.2;
        }

        .hotel-details {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: .75rem;
            margin: .5rem 0 1.35rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(74, 70, 61, .22);
        }

        .hotel-detail {
            margin: 0;
        }

        .hotel-detail strong {
            display: block;
            margin-bottom: .1rem;
            font-family: "Cormorant SC", serif;
            font-size: .82rem;
            letter-spacing: .05em;
        }

        .hotel-card .button {
            align-self: flex-start;
            margin-top: auto;
        }

        .carousel-status {
            display: none;
            margin: .35rem 0 0;
            text-align: center;
            font-family: "Cormorant SC", serif;
            font-size: .8rem;
            letter-spacing: .12em;
        }

        .hotel-disclaimer {
            max-width: 760px;
            margin: -1.25rem auto 0;
            text-align: center;
            font-size: .92rem;
            opacity: .8;
        }

        @media (max-width: 720px) {
            .hotel-category-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hotel-track {
                grid-auto-columns: 100%;
            }

            .hotel-details {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 721px) and (max-width: 1050px) {
            .hotel-category-grid {
                grid-template-columns: 1fr;
                max-width: 620px;
                margin: 0 auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hotel-track {
                scroll-behavior: auto;
            }
        }
.story-no-photo .carousel-frame > p {
    color: #70465d !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}

.story-no-photo .carousel-frame > p::before,
.story-no-photo .carousel-frame > p::after {
    color: #a8758e !important;
    opacity: 1 !important;
}
.story-no-photo .carousel-frame > p {
    max-width: 34ch;
    margin: 0;
    padding: 0 1rem;

    color: #70465d !important;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    line-height: 1.3;
    text-wrap: balance;
}
.story-no-photo p::before,
.story-no-photo p::after {
    content: none !important;
}
.chapter-carousel.single-image .carousel-arrow,
.chapter-carousel.single-image .carousel-counter {
    display: none;
}