
:root {
            --black: #080807;
            --black-soft: #0e0d0a;
            --black-card: #12110d;
            --brown-black: #17140f;
            --gold: #9b8960;
            --gold-light: #c2b18a;
            --gold-dark: #6d5c3c;
            --cream: #eee8da;
            --cream-soft: #d8d0c0;
            --white: #ffffff;
            --muted: #8f8a80;
            --line: rgba(185, 165, 120, 0.28);
            --serif: "Cormorant Garamond", Georgia, serif;
            --sans: "Montserrat", Arial, sans-serif;
            --max-width: 1180px;
            --transition: 350ms ease;
        }

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

        html {
            scroll-behavior: smooth;
            height: 100%;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100dvh;
            background: var(--black);
            color: var(--cream);
            font-family: var(--sans);
            font-weight: 300;
            line-height: 1.7;
            overflow-x: hidden;
        }

        main {
            flex: 1;
        }

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

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

        button {
            cursor: pointer;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ::selection {
            background: var(--gold);
            color: var(--black);
        }

        /* =====================================================
           SCROLLBAR
           ===================================================== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--black);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
        }

        /* =====================================================
           LOADER
           ===================================================== */
        .loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--black);
            transition: opacity 800ms ease, visibility 800ms ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-inner {
            text-align: center;
        }

        .loader-monogram {
            font-family: var(--serif);
            font-size: 58px;
            color: var(--gold);
            letter-spacing: 8px;
        }

        .loader-line {
            width: 80px;
            height: 1px;
            margin: 15px auto;
            background: var(--gold);
        }

        .loader-text {
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* =====================================================
           CONTAINER & SECTIONS
           ===================================================== */
        .container {
            width: min(calc(100% - 40px), var(--max-width));
            margin: 0 auto;
        }

        .section {
            position: relative;
            padding: 110px 0;
        }

        .section-dark {
            background: var(--black);
        }

        .section-soft {
            background: var(--black-soft);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .eyebrow {
            display: inline-block;
            margin-bottom: 12px;
            font-family: var(--sans);
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .section-title h2 {
            font-family: var(--serif);
            font-size: clamp(38px, 5vw, 64px);
            line-height: 1;
            font-weight: 400;
            color: var(--cream);
        }

        .section-title p {
            max-width: 600px;
            margin: 20px auto 0;
            color: var(--muted);
            font-size: 13px;
        }

        .ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: 18px 0;
            color: var(--gold);
        }

        .ornament::before,
        .ornament::after {
            content: "";
            width: 55px;
            height: 1px;
            background: var(--line);
        }

        .ornament-symbol {
            font-size: 18px;
            line-height: 1;
            transform: rotate(180deg);
        }

        /* =====================================================
           NAV
           ===================================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 25px 0;
            background: rgba(8, 8, 7, 0.72);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .nav-inner {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            justify-content:space-between;
            max-width: 1250px;
            width: calc(100% - 40px);
            margin: 0 auto;
        }

        .nav-logo {
            display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 90px;
    height: 70px;
            
        }

        .nav-logo-main {
            font-family: var(--serif);
            font-size: 26px;
            letter-spacing: 5px;
            line-height: 1;
        }

        .nav-mono {
    display: block;
    width: 72px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
}
        .nav-logo-date {
            margin-top: 4px;
            font-size: 10px;
            letter-spacing: 3px;
            color: var(--white);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;


        }

        .nav-links a {
            position: relative;
            font-size: 12px;
            letter-spacing: 1.7px;
            text-transform: uppercase;
            color: rgba(255,255,255,.78);
            transition: color var(--transition);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -7px;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width var(--transition);
        }

        .nav-links a:hover {
            color: var(--gold-light);
        }

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

        .mobile-menu-button {
            display: none;
            border: 0;
            background: transparent;
            color: var(--cream);
            font-size: 25px;
        }

        /* =====================================================
           HERO
           ===================================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #090908;
            background-position: center 95%;
            
        }

        .hero-image {
            position: absolute;
            inset: 0;
           background: linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            rgba(0,0,0,.50) 50%,
            rgba(0,0,0,.88)
            ), url("images/Lmn129.jpg");
            background-size: 110% auto;
            background-position:55% 120%;
            background-repeat: no-repeat;
            filter: saturate(.85);
        }

        .hero-image::after {
            content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 55%,
            rgba(155,137,96,.10) 0%,
            rgba(0,0,0,0) 38%
        ),
        radial-gradient(
            circle at center,
            transparent 20%,
            rgba(0,0,0,.45) 100%
        );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 900px;
            padding: 120px 20px 80px;
            text-align: center;
        }

        .hero-pretitle {
            font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 3vw, 30px);
    color: var(--cream);
    margin-bottom: 5px;
    text-shadow: 0 3px 12px rgba(0,0,0,.8);
        }

        .hero-title {
            font-family: var(--serif);
            font-size: clamp(65px, 11vw, 125px);
            font-weight: 300;
            line-height: .78;
            letter-spacing: -2px;
            color: var(--cream);
            text-shadow: 0 3px 12px rgba(0,0,0,.75),
                            0 8px 30px rgba(0,0,0,.55);
        }

        .hero-date {
            margin-top: 28px;
    font-size: 14px;
    letter-spacing: 7px;
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(0,0,0,.9);
        }

        .hero-location {
            margin-top: 10px;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 35px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
            min-height: 43px;
            padding: 11px 20px;
            border: 1px solid var(--gold-dark);
            background: rgba(0,0,0,.35);
            color: var(--cream);
            font-size: 8px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all var(--transition);
        }

        .btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--black);
        }

        .btn-filled {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }

        .btn-filled:hover {
            background: var(--gold-light);
        }

        .hero-scroll {
            position: absolute;
            left: 50%;
            bottom: 25px;
            z-index: 3;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 7px;
            letter-spacing: 3px;
            color: rgba(255,255,255,.55);
        }

        .hero-scroll-line {
            width: 1px;
            height: 38px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }

        /* =====================================================
           COUNTDOWN
           ===================================================== */
        .countdown-section {
            padding: 50px 20px;
            background: #0b0a08;
            border-top: 1px solid rgba(155,137,96,.08);
            border-bottom: 1px solid rgba(155,137,96,.08);
        }

        .countdown-label {
            text-align: center;
            margin-bottom: 22px;
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(20px, 7vw, 80px);
        }

        .countdown-item {
            min-width: 60px;
            text-align: center;
        }

        .countdown-number {
            font-family: var(--serif);
            font-size: clamp(30px, 5vw, 48px);
            line-height: 1;
            color: var(--cream);
        }

        .countdown-name {
            margin-top: 5px;
            font-size: 7px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* =====================================================
           STORY
           ===================================================== */
      

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    width: 100%;
}

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

.story-text h3 {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 58px);
    line-height: .95;
    font-weight: 400;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 18px;
    color: #aaa397;
    font-size: 12px;
}

.story-image {
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: var(--black-card);
    border: 1px solid rgba(155,137,96,.2);
}

.story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile */
@media (max-width: 700px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .story-image {
        height: 420px;
    }
}

        .photo-placeholder {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            overflow: hidden;
            background: radial-gradient(circle at 30% 20%, rgba(155,137,96,.14), transparent 35%), linear-gradient(145deg, #1a1812, #090908);
            color: var(--gold);
        }

        .photo-placeholder::before {
            content: "PHOTO";
            position: absolute;
            font-family: var(--serif);
            font-size: 42px;
            letter-spacing: 8px;
            opacity: .22;
        }

        /* =====================================================
           TIMELINE
           ===================================================== */
        .timeline {
            margin-top: 80px;
            font-size: 20px;
        }

        .timeline-title {
            margin-bottom: 35px;
            text-align: center;
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .timeline-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            position: relative;
            font-size: 12px;
            margin-bottom: 18px;
    color: #aaa397;
    
        }

        .timeline-items::before {
            content: "";
            position: absolute;
            left: 10%;
            right: 10%;
            top: 20px;
            height: 1px;
            background: var(--line);
        }

        .timeline-item {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .timeline-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            border: 1px solid var(--gold-dark);
            border-radius: 50%;
            background: var(--black);
            color: var(--gold);
            font-family: var(--serif);
            font-size: 17px;
        }

        .timeline-item h4 {
            font-family: var(--serif);
            font-size: 20px;
            font-weight: 400;
        }

        .timeline-item span {
              display: block;
    margin-top: 5px;
    font-size: 12px !important;
    color: var(--muted);
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif !important;
        }

        /* =====================================================
           QUOTE
           ===================================================== */
        .quote-section {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #0b0a08;
        }

        .quote-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.25), rgba(0,0,0,.75)), url("assets/quote.jpg");
            background-size: cover;
            background-position: center;
            opacity: .85;
        }

        .quote-content {
            position: relative;
            z-index: 2;
            max-width: 580px;
            padding: 40px;
            text-align: center;
        }

        .quote-mark {
            font-family: Georgia, serif;
            font-size: 70px;
            line-height: .5;
            color: var(--gold);
            transform: translateY(-60px);
        }

        .quote-content blockquote {
            margin: 25px 0;
            font-family: var(--serif);
            font-size: clamp(30px, 5vw, 50px);
            line-height: 1.05;
            font-weight: 300;
        }

        .quote-author {
            font-size: 8px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-light);
        }

        /* =====================================================
           WEDDING DETAILS & SCHEDULE
           ===================================================== */
        .details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
        }

        .detail-card {
           padding: 45px 30px;
    text-align: center;
    background: #12110d;
    display: flex;
    flex-direction: column;
    align-items: center;
        }

        .detail-icon {
            font-size: 26px;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .detail-card h3 {
            font-family: var(--serif);
            font-size: 27px;
            font-weight: 400;
        }

        .detail-card .detail-time {
            margin: 12px 0;
            font-size: 9px;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
        }

        .detail-card p {
            font-size: 11px;
            color: var(--muted);
        }

        .colors-section {
    padding: 120px 0;
    text-align: center;
}

.colors-intro {
    margin-top: 15px;
}

.colors-content {
    margin-top: -30px;
}

.colors-monogram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 55px;
}

