:root {
    --red: #8d0d18;
    --bright-red: #b30f22;
    --dark-red: #52070d;

    --black: #090909;
    --soft-black: #151515;

    --white: #ffffff;

    --cream: #f9f6f1;
    --warm-white: #fdfbf8;

    --gray: #757575;
    --border: rgba(0, 0, 0, .12);

    --fall-gold: #b88a44;
    --fall-olive: #6f6a45;
    --fall-rust: #a85a32;
    --fall-ivory: #f8f4ee;

    --serif: "Italiana", serif;
    --script: "Parisienne", cursive;
    --sans: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--warm-white);
    color: var(--black);
    font-family: var(--sans);
    overflow-x: hidden;
}

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

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

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

.header {
    width: 100%;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    transition:
        background .35s ease,
        box-shadow .35s ease,
        height .35s ease;
}

.header.scrolled {
    height: 72px;

    background:
        rgba(255, 255, 255, .94);

    backdrop-filter: blur(16px);

    box-shadow:
        0 2px 30px rgba(0, 0, 0, .07);
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--black);

    text-decoration: none;

    font-family: var(--serif);
    font-size: 25px;
}

.logo-heart {
    color: var(--red);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;

    color: var(--black);

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 600;
}

.desktop-nav a::after {
    content: "";

    height: 1px;
    width: 0;

    position: absolute;

    left: 0;
    bottom: -7px;

    background: var(--red);

    transition: width .3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;

    width: 40px;

    background: none;
    border: none;

    cursor: pointer;
}

.menu-button span {
    width: 30px;
    height: 1px;

    display: block;

    margin: 7px 0;

    background: var(--black);
}

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 3000;

    background: var(--black);

    transform: translateX(100%);

    transition: transform .55s cubic-bezier(.76, 0, .24, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;

    top: 25px;
    right: 30px;

    color: white;

    border: 0;
    background: none;

    font-size: 43px;
    font-weight: 200;

    cursor: pointer;
}

.mobile-menu-inner {
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 12%;
}

.menu-small-title {
    color: rgba(255,255,255,.4);

    letter-spacing: 4px;

    font-size: 10px;

    margin-bottom: 14px;
}

.mobile-names {
    color: white;

    font-family: var(--script);

    font-size: clamp(50px, 12vw, 80px);

    margin-bottom: 45px;
}

.mobile-names span {
    color: var(--red);
}

.mobile-menu a {
    color: white;

    text-decoration: none;

    font-family: var(--serif);

    font-size: 26px;

    padding: 15px 0;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.section-eyebrow,
.eyebrow {
    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 10px;

    font-weight: 600;

    color: var(--red);
    
}

.section-eyebrow.light {
    color: rgba(255,255,255,.62);
}

.script-heading {
    margin-top: 12px;

    font-family: var(--script);

    font-size: clamp(50px, 7vw, 84px);

    font-weight: 400;

    line-height: 1;
}

.light-heading {
    color: white;
}

.section-description {
    max-width: 620px;

    margin:
        22px auto 0;

    color: var(--gray);

    line-height: 1.9;

    font-family: var(--serif);
    font-size: 17px;
}

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding:
        140px 25px 100px;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(141, 13, 24, .06),
            transparent 35%
        ),
        linear-gradient(
            140deg,
            #fff 0%,
            #fbf8f4 100%
        );
}



.hero-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.hero-intro {
    margin-top: 19px;

    color: #626262;

    font-family: var(--serif);

    font-size: 17px;
}

.hero-names {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin: 20px 0 10px;

    font-family: var(--script);

    font-size:
        clamp(72px, 12vw, 160px);

    line-height: .9;
}

.hero-ampersand {
    color: var(--red);

    font-size: .66em;

    transform: translateY(6px);
}

.hero-line {
    width: 70px;
    height: 1px;

    margin: 32px auto;

    background: var(--red);
}

.hero h1 {
    font-family: var(--serif);

    font-size:
        clamp(13px, 1.5vw, 18px);

    font-weight: 400;

    letter-spacing: 7px;
}

.hero-date {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 23px;

    margin-top: 30px;
}

.hero-date span {
    width: 90px;

    padding: 8px 0;

    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);

    letter-spacing: 3px;

    font-size: 10px;
}

.hero-date strong {
    font-family: var(--serif);

    font-size: 54px;
    font-weight: 400;
}

.hero-location {
    margin-top: 18px;

    font-family: var(--serif);

    font-size: 18px;
}

.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 40px;

    min-width: 165px;
    height: 51px;

    background: var(--red);
    color: white;

    border: 1px solid var(--red);

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 3px;
    border-radius: 10px;

    transition: all .3s ease;
}

.primary-button:hover {
    background: transparent;
    color: var(--red);
}

.scroll-down {
    position: absolute;

    left: 50%;
    bottom: 27px;

    transform: translateX(-50%);

    color: #999;

    text-decoration: none;

    text-align: center;

    text-transform: uppercase;

    font-size: 8px;

    letter-spacing: 3px;
}

.scroll-arrow {
    margin-top: 8px;

    color: var(--red);

    font-size: 20px;
}

.hero-decoration {
    position: absolute;

    font-family: var(--script);

    color: rgba(141,13,24,.06);

    font-size: 280px;
}

.hero-decoration-left {
    top: 10%;
    left: -30px;

    transform: rotate(-15deg);
}

.hero-decoration-right {
    bottom: 0;
    right: -30px;

    transform: rotate(18deg);
}

.countdown-section {
    padding: 125px 20px;

    text-align: center;

    background: white;
}

.ornament {
    color: var(--red);

    margin-bottom: 20px;

    font-size: 22px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 60px;

    gap: 35px;
}

.countdown-item {
    min-width: 110px;
}

.countdown-item strong {
    display: block;

    font-family: var(--serif);

    font-size:
        clamp(42px, 6vw, 70px);

    font-weight: 400;
}

.countdown-item span {
    color: #888;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 9px;
}

.countdown-divider {
    width: 1px;
    height: 55px;

    background: rgba(0,0,0,.12);
}

.details-section {
    padding:
        130px 6%;

    background: var(--cream);
}

.section-title-area {
    text-align: center;

    margin-bottom: 75px;
}

.details-grid {
    max-width: 1200px;

    display: grid;

    grid-template-columns:
        repeat(2
        , 1fr);

    margin: auto;
}

.detail-card {
    text-align: center;

    padding:
        30px 45px;
}

.center-card {
    border-left:
        1px solid var(--border);

    border-right:
        1px solid var(--border);
}