.colors-monogram img {
    width: 150px;
    height: auto;
    display: block;
}

.color-palette-large {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
    transform: translateY(-40px);
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.color-swatch {
   display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.color-name {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
}
        .swatch {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1); 
        }

        .guest-colors {
            width: 100%;
            margin-top: 22px;
            overflow: hidden;
            padding-left: 10px;
            margin-bottom: 20px;
        }

        .guest-colors img {
            display: block;
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: contain;
            border-radius: 4px;
            padding-left: 10px;
            margin-bottom: 20px;
        }

        .schedule {
            max-width: 780px;
            margin: 0 auto;
        }

        .schedule-row {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 35px;
            padding: 25px 0;
            border-bottom: 1px solid var(--line);
        }

        .schedule-time {
            font-family: var(--serif);
            font-size: 25px;
            color: var(--gold-light);
        }

        .schedule-info h3 {
            font-family: var(--serif);
            font-size: 26px;
            font-weight: 400;
        }

        .schedule-info p {
            margin-top: 5px;
            color: var(--muted);
            font-size: 11px;
        }

        /* =====================================================
           VIDEO
           ===================================================== */
        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #0a0907;
            border: 1px solid var(--line);
        }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-placeholder-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(25,22,16,.95), rgba(5,5,4,.96));
            cursor: pointer;
            z-index: 2;
            transition: opacity 300ms ease, visibility 300ms ease;
        }

        .video-placeholder-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .video-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gold);
            border-radius: 50%;
            color: var(--gold);
            font-size: 22px;
            margin-bottom: 20px;
        }

        .video-placeholder-overlay h3 {
            font-family: var(--serif);
            font-size: 34px;
            font-weight: 400;
        }

        .video-placeholder-overlay p {
            margin-top: 5px;
            font-size: 8px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
        }

        /* =====================================================
           GALLERY & ENTOURAGE
           ===================================================== */
        .gallery {
            columns: 3 280px;
            column-gap: 14px;
        }

        .gallery-item {
            position: relative;
            margin-bottom: 14px;
            overflow: hidden;
            break-inside: avoid;
            background: var(--black-card);
        }

        .gallery-item img {
            transition: transform 700ms ease;
        }

        .gallery-item:hover img {
            transform: scale(1.04);
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,.05);
            pointer-events: none;
        }

        .people-group {
            margin-bottom: 80px;
        }

        .people-title {
            margin-bottom: 30px;
            text-align: center;
            font-family: var(--serif);
            font-size: 34px;
            font-weight: 400;
        }

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

        .person {
            text-align: center;
        }

        .person-photo {
            width: 150px;
            height: 180px;
            margin: 0 auto 15px;
            overflow: hidden;
            border: 1px solid var(--line);
            background: var(--black-card);
        }

        .person-photo img {
            height: 100%;
            object-fit: cover;
        }

        .person h4 {
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 400;
        }

        .person span {
            display: block;
            margin-top: 2px;
            font-size: 7px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
        }

        /* =====================================================
           TRAVEL & MAP
           ===================================================== */
        .travel-grid {
           
            grid-template-columns: 1fr 1fr;
            gap: 50px;
             display: flex;
    justify-content: center;
    width: 100%;
        }

        .travel-card {
            padding: 40px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.015);
            width: 100%;
    max-width: 900px;
    text-align: center;
        }

        .travel-card h3 {
            font-family: var(--serif);
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .travel-card p {
            color: var(--muted);
            font-size: 11px;
            margin-bottom: 12px;
        }

        .map-wrapper {
            width: 100%;
            height: 450px;
            border: 1px solid var(--line);
            overflow: hidden;
        }

        #map {
            width: 100%;
            height: 100%;
        }

        .leaflet-control-attribution {
            font-size: 8px;
        }

        /* =====================================================
           FAQ
           ===================================================== */
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

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

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 0;
            border: 0;
            background: transparent;
            color: var(--cream);
            text-align: left;
            font-family: var(--serif);
            font-size: 23px;
        }

        .faq-plus {
            color: var(--gold);
            font-size: 25px;
            transition: transform var(--transition);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 500ms ease;
        }

        .faq-answer p {
            padding: 0 40px 22px 0;
            color: var(--muted);
            font-size: 11px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

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

        /* =====================================================
           RSVP
           ===================================================== */
        .rsvp-section {
            background: #0a0907;
        }

        .rsvp-box {
            max-width: 750px;
            margin: 0 auto;
            padding: 55px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.012);
        }

        .rsvp-intro {
            text-align: center;
            margin-bottom: 35px;
        }

        .rsvp-intro h3 {
            font-family: var(--serif);
            font-size: 42px;
            font-weight: 400;
        }

        .rsvp-intro p {
            color: var(--muted);
            font-size: 11px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 7px;
            font-size: 7px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 13px 14px;
            border: 1px solid rgba(155,137,96,.28);
            outline: none;
            background: #0b0a08;
            color: var(--cream);
            font-size: 11px;
            transition: border-color var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            display: flex;
            justify-content: center;
            margin-top: 25px;
        }

        .rsvp-message {
            margin-top: 20px;
            text-align: center;
            font-size: 10px;
            color: var(--gold-light);
        }

        
        

        footer {
            padding: 90px 20px 120px;
            text-align: center;
            background: #060605;
        }

        .footer-names {
            font-family: var(--serif);
            font-size: clamp(50px, 8vw, 90px);
            font-weight: 300;
        }

        .footer-date {
            margin-top: 10px;
            font-size: 8px;
            letter-spacing: 4px;
            color: var(--gold);
        }

        .footer-credit {
            margin-top: 50px;
            font-size: 7px;
            letter-spacing: 2px;
            color: #555;
            text-transform: uppercase;
        }

        .mobile-bottom-nav {
            display: none;
        }

        /* =====================================================
           REVEAL ANIMATIONS
           ===================================================== */
        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 900ms ease, transform 900ms ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* =====================================================
           RESPONSIVE — TABLET & MOBILE
           ===================================================== */
        @media (max-width: 850px) {
            .nav-links { gap: 16px; }
            .nav-links a { font-size: 7px; }
            
          
            .timeline-items { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .timeline-items::before { display: none; }
            .details-grid { grid-template-columns: 1fr; }
            .people-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 700px) {
            body { padding-bottom: 68px; }
            .container { width: min(calc(100% - 28px), var(--max-width)); }
            .section { padding: 80px 0; }
            .navbar { padding: 18px 0; }
            .nav-inner { width: calc(100% - 28px); }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(82vw, 320px);
                height: 100vh;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                gap: 24px;
                padding: 40px;
                background: #0a0907;
                border-left: 1px solid var(--line);
                transition: right 400ms ease;
            }
            .nav-links.open { right: 0; }
            .nav-links a { font-size: 10px; }
            .mobile-menu-button { display: block; position: relative; z-index: 1001; }
            .hero-title { font-size: clamp(58px, 17vw, 88px); }
            .hero-date { font-size: 11px; letter-spacing: 4px; }
            .hero-actions { flex-direction: column; }
            .btn { width: 150px; }
            .countdown { gap: 15px; }
            .countdown-item { min-width: 50px; }
            .countdown-number { font-size: 29px; }
            .story-image { min-height: 420px; }
            .timeline-items { grid-template-columns: 1fr 1fr; }
            .timeline-item h4 { font-size: 18px; }
            .quote-section { min-height: 500px; }
            .details-grid, .travel-grid, .form-grid { grid-template-columns: 1fr; }
            .schedule-row { grid-template-columns: 70px 1fr; gap: 18px; }
            .schedule-time { font-size: 20px; }
            .schedule-info h3 { font-size: 23px; }
            .people-grid { grid-template-columns: 1fr 1fr; gap: 28px 15px; }
            .person-photo { width: 120px; height: 145px; }
            .rsvp-box { padding: 30px 20px; }
            .form-group.full { grid-column: auto; }
            .map-wrapper { height: 360px; }
            .qr-card { padding: 25px 15px; }
            #qrcode { width: 190px; height: 190px; }
            .guest-colors { margin-top: 18px; }
            .guest-colors img { width: 100%; }
            
            .mobile-bottom-nav {
                position: fixed;
                left: 0;
                bottom: 0;
                z-index: 5000;
                width: 100%;
                height: 68px;
                display: flex;
                align-items: center;
                justify-content: space-around;
                background: rgba(8,8,7,.96);
                border-top: 1px solid var(--line);
                backdrop-filter: blur(15px);
            }
            .mobile-bottom-nav a {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 4px;
                min-width: 45px;
                color: #aaa;
                font-size: 7px;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            .mobile-bottom-nav span:first-child {
                font-size: 17px;
                color: var(--gold);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation: none !important;
                transition: none !important;
            }
        }
@media (max-width: 768px) {

    .colors-section {
        overflow: hidden;
    }

    .colors-content {
        width: 100%;
    }

    .dress {
        width: 108%;
    margin-left: -4%;
    }

    

    .color-item {
        flex: 1;
        min-width: 0;
        text-align: center;
    }

    .color-swatch {
        width: 52px;
        height: 52px;
        display: block;
        margin: 0 auto 18px;
        border-radius: 50%;
    }

    .color-name {
        font-size: 9px;
        letter-spacing: 1.2px;
        white-space: nowrap;
    }

}

/* =====================================================
   RSVP NAME AUTOCOMPLETE
   ===================================================== */

.name-input-wrapper {
    position: relative;
    width: 100%;
}

.name-input-wrapper input {
    width: 100%;
}

.suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 9999;

    background: #0f0e0c;
    border: 1px solid rgba(155, 137, 96, 0.35);
    border-radius: 4px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

    max-height: 240px;
    overflow-y: auto;

    display: none;
}

.suggestion-item {
    padding: 14px 16px;

    color: var(--cream);
    font-size: 12px;
    line-height: 1.4;

    cursor: pointer;

    border-bottom: 1px solid rgba(155, 137, 96, 0.12);

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(155, 137, 96, 0.12);
    color: var(--gold-light);
}
@media (max-width: 700px) {
    .nav-inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

#findGuestButton {
    display:block;
    margin: 22px auto 0;
    
}
/* STORY DESKTOP FIX */
.story-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}

.story-text {
    width: 100% !important;
}

.story-image {
    width: 100% !important;
    height: 600px !important;
}

.story-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


/* =========================================
   OUR STORY - DESKTOP SIDE BY SIDE
   ========================================= */

.story-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 70px !important;
    width: 100% !important;
}

.story-text {
    flex: 0 0 40% !important;
    max-width: 470px !important;
}

.story-image {
    flex: 1 1 60% !important;
    width: auto !important;
    height: 620px !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.story-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Mobile */
@media (max-width: 700px) {
    .story-grid {
        flex-direction: column !important;
        gap: 45px !important;
    }

    .story-text {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .story-image {
        flex: none !important;
        width: 100% !important;
        height: 420px !important;
    }
}

.eyebrow {
    font-size: 20px;
    letter-spacing: 6px;
}

#story > .container > .section-title {
    margin-bottom: 35px;
}

#story > .container > .section-title .eyebrow {
    font-size: 13px;
    letter-spacing: 5px;
}