.detail-icon {
    margin-bottom: 23px;

    color: var(--red);

    font-size: 38px;
}

.detail-card h3 {
    font-family: var(--serif);

    font-size: 22px;

    letter-spacing: 3px;

    font-weight: 400;
}

.small-red-line {
    width: 30px;
    height: 1px;

    margin: 19px auto;

    background: var(--red);
}

.detail-main {
    color: var(--black) !important;

    font-family: var(--serif);

    font-size: 22px !important;
}

.detail-card p {
    margin: 8px 0;

    color: #777;

    line-height: 1.7;

    font-size: 13px;
}

.text-link {
    display: inline-block;

    margin-top: 20px;

    color: var(--red);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    text-decoration: none;
}

.quote-section {
    min-height: 500px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background: var(--red);

    text-align: center;
}

.quote-background-letter {
    position: absolute;

    font-family: var(--script);

    font-size: 520px;

    line-height: 1;
}

.quote-content {
    position: relative;
    z-index: 2;

    color: white;
}

.large-quote {
    color: rgba(255,255,255,.3);

    font-family: var(--serif);

    font-size: 80px;
}

.quote-content blockquote {
    font-family: var(--serif);

    font-size:
        clamp(35px, 5vw, 66px);

    line-height: 1.35;
}

.quote-content p {
    margin-top: 25px;

    letter-spacing: 3px;

    font-size: 10px;
}

.timeline-section {
    padding:
        130px 20px;

    text-align: center;

    background: white;
}

.timeline {
    max-width: 900px;

    position: relative;

    margin: 90px auto 0;
}

.timeline-line {
    width: 1px;

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    background:
        repeating-linear-gradient(
            to bottom,
            var(--red) 0,
            var(--red) 6px,
            transparent 6px,
            transparent 14px
        );
}

.timeline-event {
    width: 100%;

    min-height: 230px;

    display: grid;

    grid-template-columns:
        1fr 50px 1fr;

    align-items: center;

    position: relative;
}

.timeline-event.left
.timeline-content {
    grid-column: 1;

    text-align: right;

    padding-right: 55px;
}

.timeline-event.left
.timeline-dot {
    grid-column: 2;
}

.timeline-event.right
.timeline-dot {
    grid-column: 2;
}

.timeline-event.right
.timeline-content {
    grid-column: 3;

    text-align: left;

    padding-left: 55px;
}

.timeline-dot {
    width: 13px;
    height: 13px;

    margin: auto;

    position: relative;
    z-index: 3;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 0 7px white;
}

.timeline-icon {
    margin-bottom: 11px;

    color: var(--red);

    font-size: 27px;
}

.timeline-content h3 {
    font-family: var(--script);

    font-size: 37px;
    font-weight: 400;
}

.timeline-content strong {
    display: block;

    margin-top: 2px;

    font-family: var(--serif);

    font-size: 20px;

    letter-spacing: 2px;
}

.timeline-content p {
    margin-top: 10px;

    color: #8a8a8a;

    font-family: var(--serif);

    font-size: 14px;
}

.story-section {
    padding:
        130px 7%;

    background: var(--cream);
}

.story-grid {
    max-width: 1150px;

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 100px;

    align-items: center;

    margin: auto;
}

.story-photo {
    position: relative;
}

.story-photo img {
    aspect-ratio: 4 / 5;

    object-fit: cover;

    filter: grayscale(100%);
}

.photo-wrap {
    position: relative;
    width: 430px;
    height: 560px;
}

.photo-oval,
.photo-border {
    border-radius:
        50% 50% 46% 46%
        /
        58% 58% 42% 42%;
}

.photo-oval {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #fff;

    z-index: 2;
}

.photo-oval img {
    position: absolute;

    width: 125%;
    height: 125%;

    left: 50%;
    bottom: -8%;

    transform: translateX(-50%);

    object-fit: contain;
    object-position: center bottom;
}

.photo-border {
    position: absolute;

    width: calc(100% + 18px);
    height: calc(100% + 18px);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: #fff;

    border: 5px solid var(--red);

    z-index: 1;
}

.story-content .script-heading {
    margin-left: -5px;
}

.story-line {
    width: 55px;
    height: 1px;

    margin: 30px 0;

    background: var(--red);
}

.story-content p {
    margin-bottom: 19px;

    color: #666;

    font-family: var(--serif);

    font-size: 17px;

    line-height: 1.9;
}

.signature {
    margin-top: 30px;

    color: var(--red);

    font-family: var(--script);

    font-size: 40px;
}

.photos-section {
    padding:
        130px 6%;

    color: white;

    background: var(--black);
}

.photos-section
.section-title-area p {
    max-width: 550px;

    margin: 20px auto;

    color: rgba(255,255,255,.56);

    font-family: var(--serif);

    line-height: 1.8;
}

.slideshow-container {
    max-width: 1050px;

    display: grid;

    grid-template-columns:
        70px 1fr 70px;

    align-items: center;

    margin: auto;
}

.slideshow {
    height: min(70vh, 670px);

    position: relative;

    overflow: hidden;

    background: #111;

    border:
        1px solid rgba(255,255,255,.1);
}

.slideshow-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    animation:
        photoFade .7s ease;
}