footer {
    min-height: 500px;
    padding: 110px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.50),
            rgba(0,0,0,.75)
        ),
        url("images/LMN-165.jpg");

    background-size: cover;
    background-position: center;
}
footer .footer-names,
footer .ornament,
footer .footer-date,
footer .footer-credit {
    position: relative;
    z-index: 2;
}

footer .footer-names {
    color: var(--cream);
    text-shadow: 0 3px 15px rgba(0,0,0,.8);
    font-size: clamp(60px, 9vw, 100px);
}

footer .footer-date {
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
    font-size: 10px;
    letter-spacing: 5px;
}

footer .footer-credit {
    color: rgba(255,255,255,.75);
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
    font-size: 9px;
    letter-spacing: 2.5px;
}

@media (max-width: 768px) {
    .hero-image {
         background-size: auto 115%;
        background-position: 50% 60%;
    }   
     

     .color-swatch {    
        width: 14px;
        height: 14px;
        margin: 0 auto 14px;
    }

    .color-palette-large {
        gap: 6px;
    }

    .color-name {
        font-size: 8px;
        letter-spacing: 1px;
    }


}

/* Entourage acc */

.accordion-group {
    border-top: 1px solid rgba(154, 124, 69, 0.35);
}

.accordion-group:last-child {
    border-bottom: 1px solid rgba(154, 124, 69, 0.35);
}

.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 10px;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.accordion-toggle:hover {
    opacity: 0.8;
}

.accordion-icon {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s ease;
}

.accordion-content > .people-grid {
    overflow: hidden;
    min-height: 0;
    padding-bottom: 0;
    transition: padding 0.45s ease;
}

.accordion-group.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-group.active .accordion-content > .people-grid {
    padding-bottom: 35px;
}

.accordion-group.active .accordion-icon {
    transform: rotate(45deg);
}





/* Wedding details: ceremony + reception only */
#details .details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    background: var(--line);
    border: 1px solid var(--line);
}

#details .detail-card {
    min-height: 275px;
    justify-content: center;
}

/* Standalone dress-code / colors section */
.colors-section {
    padding: 130px 0;
    background: var(--black);
}

.colors-section .section-title {
    margin-bottom: 0;
}

.colors-content {
    margin-top: 70px;
}

.color-palette-large {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.color-item {
    min-width: 120px;
    text-align: center;
}

.color-swatch {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.color-name {
    display: block;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-soft);
}

/* Entourage accordions */
#entourage .people-group {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(154,124,69,.35);
}

#entourage .accordion-toggle {
    min-height: 76px;
    padding: 22px 10px;
}

#entourage .accordion-toggle .people-title,
#entourage .accordion-toggle span:first-child {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}

#entourage .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s ease;
}

#entourage .accordion-content > .people-grid {
    min-height: 0;
    overflow: hidden;
    padding: 0 0 0;
    transition: padding .45s ease;
}

#entourage .accordion-group.active .accordion-content {
    grid-template-rows: 1fr;
}

#entourage .accordion-group.active .accordion-content > .people-grid {
    padding: 10px 0 35px;
}

#entourage .accordion-icon {
    color: var(--gold);
    font-size: 24px;
}

@media (max-width: 700px) {
    #details .details-grid {
        grid-template-columns: 1fr;
    }

    #details .detail-card {
        min-height: 230px;
    }

    .colors-section {
        padding: 90px 0;
    }

    .colors-content {
        margin-top: 50px;
    }

    .color-palette-large {
        gap: 22px 12px;
    }

    .color-swatch {
        width: 62px;
        height: 62px;
    }

    .color-item {
        min-width: 62px;
    }

    #entourage .accordion-toggle .people-title,
    #entourage .accordion-toggle span:first-child {
        font-size: 25px;
    }
}


.hero-names {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(80px, 10vw, 160px);
    font-weight: 400;
    letter-spacing: -3px;
    color: #f3eee3;
    line-height: 0.9;
    margin-bottom: 15px;
}

.loader-monogram {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}



    


.colors-section .section-title h2,
.colors-section .eyebrow,
.colors-section .colors-intro {
    color: #ffffff;
     font-size: 20px;
}

.colors-section .color-name {
    color: #fffffe;
    font-size: 9px;
}




/* Fluid global sizing */
html {
    font-size: 100%;
}

body {
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Fluid container: adapts continuously  */
.container {
    width: min(100% - clamp(28px, 5vw, 80px), var(--max-width));
}

/* Sections for between phones and large screens. */
.section {
    padding: clamp(70px, 8vw, 130px) 0;
}   

.section-title {
    margin-bottom: clamp(38px, 5vw, 60px);
}

.section-title h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
    overflow-wrap: break-word;
}

.section-title p {
    width: min(100%, 600px);
    font-size: clamp(12px, 1.15vw, 14px);
    line-height: 1.7;
}


.eyebrow {
    font-size: clamp(9px, 1.1vw, 13px);
    letter-spacing: clamp(2px, .55vw, 5px);
    line-height: 1.4;
}

/* Navigation */
.navbar {
    padding: clamp(14px, 2.5vw, 25px) 0;
}

.nav-inner {
    width: min(100% - clamp(28px, 5vw, 80px), 1250px);
}

.nav-logo {
    width: clamp(65px, 7vw, 90px);
    height: clamp(55px, 6vw, 70px);
}

.nav-mono {
    width: clamp(58px, 6vw, 72px);
    max-height: clamp(50px, 5vw, 62px);
}

.nav-links {
    gap: clamp(14px, 2.2vw, 30px);
}

.nav-links a {
    font-size: clamp(8px, .75vw, 12px);
    letter-spacing: clamp(1px, .13vw, 1.7px);
}

/* Hero typography — fluid on every screen width. */
.hero-content {
    max-width: min(900px, 100%);
    padding:
        clamp(100px, 13vw, 140px)
        clamp(16px, 4vw, 40px)
        clamp(70px, 8vw, 100px);
}

.hero-pretitle {
    font-size: clamp(18px, 3vw, 30px);
    line-height: 1.15;
}

.hero-title,
.hero-names {
    font-size: clamp(48px, 11vw, 125px);
    line-height: .88;
    letter-spacing: clamp(-2px, -.25vw, -3px);
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
}

.hero-date {
    font-size: clamp(10px, 1.1vw, 14px);
    letter-spacing: clamp(2px, .55vw, 7px);
    line-height: 1.4;
}