@keyframes photoFade {

    from {
        opacity: .2;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.hidden {
    display: none;
}

.empty-gallery {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 40px;

    text-align: center;
}

.empty-heart {
    color: var(--red);

    font-size: 60px;

    margin-bottom: 25px;
}

.empty-gallery h3 {
    font-family: var(--serif);

    font-size: 28px;

    font-weight: 400;
}

.empty-gallery p {
    max-width: 460px;

    margin-top: 12px;

    color: rgba(255,255,255,.48);

    line-height: 1.8;
}

.slide-arrow {
    width: 50px;
    height: 50px;

    margin: auto;

    color: white;

    border:
        1px solid rgba(255,255,255,.22);

    background: transparent;

    border-radius: 50%;

    cursor: pointer;

    font-size: 30px;

    transition: all .25s ease;
}

.slide-arrow:hover {
    border-color: var(--red);

    background: var(--red);
}

.slide-counter {
    margin-top: 20px;

    text-align: center;

    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.upload-card {
    max-width: 900px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin:
        70px auto 0;

    padding: 35px;

    border:
        1px solid rgba(255,255,255,.13);

    background:
        rgba(255,255,255,.035);
}

.upload-content {
    display: flex;

    align-items: center;

    gap: 20px;
}

.upload-icon {
    color: var(--red);

    font-size: 37px;
}

.upload-content h3 {
    font-family: var(--serif);

    font-size: 24px;

    font-weight: 400;
}

.upload-content p {
    margin-top: 6px;

    color:
        rgba(255,255,255,.5);

    font-size: 12px;

    line-height: 1.7;
}

.upload-button {
    min-width: 170px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red);

    cursor: pointer;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition:
        background .25s ease;
}

.upload-button:hover {
    background: var(--bright-red);
}

.upload-status {
    margin-top: 25px;

    text-align: center;

    color: rgba(255,255,255,.7);

    font-size: 12px;
}


.dress-code-section {
    padding:
        130px 20px;

    text-align: center;

    background: var(--warm-white);
}

.dress-main {
    margin-top: 25px;

    font-family: var(--serif);

    font-size: 24px;
}

.color-palette {
    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 40px;
}

.palette {
    width: 48px;
    height: 48px;

    display: block;

    border-radius: 50%;

    border:
        5px solid white;

    box-shadow:
        0 3px 20px rgba(0,0,0,.13);
}

.palette.black {
    background: #111;
}

.palette.burgundy {
    background: #570c16;
}

.palette.red {
    background: #9d1523;
}

.palette.cream {
    background: #e9dfd2;
}

.rsvp-section {
    padding:
        130px 20px;

    background:
        radial-gradient(
            circle at top,
            #82101a,
            #380407 70%
        );
}

.rsvp-card {
    max-width: 770px;

    margin: auto;

    padding:
        75px 80px;

    color: white;
    border-radius: 20px;

    background:
        rgba(0, 0, 0, 0.847);

    border:
        1px solid rgba(255,255,255,.18);
}

.rsvp-card >
.section-eyebrow,
.rsvp-card >
.script-heading,
.rsvp-intro {
    display: block;

    text-align: center;
}

.rsvp-intro {
    margin:
        20px 0 45px;

    color:
        rgba(255,255,255,.7);

    font-family: var(--serif);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group > label {
    display: block;

    margin-bottom: 9px;

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    color: white;

    padding:
        14px 16px;

    border:
        1px solid rgba(255,255,255,.25);

    outline: none;

    background:
        rgba(255,255,255,.06);

    border-radius: 0;

    transition:
        border-color .25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: white;
}

.form-group select option {
    color: black;
}

.attendance-options {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}

.attendance-options label {
    display: block;

    cursor: pointer;
}

.attendance-options input {
    display: none;
}

.attendance-options span {
    display: flex;

    min-height: 55px;

    align-items: center;

    justify-content: center;

    padding: 10px;

    border:
        1px solid rgba(255,255,255,.24);

    text-align: center;

    font-family: var(--serif);

    font-size: 15px;

    transition: all .25s ease;
}

.attendance-options
input:checked + span {
    background: white;

    color: var(--red);
}

.rsvp-button {
    width: 100%;
    height: 54px;

    color: var(--black);

    background: white;

    border: 1px solid white;

    cursor: pointer;

    letter-spacing: 3px;

    font-size: 9px;

    font-weight: 600;

    transition:
        all .25s ease;
}

.rsvp-button:hover {
    color: white;

    background: transparent;
}

.rsvp-status {
    margin-top: 20px;

    text-align: center;

    line-height: 1.6;

    font-size: 12px;
}

.faq-section {
    padding:
        130px 20px;

    text-align: center;

    background: white;
}

.faq-container {
    max-width: 800px;

    margin:
        65px auto 0;

    text-align: left;
}

.faq-item {
    border-bottom:
        1px solid var(--border);
}

.faq-question {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding:
        25px 0;

    border: 0;

    background: none;

    cursor: pointer;

    font-family: var(--serif);

    font-size: 19px;

    text-align: left;
}

.faq-question strong {
    color: var(--red);

    font-size: 25px;

    font-weight: 300;

    transition:
        transform .3s ease;
}

.faq-item.active
.faq-question strong {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .4s ease;
}

.faq-answer p {
    padding:
        0 40px 25px 0;

    color: #777;

    font-family: var(--serif);

    line-height: 1.8;
}

.final-section {
    min-height: 650px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.73)
        ),
        url("images/final-photo.jpg")
        center / cover no-repeat;
}

.final-overlay {
    position: absolute;

    inset: 25px;

    border:
        1px solid rgba(255,255,255,.25);
}

.final-content {
    position: relative;

    z-index: 2;

    color: white;
}

.final-content h2 {
    margin-top: 20px;

    font-family: var(--serif);

    font-size:
        clamp(38px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.2;
}

.final-content h2 span {
    display: block;

    color: white;

    font-family: var(--script);

    font-size: 1.22em;
}

.final-heart {
    margin: 30px;

    color: var(--red);

    font-size: 23px;
}

.final-names {
    font-family: var(--script);

    font-size: 48px;
}

.final-date {
    margin-top: 12px;

    color:
        rgba(255,255,255,.7);

    font-size: 9px;

    letter-spacing: 4px;
}

footer {
    padding:
        45px 20px;

    text-align: center;

    background: var(--black);

    color:
        rgb(255, 255, 255);
}

.footer-logo {
    margin-bottom: 10px;

    color: white;

    font-family: var(--serif);

    font-size: 22px;
}

.footer-logo span {
    color: var(--red);

    font-size: 12px;
}

footer p {
    font-family: var(--serif);

    font-size: 12px;
}

@media (max-width: 850px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .header {
        height: 72px;

        background:
            rgba(255,255,255,.94);

        backdrop-filter:
            blur(15px);
    }

    .hero {
        min-height: 100svh;

        padding-top: 120px;
    }

    .hero-names {
        flex-direction: column;

        gap: 0;

        font-size:
            clamp(72px, 23vw, 115px);
    }

    .hero-ampersand {
        margin: -12px 0;

        font-size: 60px;
    }

    .hero h1 {
        letter-spacing: 4px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 65px;
    }

    .countdown-divider {
        height: 38px;
    }

    .countdown-item span {
        letter-spacing: 1px;
    }

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

    .center-card {
        margin: 15px 0;

        padding:
            60px 20px;

        border-left: 0;
        border-right: 0;

        border-top:
            1px solid var(--border);

        border-bottom:
            1px solid var(--border);
    }

    .timeline-line {
        left: 24px;
    }

    .timeline-event {
        min-height: auto;

        grid-template-columns:
            48px 1fr;

        margin-bottom: 65px;
    }

    .timeline-event.left
    .timeline-content,
    .timeline-event.right
    .timeline-content {
        grid-column: 2;

        padding-left: 25px;
        padding-right: 0;

        text-align: left;
    }

    .timeline-event.left
    .timeline-dot,
    .timeline-event.right
    .timeline-dot {
        grid-column: 1;
        grid-row: 1;

        margin: auto;
    }

    .story-grid {
        grid-template-columns: 1fr;

        gap: 80px;
    }

    .slideshow-container {
        grid-template-columns:
            40px 1fr 40px;
    }

    .slide-arrow {
        width: 35px;
        height: 35px;

        font-size: 22px;
    }

    .slideshow {
        height: 60vh;
    }

    .upload-card {
        flex-direction: column;

        text-align: center;
    }

    .upload-content {
        flex-direction: column;
    }

    .upload-button {
        width: 100%;
    }

    .rsvp-card {
        padding:
            60px 25px;
    }

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

    .attendance-options {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 500px) {

    .section-description {
        font-size: 15px;
    }

    .script-heading {
        font-size: 57px;
    }

    .countdown-section,
    .details-section,
    .timeline-section,
    .story-section,
    .photos-section,
    .dress-code-section,
    .rsvp-section,
    .faq-section {
        padding-top: 95px;
        padding-bottom: 95px;
    }

}

@media (max-width: 500px) {

    .hero-decoration {
        color: rgba(141, 13, 24, 0.045);

        opacity: 0.16;

        filter: blur(1.5px);
    }

}

@media (max-width: 850px) {

    .story-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 70px;

        justify-items: center;
    }

    .photo-wrap {
        position: relative;

        width: min(82vw, 380px);
        height: auto;

        aspect-ratio: 430 / 560;

        margin: 0 auto;

        justify-self: center;
    }

    .photo-oval {
        position: absolute;

        width: 100%;
        height: 100%;

        top: 0;
        left: 0;

        overflow: hidden;

        background: #fff;

        border-radius:
            50% 50% 46% 46%
            /
            58% 58% 42% 42%;

        z-index: 2;
    }

    .photo-oval img {
        position: absolute;

        width: 100%;
        height: 100%;

        left: 50%;
        bottom: 0;

        transform: translateX(-50%);

        object-fit: contain;
        object-position: center bottom;

        margin: 0;
    }

    .photo-border {
        position: absolute;

        width: calc(100% + 8px);
        height: calc(100% + 8px);

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        border-radius:
            50% 50% 46% 46%
            /
            58% 58% 42% 42%;

        background: #fff;

        border: 3px solid var(--red);

        z-index: 1;

        pointer-events: none;
    }

}

@media (max-width: 500px) {

    .photo-wrap {
        width: 82vw;
        max-width: 345px;
    }

    .photo-border {
        width: calc(100% + 6px);
        height: calc(100% + 6px);

        border-width: 2px;
    }

}

.hero,
.details-section,
.story-section,
.rsvp-section,
.faq-section {
    position: relative;
}

.details-section {
    background:
        radial-gradient(circle at top left, rgba(184, 138, 68, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(111, 106, 69, 0.07), transparent 30%),
        var(--cream);
}

.story-section {
    background:
        radial-gradient(circle at top right, rgba(168, 90, 50, 0.06), transparent 22%),
        radial-gradient(circle at bottom left, rgba(184, 138, 68, 0.08), transparent 28%),
        var(--cream);
}

.hero-floral {
    position: absolute;
    z-index: 1;
    width: 170px;
    height: 220px;
    pointer-events: none;
}

.hero-floral-left {
    top: 120px;
    left: 35px;
}

.hero-floral-right {
    top: 120px;
    right: 35px;
    transform: scaleX(-1);
}

.cross-accent {
    position: absolute;
    top: 10px;
    left: 58px;

    color: var(--fall-gold);
    font-size: 28px;
    line-height: 1;
}

.fall-leaf {
    position: absolute;
    display: block;
    border-radius: 60% 40% 65% 35% / 60% 35% 65% 40%;
    opacity: 0.85;
}

.leaf-one {
    width: 52px;
    height: 82px;
    background: rgba(168, 90, 50, 0.22);
    top: 110px;
    left: 10px;
    transform: rotate(-30deg);
}

.leaf-two {
    width: 58px;
    height: 95px;
    background: rgba(111, 106, 69, 0.18);
    top: 90px;
    left: 95px;
    transform: rotate(28deg);
}

.lily-cluster {
    position: absolute;
    top: 42px;
    left: 34px;
    width: 100px;
    height: 100px;
}

.lily-flower {
    position: relative;
    width: 100px;
    height: 100px;
}

.petal {
    position: absolute;
    width: 28px;
    height: 54px;
    left: 50%;
    top: 50%;
    margin-left: -14px;
    margin-top: -40px;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f1ea 100%
    );

    border: 1px solid rgba(141, 13, 24, 0.18);

    border-radius: 60% 60% 65% 65% / 85% 85% 35% 35%;

    transform-origin: center 38px;
}

.p1 { transform: rotate(0deg); }
.p2 { transform: rotate(60deg); }
.p3 { transform: rotate(120deg); }
.p4 { transform: rotate(180deg); }
.p5 { transform: rotate(240deg); }
.p6 { transform: rotate(300deg); }

.flower-center {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: var(--fall-gold);
    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(184, 138, 68, 0.14);
}

.faith-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 24px auto 0;
}

.faith-divider span {
    width: 120px;
    height: 1px;
    background: rgba(141, 13, 24, 0.32);
}

.mini-cross {
    color: var(--fall-gold);
    font-size: 18px;
    line-height: 1;
}

.mini-lily {
    position: relative;
    width: 28px;
    height: 28px;
}

.mini-lily::before,
.mini-lily::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;

    width: 12px;
    height: 22px;

    background: #fff;
    border: 1px solid rgba(141, 13, 24, 0.18);

    border-radius: 60% 60% 60% 60% / 80% 80% 40% 40%;
    transform-origin: center bottom;
}