.hero-location {
    font-size: clamp(7px, .7vw, 9px);
    letter-spacing: clamp(1.5px, .25vw, 3px);
    line-height: 1.5;
}

.hero-actions {
    gap: clamp(8px, 1.2vw, 12px);
}

.btn {
    min-width: clamp(110px, 12vw, 150px);
    min-height: 43px;
    padding: 10px clamp(14px, 2vw, 20px);
    font-size: clamp(8px, .7vw, 10px);
    letter-spacing: clamp(1px, .18vw, 2px);
    white-space: nowrap;
}

/* Countdown */
.countdown-section {
    padding: clamp(38px, 5vw, 55px) clamp(14px, 4vw, 30px);
}

.countdown {
    gap: clamp(12px, 6vw, 80px);
    max-width: 760px;
    margin: 0 auto;
}

.countdown-item {
    min-width: clamp(44px, 7vw, 70px);
}

.countdown-number {
    font-size: clamp(27px, 5vw, 48px);
    font-family: "Montserrat", sans-serif;
    
}

.countdown-name {
    font-size: clamp(15px, .7vw, 8px);
    letter-spacing: clamp(1px, .2vw, 2px);
}

/* Story */
.story-grid {
    gap: clamp(30px, 5vw, 70px) !important;
}

.story-text {
    max-width: 470px !important;
}

.story-text h3 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: .98;
    overflow-wrap: break-word;
}

.story-text p {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.75;
}

.story-image {
    height: clamp(360px, 43vw, 620px) !important;
}

/* Timeline */
.timeline {
    margin-top: clamp(55px, 7vw, 80px);
}

.timeline-items {
    gap: clamp(25px, 4vw, 45px);
}

.timeline-item h4 {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.15;
    overflow-wrap: break-word;
}

.timeline-item span {
    font-size: clamp(7px, .7vw, 9px);
}

/* Quote */
.quote-section {
    min-height: clamp(430px, 55vw, 520px);
}

.quote-content {
    width: min(100%, 660px);
    padding: clamp(25px, 5vw, 50px);
}

.quote-content blockquote {
    font-size: clamp(27px, 5vw, 50px);
    line-height: 1.08;
    overflow-wrap: break-word;
}

/* Details */
.details-grid {
    width: 100%;
}

.detail-card {
    padding: clamp(32px, 4vw, 45px) clamp(20px, 3vw, 30px);
    min-width: 0;
}

.detail-card h3 {
    font-size: clamp(24px, 2.5vw, 27px);
    line-height: 1.15;
    overflow-wrap: break-word;
}

.detail-card p {
    font-size: clamp(10px, .95vw, 12px);
    line-height: 1.65;
    overflow-wrap: break-word;
}


.color-palette-large {
    gap: clamp(10px, 2.5vw, 28px);
     transform: translateY(30px);
}

.color-item {
    min-width: clamp(58px, 10vw, 120px);
    flex: 0 1 clamp(58px, 10vw, 120px);
}

.color-swatch {
    width: clamp(58px, 10vw, 120px);
    height: clamp(58px, 10vw, 120px);
}

.color-name {
    font-size: clamp(7px, .8vw, 10px) !important;
    letter-spacing: clamp(.7px, .16vw, 2px);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
}

/* Schedule */
.schedule {
    width: min(100%, 780px);
}

.schedule-row {
    grid-template-columns: clamp(65px, 10vw, 100px) minmax(0, 1fr);
    gap: clamp(14px, 3vw, 35px);
    padding: clamp(20px, 3vw, 25px) 0;
}

.schedule-time {
    font-size: clamp(18px, 2.5vw, 25px);
}

.schedule-info h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.15;
    overflow-wrap: break-word;
}

.schedule-info p {
    font-size: clamp(10px, .9vw, 12px);
    line-height: 1.6;
}

/* Gallery */
.gallery {
    columns: 3 240px;
    column-gap: clamp(8px, 1.5vw, 14px);
}

.gallery-item {
    margin-bottom: clamp(8px, 1.5vw, 14px);
}

/* Entourage */
.people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(15px, 2vw, 28px);
}

.people-title,
#entourage .accordion-toggle .people-title,
#entourage .accordion-toggle span:first-child {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.15;
    overflow-wrap: break-word;
}

.person-photo {
    width: clamp(105px, 12vw, 150px);
    height: clamp(130px, 14vw, 180px);
}

.person h4 {
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.15;
    overflow-wrap: break-word;
}

.person span {
    font-size: clamp(6px, .65vw, 8px);
    letter-spacing: clamp(1px, .18vw, 2px);
}

/* Travel / map */
.travel-card {
    padding: clamp(25px, 4vw, 40px);
}

.travel-card h3 {
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.15;
}

.travel-card p {
    font-size: clamp(10px, .9vw, 12px);
    line-height: 1.65;
}

.map-wrapper {
    height: clamp(300px, 45vw, 450px);
}

/* FAQ */
.faq-question {
    gap: 15px;
    font-size: clamp(19px, 2.3vw, 23px);
    line-height: 1.25;
}

.faq-answer p {
    padding-right: clamp(15px, 4vw, 40px);
    font-size: clamp(10px, .9vw, 12px);
    line-height: 1.7;
}

/* RSVP */
.rsvp-box {
    width: min(100%, 750px);
    padding: clamp(25px, 5vw, 55px);
}

.rsvp-intro h3 {
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.1;
}

.rsvp-intro p {
    font-size: clamp(10px, .9vw, 12px);
    line-height: 1.65;
}

.form-grid {
    gap: clamp(14px, 2vw, 20px);
}

.form-group label {
    font-size: clamp(7px, .65vw, 9px);
    letter-spacing: clamp(1px, .18vw, 2px);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: max(16px, 11px);
    line-height: 1.4;
}

/* QR */
.qr-card {
    width: min(100%, 430px);
    padding: clamp(25px, 4vw, 40px);
}

#qrcode {
    width: min(220px, 65vw);
    height: min(220px, 65vw);
}

.qr-card h3 {
    font-size: clamp(27px, 3vw, 32px);
    line-height: 1.15;
}

/* Footer */
footer {
    min-height: clamp(420px, 55vw, 550px);
    padding: clamp(80px, 10vw, 120px) clamp(16px, 4vw, 30px);
}

footer .footer-names {
    font-size: clamp(48px, 9vw, 100px);
    line-height: .9;
    max-width: 100%;
    overflow-wrap: break-word;
}

footer .footer-date {
    font-size: clamp(8px, .8vw, 10px);
    letter-spacing: clamp(2px, .45vw, 5px);
}

footer .footer-credit {
    font-size: clamp(7px, .7vw, 9px);
    letter-spacing: clamp(1px, .22vw, 2.5px);
}


@media (max-width: 430px) {
    .container {
        width: calc(100% - 24px);
    }

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

    .hero-title,
    .hero-names {
        font-size: clamp(44px, 16vw, 68px);
        letter-spacing: -1.5px;
    }

    .hero-date {
        letter-spacing: 2.5px;
    }

    .countdown {
        gap: clamp(7px, 3.5vw, 15px);
    }

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

    .countdown-number {
        font-size: clamp(24px, 8vw, 30px);
    }

    .timeline-items {
        gap: 25px 10px;
    }

    .schedule-row {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
    }

    .people-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .person-photo {
        width: min(120px, 80%);
        height: auto;
        aspect-ratio: 120 / 145;
    }

    .color-palette-large {
        gap: 18px 7px;
    }

    .color-item {
        flex-basis: clamp(52px, 17vw, 70px);
        min-width: 52px;
    }

    .color-swatch {
        width: clamp(52px, 17vw, 70px);
        height: clamp(52px, 17vw, 70px);
    }

    .color-name {
        font-size: 7px !important;
        letter-spacing: .7px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-plus {
        flex: 0 0 auto;
        font-size: 22px;
    }

    .rsvp-box {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mobile-bottom-nav a {
        font-size: 6.5px;
        letter-spacing: .7px;
    }
}


@media (max-width: 340px) {
    .hero-title,
    .hero-names {
        font-size: 43px;
    }

    .countdown {
        gap: 5px;
    }

    .countdown-number {
        font-size: 23px;
    }

    .countdown-name {
        font-size: 6px;
        letter-spacing: 1px;
    }

    .color-palette-large {
        gap: 14px 4px;
    }

    .color-item,
    .color-swatch {
        width: 48px;
        min-width: 48px;
    }

    .color-swatch {
        height: 48px;
    }

    .color-name {
        font-size: 6.5px !important;
    }
}


.story-grid > *,
.details-grid > *,
.people-grid > *,
.form-grid > *,
.travel-grid > *,
.schedule-row > * {
    min-width: 0;
}


@media (min-width: 701px) {
    .hero-image {
       
        background-position: 55% 170%;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding-top: 20px;
    }

    .nav-logo {
        justify-content: flex-start;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--cream);
        font-size: 28px;
        line-height: 1;
    }

    .hero {
        min-height: calc(100svh - 68px);
    }

    .hero-image {
       
        background-image:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, .42) 0%,
                rgba(0, 0, 0, .04) 48%,
                rgba(0, 0, 0, .16) 100%
            ),
            url("images/Lmn129.jpg");
        background-size: auto 185%;
        background-position: 50% 100%;
        filter: saturate(.95) contrast(1.03) brightness(1.18);
    }

    .hero-image::before,
    .hero-image::after {
        display: none;
    }

    .hero-content {
        min-height: calc(100svh - 68px);
        justify-content: center;
        padding: 112px 28px 72px;
    }

    .hero-names {
        font-size: clamp(48px, 13vw, 62px);
        line-height: .86;
        letter-spacing: -1.8px;
        margin-bottom: 13px;
    }

    .hero-pretitle {
        font-size: clamp(19px, 5.2vw, 24px);
    }

    .hero-date {
        margin-top: 25px;
        font-size: 10px;
        letter-spacing: 4px;
    }

    .hero-location {
        max-width: 280px;
        margin-top: 9px;
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .hero-actions {
        margin-top: 29px;
    }

    .hero-actions .btn {
        width: 148px;
        min-height: 43px;
    }
}

.faq-answer strong {
    font-weight: 700;
}


.hero {
    --couple-shoulder-line: 52.4%;
    overflow: hidden;
    background: #050505;
}


.hero::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url("images/Lmn129.jpg") center / cover no-repeat;
    filter: blur(12px);
    opacity: .42;
}

.hero-image {
    z-index: 1;
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .44) 0%,
            rgba(0, 0, 0, .08) 48%,
            rgba(0, 0, 0, .25) 100%
        ),
        url("images/Lmn129.jpg");
    background-size: 100% 100%, auto 140%;
    background-position: center, center bottom;
    background-repeat: no-repeat;
    filter: saturate(.9) contrast(1.04);
}

.hero-image::before,
.hero-image::after {
    display: none;
}