.mini-lily::before {
    transform: rotate(-30deg);
}

.mini-lily::after {
    transform: rotate(30deg);
}

.section-title-area,
.story-content,
.rsvp-card {
    position: relative;
    z-index: 2;
}

.detail-card {
    background: rgba(255, 255, 255, 0.983);
    border-radius: 20px;
}

.detail-icon {
    color: var(--fall-gold);
}

.small-red-line {
    background: linear-gradient(
        90deg,
        var(--fall-gold),
        var(--red)
    );
}

@media (max-width: 850px) {

    .hero-floral {
        width: 110px;
        height: 150px;
        opacity: 0.88;
    }

    .hero-floral-left {
        top: 115px;
        left: 8px;
    }

    .hero-floral-right {
        top: 115px;
        right: 8px;
    }

    .cross-accent {
        top: 2px;
        left: 40px;
        font-size: 20px;
    }

    .lily-cluster {
        top: 26px;
        left: 18px;
        width: 72px;
        height: 72px;
    }

    .lily-flower {
        width: 72px;
        height: 72px;
    }

    .petal {
        width: 20px;
        height: 40px;
        margin-left: -10px;
        margin-top: -30px;
        transform-origin: center 28px;
    }

    .flower-center {
        width: 10px;
        height: 10px;
    }

    .leaf-one {
        width: 35px;
        height: 58px;
        top: 84px;
        left: 2px;
    }

    .leaf-two {
        width: 40px;
        height: 64px;
        top: 68px;
        left: 58px;
    }

    .faith-divider span {
        width: 44px;
    }
}