.hero-content {
    position: absolute;
    top: calc(var(--couple-shoulder-line) + 3.6%);
    left: 50%;
    right: auto;
    z-index: 2;
    width: min(900px, 100%);
    min-height: 0;
    padding: 0 20px;
    transform: translateX(-50%);
    isolation: isolate;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .95);
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: -42px -90px;
    z-index: -1;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, .62) 0%,
        rgba(0, 0, 0, .35) 48%,
        transparent 76%
    );
    filter: blur(9px);
    pointer-events: none;
}

.hero-names,
.hero-pretitle,
.hero-date,
.hero-location {
    text-shadow:
        0 2px 4px rgba(0, 0, 0, .95),
        0 0 18px rgba(0, 0, 0, .8);
}

@media (min-width: 701px) {
    .hero-content {
       
        top: calc(var(--couple-shoulder-line) + 1%);
    }
}

@media (max-width: 700px) {
    .hero-content {
        top: calc(var(--couple-shoulder-line) + 3.6%);
        min-height: 0;
        padding: 0 22px;
    }

    .hero-location {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}


footer {
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
}

footer > * {
    width: min(100%, 900px);
    margin-left: auto;
    margin-right: auto;
}

footer .footer-names {
    font-size: clamp(48px, 9vw, 100px);
    line-height: .9;
}

footer .footer-date {
    max-width: min(100%, 480px);
    font-size: clamp(8px, .8vw, 10px);
    letter-spacing: clamp(2px, .45vw, 5px);
    text-align: center;
}

footer .footer-credit {
    max-width: min(100%, 420px);
    font-size: clamp(7px, .7vw, 9px);
    letter-spacing: clamp(1px, .22vw, 2.5px);
    text-align: center;
}


footer {
    position: relative;
    isolation: isolate;
    background-size: 100% 100%, auto 200%;
    background-position: center, center bottom;
    background-repeat: no-repeat, no-repeat;
}


footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #080807 0,
        rgba(8, 8, 7, .42) 14%,
        rgba(8, 8, 7, .12) 28%,
        transparent 44%
    );
}
/* =========================================
   PRENUP VIDEO POPUP
========================================= */

.prenup-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    padding: 20px;

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

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.prenup-popup.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.prenup-popup-content {
    position: relative;

    width: min(900px, 95vw);

    background: #000;

    border-radius: 10px;

    overflow: visible;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

    animation: prenupPopupIn 0.45s ease;

     transform: translateY(70px);
}

.prenup-popup-content video {
    display: block;

    width: 100%;
    height: auto;

    max-height: 85vh;

    object-fit: contain;

    border-radius: 10px;
}

.prenup-close {
    position: absolute;

    top: -16px;
    right: -16px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #333;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

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

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.prenup-close:hover {
    transform: scale(1.08);
    background: #fff;
}

@keyframes prenupPopupIn {

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

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

}

/* Mobile */

@media (max-width: 600px) {

    .prenup-popup {
        padding: 12px;
    }

    .prenup-popup-content {
        width: 100%;
        border-radius: 8px;
    }

    .prenup-popup-content video {
        border-radius: 8px;
        max-height: 80vh;
    }

    .prenup-close {
        width: 38px;
        height: 38px;

        top: -12px;
        right: -8px;

        font-size: 27px;
    }

}

.prenup-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 16px 28px;

    border: none;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.95);
    color: #333;

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

    cursor: pointer;
    font-weight: 20;

    opacity: 0;
    pointer-events: none;

    transition: 0.25s ease;

    z-index: 20;
}

.prenup-play-button.show {
    opacity: 1;
    pointer-events: auto;
}

.prenup-play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.prenup-popup-content {
    position: relative;
    width: min(88vw, 780px);
    text-align: center;
    margin: auto;
}

.prenup-popup-heading {
    margin-bottom: 22px;
    color: #fff;
}

.prenup-popup-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.prenup-popup-heading h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.prenup-popup-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    opacity: 0.7;
}

.prenup-popup-divider::before,
.prenup-popup-divider::after {
    content: "";
    width: 45px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.prenup-popup-divider span {
    font-size: 12px;
}

#prenupPopupVideo {
    display: block;
    width: 100%;
    max-height: 72vh;
    border-radius: 10px;
    background: #000;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 600px) {

    .prenup-popup {
        padding: 20px 12px;
    }

    .prenup-popup-content {
        width: 94vw;
        max-width: 420px;
    }

    /* Small heading */
    .prenup-popup-heading {
        margin-bottom: 12px;
    }

    .prenup-popup-eyebrow {
        font-size: 8px;
        letter-spacing: 1.8px;
        margin-bottom: 5px;
        
    }

    .prenup-popup-heading h3 {
    margin: 0;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--muted);
    letter-spacing: 0;
}

    /* Small divider */
    .prenup-popup-divider {
        margin-top: 7px;
        gap: 7px;
    }

    .prenup-popup-divider::before,
    .prenup-popup-divider::after {
        width: 25px;
    }

    .prenup-popup-divider span {
        font-size: 9px;
    }

    /* Keep video natural */
    #prenupPopupVideo {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px;
        background: #000;
    }

    /* SIMPLE CLOSE BUTTON */
    .close-prenup {
        position: absolute;

        top: -45px;
        right: 0;

        width: 30px;
        height: 30px;

        padding: 0;
        border: none;
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.9);
        color: #333;

        font-size: 18px;
        font-weight: 400;

        line-height: 30px;
        text-align: center;

        cursor: pointer;
    }

}

/* ==============================
   PRENUP POPUP TEXT
   ============================== */

#prenupPopup .prenup-popup-heading h3 {
    margin: 0 !important;
    padding: 0 !important;

    font-family: var(--sans) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;

    color: var(--muted) !important;
    opacity: 0.8 !important;
}