@media (max-width: 500px) {

    .hero-floral {
        width: 85px;
        height: 120px;
        opacity: 0.72;
    }

    .hero-floral-left {
        top: 120px;
        left: 2px;
    }

    .hero-floral-right {
        top: 120px;
        right: 2px;
    }

    .cross-accent {
        font-size: 16px;
        left: 32px;
    }

    .lily-cluster {
        top: 24px;
        left: 12px;
        width: 56px;
        height: 56px;
    }

    .lily-flower {
        width: 56px;
        height: 56px;
    }

    .petal {
        width: 16px;
        height: 30px;
        margin-left: -8px;
        margin-top: -22px;
        transform-origin: center 21px;
    }

    .leaf-one {
        width: 28px;
        height: 45px;
        top: 70px;
    }

    .leaf-two {
        width: 30px;
        height: 50px;
        top: 58px;
        left: 44px;
    }

    .mini-cross {
        font-size: 16px;
    }

    .faith-divider span {
        width: 50px;
    }
}

body {
    color: #000;
}

.hero-intro,
.hero-location,
.section-description,
.detail-card p,
.timeline-content p,
.story-content p,
.faith-description,
.faith-detail p,
.dress-main,
.faq-answer p {
    color: #111 !important;
    opacity: 1 !important;
}

.section-eyebrow,
.eyebrow,
.detail-card h3,
.timeline-content h3,
.timeline-content strong,
.story-content,
.faith-title,
.faq-question,
.hero h1,
.hero-date,
.hero-date span,
.hero-date strong {
    color: #000 !important;
}

.section-eyebrow,
.eyebrow {
    color: var(--red) !important;
    font-weight: 700;
}

.text-link {
    color: var(--red) !important;
    font-weight: 700;
}

.photos-section,
.rsvp-section,
.quote-section,
.final-section {
    color: #fff;
}

.photos-section .section-eyebrow,
.rsvp-section .section-eyebrow,
.quote-section .section-eyebrow,
.final-section .section-eyebrow {
    color: rgba(255,255,255,.85) !important;
}

.photos-section p,
.rsvp-section p,
.quote-section p,
.final-section p {
    color: rgba(255,255,255,.88) !important;
}

.photos-section h2,
.rsvp-section h2,
.quote-section h2,
.final-section h2 {
    color: #fff !important;
}

.cross-img {
    display: block;

    width: auto;
    height: auto;

    object-fit: contain;

    margin: 0 auto;
}

.cross-hero {
    width: 18px;
    max-height: 28px;
}

.cross-divider {
    width: 12px;
    max-height: 18px;
}

.cross-top-img {
    width: 20px;
    max-height: 30px;
}

.cross-quote-img {
    width: 18px;
    max-height: 26px;
}

.cross-accent {
    width: 24px;
    height: 32px;
}

.mini-cross {
    width: 16px;
    height: 20px;
}

.cross-top {
    width: 26px;
    height: 34px;
    margin: 0 auto 18px;
}

.quote-cross {
    width: 24px;
    height: 32px;
    margin: 0 auto 16px;
}

@media (max-width: 850px) {

    .cross-hero {
        width: 15px;
        max-height: 23px;
    }

    .cross-divider {
        width: 10px;
        max-height: 15px;
    }

    .cross-top-img {
        width: 17px;
        max-height: 25px;
    }

    .cross-quote-img {
        width: 15px;
        max-height: 22px;
    }

}

.quote-content {
    position: relative;

    z-index: 2;

    width: 100%;

    text-align: center;

    color: rgba(255, 255, 255, 0);
}

.quote-cross {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 22px;
}

.quote-cross-img {
    display: block;

    width: 28px;
    height: auto;

    object-fit: contain;
}

.quote-content blockquote {
    width: 100%;

    margin: 0 auto;

    color: white;

    font-family: var(--serif);

    font-size: clamp(35px, 5vw, 66px);

    line-height: 1.35;

    text-align: center;
}

@media (max-width: 850px) {

    .quote-cross {
        margin-bottom: 18px;
    }

    .quote-cross-img {
        width: 24px;
    }

    .quote-content blockquote {
        font-size: clamp(38px, 11vw, 58px);
    }

}

@media (max-width: 500px) {

    .quote-cross-img {
        width: 21px;
    }

    .quote-cross {
        margin-bottom: 16px;
    }

    .quote-content blockquote {
        font-size: 42px;
        line-height: 1.15;
    }

}

.story-cross {
    width: 24px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.story-cross img {
    display: block;

    width: 18px;
    height: auto;

    max-height: 28px;

    object-fit: contain;
}

.mini-lily {
    position: relative;

    width: 26px;
    height: 26px;

    flex: 0 0 auto;
}

.mini-lily::before,
.mini-lily::after {
    content: "";

    position: absolute;

    width: 11px;
    height: 21px;

    left: 50%;
    bottom: 1px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f1e7 100%
        );

    border: 1px solid rgba(141, 13, 24, 0.28);

    border-radius:
        70% 70% 55% 55%
        /
        85% 85% 35% 35%;

    transform-origin: center bottom;
}

.mini-lily::before {
    transform:
        translateX(-85%)
        rotate(-32deg);
}

.mini-lily::after {
    transform:
        translateX(-15%)
        rotate(32deg);
}

.mini-lily {
    background:
        radial-gradient(
            circle at 50% 68%,
            var(--fall-gold) 0 3px,
            transparent 4px
        );
}

.story-text {
    max-width: 630px;
}

.story-text p {
    margin: 0 0 20px;

    color: #111 !important;

    font-family: var(--serif);

    font-size: 17px;

    line-height: 1.8;

    opacity: 1;
}

.signature {
    margin-top: 12px;

    color: var(--red);

    font-family: var(--script);

    font-size: 42px;
}

.faith-divider .divider-line {
    width: 180px;
    height: 1px;
    margin: 28px 0 38px;

    background: rgba(141, 13, 24, 0.55);

    flex: 0 0 auto;
}

html,
body {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow-x: hidden;
}

body {
    position: relative;
}

main,
section,
header,
footer {
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

@media (max-width: 850px) {

    html,
    body {
        width: 100%;
        max-width: 100vw;

        overflow-x: hidden;
        overscroll-behavior-x: none;
    }

    body {
        min-width: 0;
    }

    main {
        width: 100vw;
        max-width: 100vw;

        overflow-x: hidden;
    }

    section {
        width: 100%;
        max-width: 100vw;

        overflow-x: hidden;
    }

    .story-grid,
    .story-content,
    .story-text,
    .details-grid,
    .timeline,
    .countdown,
    .slideshow-container,
    .upload-card,
    .rsvp-card,
    .faq-container {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .story-section {
        width: 100%;
        max-width: 100vw;

        padding-left: 24px;
        padding-right: 24px;

        overflow: hidden;
    }

    .story-grid {
        grid-template-columns: minmax(0, 1fr);

        justify-items: center;
    }

    .story-content {
        width: 100%;
        max-width: 100%;

        min-width: 0;
    }

    .story-text {
        width: 100%;
        max-width: 100%;
    }

    .story-text p {
        width: 100%;
        max-width: 100%;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .faith-divider {
        width: 100%;
        max-width: 100%;

        display: flex;
        align-items: start;
        justify-content: center;

        gap: 9px;

        overflow: hidden;
    }

    .faith-divider .divider-line {
        width: auto;
        max-width: 180px;

        flex: 1 1 auto;

        min-width: 20px;
    }

    .mini-lily,
    .story-cross {
        flex: 0 0 auto;
    }

    .script-heading {
        max-width: 100%;

        overflow-wrap: break-word;
    }

    .photo-wrap {
        max-width: 82vw;

        margin-left: auto;
        margin-right: auto;
    }

    .photos-section {
        width: 100%;
        max-width: 100vw;

        padding-left: 20px;
        padding-right: 20px;

        overflow: hidden;
    }

    .slideshow-container {
        width: 100%;

        grid-template-columns:
            38px minmax(0, 1fr) 38px;
    }

    .slideshow {
        min-width: 0;
        max-width: 100%;
    }

    .rsvp-section {
        width: 100%;
        max-width: 100vw;

        overflow: hidden;
    }

    .rsvp-card {
        width: 100%;
        max-width: 770px;
    }

}

.quote-cross-img {
    width: 100px;
    height: auto;

    max-height: 300px;

    object-fit: contain;
    margin-bottom: 50px;
}

.details-section {
    position: relative;
    overflow: hidden;
}

.details-section > *:not(.theme-lily) {
    position: relative;
    z-index: 2;
}

.theme-lily {
    position: absolute;

    z-index: 1;

    pointer-events: none;
    user-select: none;
}

.theme-lily img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

.lily-details-left {
    width: 180px;

    left: -55px;
    top: 55px;

    opacity: 0.12;

    transform: rotate(-18deg);
}

.lily-details-right {
    width: 165px;

    right: -45px;
    bottom: 35px;

    opacity: 0.10;

    transform:
        scaleX(-1)
        rotate(-16deg);
}

@media (max-width: 850px) {

    .lily-details-left {
        width: 120px;

        left: -40px;
        top: 35px;

        opacity: 0.10;
    }

    .lily-details-right {
        width: 110px;

        right: -35px;
        bottom: 25px;

        opacity: 0.08;
    }

}

@media (max-width: 500px) {

    .lily-details-left {
        width: 95px;

        left: -30px;
        top: 30px;

        opacity: 0.08;
    }

    .lily-details-right {
        width: 85px;

        right: -25px;
        bottom: 20px;

        opacity: 0.07;
    }

}

.hero,
.countdown-section,
.details-section,
.quote-section,
.timeline-section,
.story-section,
.photos-section,
.dress-code-section,
.rsvp-section,
.faq-section,
.final-section {
    position: relative;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero {
    background-image: url("images/Background1.png");
    background-size: cover;
    background-position: center;
}

.countdown-section {
    background-image: url("images/Background10.png");
    background-size: cover;
    background-position: center;
}

.details-section {
    background-image: url("images/Background13.png");
    background-size: cover;
    background-position: center;
}

.quote-section {
    background-image:
        linear-gradient(
            rgba(141, 13, 24, 0),
            rgba(141, 13, 24, 0)
        ),
        url("images/Background11.png");

    background-size: cover;
    background-position: center;
}

.timeline-section {
    background-image: url("images/Background9.png");
    background-size: cover;
    background-position: center;
}

.story-section {
    background-image: url("images/Background5.png");
    background-size: cover;
    background-position: center;
}

.dress-code-section {
    background-image: url("images/Background0.png");
    background-size: cover;
    background-position: center;
}

.rsvp-section {
    background-image:
        linear-gradient(
            rgba(82, 7, 13, 0),
            rgba(82, 7, 13, 0)
        ),
        url("images/Background15.png");

    background-size: cover;
    background-position: center;
}

.faq-section {
    background-image: url("images/Background9.png");
    background-size: cover;
    background-position: center;
}

.final-section {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.62)
        ),
        url("images/Background10.png");

    background-size: cover;
    background-position: center;
}

:root {
    --pearl-white: rgba(250, 247, 241, 0.94);
    --pearl-white-soft: rgba(250, 247, 241, 0.86);
    --pearl-border: rgba(255, 255, 255, 0.78);
    --pearl-shadow: rgba(70, 45, 35, 0.12);
}

.header {
    background: var(--pearl-white) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(141, 13, 24, 0.08);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.045);
}

.header.scrolled {
    background: rgba(250, 247, 241, 0.97) !important;
}

.logo,
.desktop-nav a {
    color: #090909;
}

.logo-heart {
    color: var(--red);
}
.hero-content {
    position: relative;
    z-index: 5;

    width: min(1180px, 96vw);
    min-height: 760px;

    padding: 90px 120px 80px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 243, 236, 0.94)
        );

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 50%;

    box-shadow:
        0 28px 80px rgba(40,25,20,.14),
        inset 0 0 45px rgba(255,255,255,.78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-content::before {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(141,13,24,.10);

    border-radius: 50%;

    pointer-events: none;
}

.hero-content > * {
    position: relative;
    z-index: 2;
}

.hero-content .eyebrow {
    color: var(--red) !important;

    font-weight: 700;
}

.hero-intro,
.hero-location,
.hero-content h1,
.hero-date,
.hero-date span,
.hero-date strong {
    color: #090909 !important;
}

.hero-names {
    color: #000;
}

.hero-ampersand {
    color: var(--red);
}


.hero-content .primary-button {
    background:
        linear-gradient(
            135deg,
            #9d101b,
            #7a0912
        );

    color: #fff;

    border: 1px solid rgba(255,255,255,.45);

    box-shadow:
        0 12px 28px rgba(141,13,24,.18);
}

.hero-content .primary-button:hover {
    background: #090909;
    color: white;
}

.hero-date span {
    border-top-color: rgba(9, 9, 9, 0.72);
    border-bottom-color: rgba(9, 9, 9, 0.72);
}

@media (max-width: 850px) {

    .header {
        background:
            rgba(250, 247, 241, 0.97) !important;
    }

    .hero-content {
        width: 88%;

        padding:
            42px 28px 38px;

        border-radius: 46% 46% 44% 44%
            /
            48% 48% 44% 44%;
    }

    .hero-content::before {
        inset: 7px;

        border-radius:
            46% 46% 44% 44%
            /
            48% 48% 44% 44%;
    }

}

@media (max-width: 500px) {

    .hero-content {
        width: 90%;

        padding:
            36px 20px 34px;

        background:
            rgba(250, 247, 241, 0.94);

        border-radius:
            45% 45% 42% 42%
            /
            46% 46% 42% 42%;
    }

    .hero-content::before {
        display: none;
    }

}

@media (max-width: 850px) {

    .hero-content {
        width: 98vw;
        min-height: 760px;

        padding: 64px 26px 54px;

        border-radius:
            48% 48% 46% 46%
            /
            52% 52% 48% 48%;
    }

}

.timeline-lily-right {
    position: absolute;

    right: -20px;
    left: auto;

    top: 120px;

    width: 320px;

    opacity: 0.22;

    pointer-events: none;

    z-index: 1;

    transform: scaleX(-1);
}

.timeline-lily-right img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

.story-content {
    position: relative;
    padding: 46px 52px;
    border: 1px solid rgba(141, 13, 24, 0.28);
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgb(255, 255, 255),
        rgba(250, 245, 238, 0.827)
    );
    box-shadow:
        0 20px 50px rgba(50, 30, 20, 0.08),
        inset 0 0 24px rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.photo-oval {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    background: #fff;

    border-radius:
        50% 50% 46% 46%
        /
        58% 58% 42% 42%;

    z-index: 2;
}

.photo-oval img {
    position: absolute;

    width: 165%;
    height: 165%;

    left: 50%;
    bottom: -22%;

    transform: translateX(-50%);

    object-fit: contain;
    object-position: center bottom;

    max-width: none;
}

@media (max-width: 600px) {

    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content {
        width: 92vw;
        min-height: auto;

        padding:
            52px 18px 58px;

        overflow: hidden;
    }

    .hero-content .eyebrow {
        font-size: 9px;
        letter-spacing: 3px;

        white-space: nowrap;
    }

    .hero-intro {
        font-size: 15px;

        line-height: 1.35;

        margin-top: 16px;
    }

    .hero-names {
        width: 100%;

        flex-direction: column;

        gap: 0;

        margin:
            22px 0 8px;

        font-size: clamp(62px, 20vw, 88px);

        line-height: .78;
    }

    .hero-ampersand {
        margin:
            -6px 0 -3px;

        font-size: 48px;

        line-height: 1;
    }

    .hero h1 {
        font-size: 11px;

        letter-spacing: 4px;

        line-height: 1.5;

        white-space: nowrap;
    }

    .hero-date {
        width: 100%;

        gap: 12px;

        margin-top: 28px;
    }

    .hero-date span {
        width: 92px;

        padding: 7px 0;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .hero-date strong {
        font-size: 48px;

        line-height: 1;
    }

    .hero-location {
        width: 100%;
        max-width: 100%;

        margin-top: 17px;

        padding: 0 8px;

        font-size: 16px;

        line-height: 1.35;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-location:last-of-type {
        font-size: 14px;
        line-height: 1.45;
    }

    .primary-button {
        min-width: 150px;
        height: 48px;

        margin-top: 30px;
        border-radius: 10px;
    }

}

.church-palette {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 16px;

    margin-top: 38px;

    flex-wrap: wrap;
}

.church-palette .palette {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 4px solid #fff;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.12);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.church-palette .palette:hover {
    transform: translateY(-4px) scale(1.06);

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.16);
}

.palette.forest {
    background: #31483A;
}

.palette.sage {
    background: #8C9A7E;
}

.palette.champagne {
    background: #D8C6A3;
}

.palette.dusty-rose {
    background: #C99A9A;
}

.palette.taupe {
    background: #9A8878;
}

.palette.ivory {
    background: #F6F1E8;

    border:
        1px solid rgba(0,0,0,.12);

    box-shadow:
        0 5px 18px rgba(0,0,0,.10);
}

@media (max-width: 500px) {

    .church-palette {
        gap: 11px;
        padding: 0 15px;
    }

    .church-palette .palette {
        width: 42px;
        height: 42px;

        border-width: 3px;
    }

}

.photo-oval img {
    position: absolute;

    width: 120%;
    height: 120%;

    left: 50%;
    bottom: -6%;

    transform: translateX(-50%);

    object-fit: contain;
    object-position: center bottom;

    max-width: none;
}

@media (max-width: 600px) {

    .hero-content .eyebrow {
        width: 82%;
        max-width: 320px;

        margin-left: auto;
        margin-right: auto;

        font-size: 8px;
        letter-spacing: 2.6px;
        line-height: 1.5;

        text-align: center;

        white-space: normal;
    }

    .hero-intro {
        width: 84%;
        max-width: 330px;

        margin-left: auto;
        margin-right: auto;
        margin-top: 16px;

        font-size: 14px;
        line-height: 1.45;

        text-align: center;
    }

    .hero-content {
        padding-top: 68px;
        padding-left: 24px;
        padding-right: 24px;
    }

}

@media (max-width: 390px) {

    .hero-content .eyebrow {
        width: 78%;

        font-size: 7.5px;
        letter-spacing: 2.2px;
    }

    .hero-intro {
        width: 80%;
        font-size: 13.5px;
    }

}

.hidden {
    display: none !important;
}

.slideshow {
    position: relative;
    overflow: hidden;
}

.slideshow-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    animation: photoFade .65s ease;
}

@keyframes photoFade {

    from {
        opacity: 0;
        transform: scale(1.015);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.clickable-address a {
    color: var(--red) !important;
    font-size: 13px;
    line-height: 1.6;

    text-decoration: none;
    font-family: var(--serif);

    display: inline-block;
}

.clickable-address a:hover {
    color: var(--bright-red) !important;
    text-decoration: underline;
}

.ceremony-description {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.6;
    color: #111;
}

.address-link {
    color: var(--red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.address-link:hover {
    color: var(--bright-red);
    text-decoration: underline;
}

.ceremony-address-link {
    display: inline-block;
    margin-top: 10px;
}

.primary-button {
    padding-left: 34px;
    padding-right: 34px;
}


@media (max-width: 600px) {
    .primary-button {
        padding: 12px 24px;
    }
}

.harvest-palette {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 32px;
}

.harvest-palette .palette {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 3px solid rgba(255, 255, 255, .92);

    box-shadow:
        0 5px 16px rgba(0, 0, 0, .13);
}

.palette.burgundy {
    background: #7D1723;
}

.palette.rust {
    background: #A94F2F;
}

.palette.terracotta {
    background: #C56F52;
}

.palette.mustard {
    background: #C79A38;
}

.palette.olive {
    background: #737044;
}

.palette.warm-brown {
    background: #795746;
}

.palette.harvest-cream {
    background: #F2E5CE;

    border:
        1px solid rgba(0, 0, 0, .14);
}

.palette-caption {
    margin-top: 22px;

    font-family: var(--sans);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #222;
}

.harvest-palette {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 32px;
}

.harvest-palette .palette {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 3px solid rgba(255, 255, 255, .92);

    box-shadow:
        0 5px 16px rgba(0, 0, 0, .13);
}

.palette.burgundy {
    background: #7D1723;
}

.palette.rust {
    background: #A94F2F;
}

.palette.terracotta {
    background: #C56F52;
}

.palette.mustard {
    background: #C79A38;
}

.palette.olive {
    background: #737044;
}

.palette.warm-brown {
    background: #795746;
}

.palette.harvest-cream {
    background: #F2E5CE;

    border:
        1px solid rgba(0, 0, 0, .14);
}

.palette-caption {
    margin-top: 22px;

    font-family: var(--sans);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #222;
}

.quote-subtitle {
    max-width: 560px;

    margin:
        18px auto 0;

    font-family: var(--sans);

    font-size: 15px;
    font-weight: 500;

    line-height: 1.7;

    color: #fff;
}

.hero-person {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-first-name {
    font-family: var(--script);
}

.hero-last-name {
    margin-top: 4px;

    font-family: var(--sans);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--red);
}

@media (max-width: 600px) {

    .hero-last-name {
        margin-top: 6px;

        font-size: 9px;
        font-weight: 700;

        letter-spacing: 3px;
    }

}

body {
    color: #111;
}

p,
.section-description,
.hero-intro,
.hero-location,
.detail-card p,
.timeline-content p,
.story-content p,
.dress-description,
.faq-answer p,
.ceremony-description {
    color: #191919 !important;

    font-family: var(--sans);

    font-weight: 500 !important;

    line-height: 1.7;

    opacity: 1 !important;
}

.eyebrow,
.section-eyebrow {
    font-family: var(--sans);

    font-weight: 700 !important;

    letter-spacing: 3px;

    color: var(--red) !important;

    opacity: 1 !important;
}

.detail-card h3,
.timeline-content h3,
.faq-question {
    font-weight: 600;
}

.venue-name {
    font-weight: 600 !important;

    color: #111 !important;
}

.address-link,
.text-link,
.directions-link {
    color: var(--red) !important;

    font-family: var(--sans);

    font-size: 13px;

    font-weight: 700;

    line-height: 1.5;

    text-decoration: none;
}

.address-link:hover,
.text-link:hover,
.directions-link:hover {
    color: var(--bright-red) !important;

    text-decoration: underline;
}

.quote-section p,
.quote-section blockquote,
.photos-section p,
.photos-section h2,
.rsvp-section p,
.final-section p {
    color: #fff !important;
}

@media (max-width: 600px) {

    p,
    .section-description,
    .hero-intro,
    .hero-location,
    .detail-card p,
    .timeline-content p,
    .story-content p,
    .dress-description,
    .faq-answer p {
        font-size: 14px;
        font-weight: 500 !important;
        line-height: 1.65;
    }

    .section-eyebrow,
    .eyebrow {
        font-weight: 700 !important;
    }

    .harvest-palette .palette {
        width: 42px;
        height: 42px;
    }

}

.hero-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    margin: 22px 0 12px;
}

.hero-person {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-first-name {
    display: block;

    font-family: var(--script);
    font-size: clamp(80px, 9vw, 145px);
    line-height: .85;

    color: #000;
}

.hero-last-name {
    display: block;

    margin-top: 10px;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--red);

    line-height: 1;
}

.hero-ampersand {
    font-family: var(--script);
    font-size: 58px;
    line-height: 1;

    color: var(--red);
}

@media (max-width: 600px) {

    .hero-names {
        flex-direction: column;
        gap: 4px;

        margin: 22px 0 14px;
    }

    .hero-first-name {
        font-size: clamp(64px, 19vw, 88px);
        line-height: .8;
    }

    .hero-last-name {
        margin-top: 8px;

        font-size: 10px;
        font-weight: 700;

        letter-spacing: 3px;
    }

    .hero-ampersand {
        margin: 2px 0;
        font-size: 44px;
    }
}

.hero-person {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    position: relative;

    flex: 0 0 auto;

    text-align: center;
}

@media (max-width: 600px) {

    .hero-names {
        flex-direction: column;

        gap: 5px;

        margin: 22px 0 18px;
    }

    .hero-first-name {
        font-size: clamp(64px, 19vw, 88px);
        line-height: .8;
    }

    .hero-last-name {
        margin-top: 8px;

        font-size: 10px;

        letter-spacing: 3px;
    }

    .hero-ampersand {
        margin: 4px 0;

        font-size: 44px;
    }

}

.footer-love {
  color: #ffffff !important;
}

.married {
    font-size: 20px !important;
    font-weight: bold !important;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.footer-logo span {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.logo-favicon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.footer-love {
  margin-top: 12px;
  color: #ffffff !important;
}