/* ==========================================================================
   Ashley & Drew Wedding — Spring Botanical Romance
   ========================================================================== */

:root {
    /* Core palette — flower colors */
    --chartreuse: #8DB83E;
    --chartreuse-light: #A8CC5C;
    --pink: #E8688A;
    --pink-soft: #F2A0B0;
    --peach: #F5A060;
    --yellow: #F2C840;
    --yellow-soft: #FAE87A;
    --green-deep: #4A7A38;

    /* Backgrounds — warm, organic */
    --bg-warm: #FDFBF7;
    --bg-cream: #FAF7F0;
    --bg-sage: #F0F4E8;
    --bg-blush: #FFF0ED;
    --bg-lemon: #FFFAED;

    /* Text — warm darks */
    --text-primary: #2C2416;
    --text-secondary: #5A4E3C;
    --text-light: #8A7E6C;

    /* Accents */
    --border-light: #E8E2D6;
    --shadow-soft: rgba(44, 36, 22, 0.06);
    --shadow-warm: rgba(44, 36, 22, 0.12);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 7rem 0;
    --container-width: 1100px;
    --container-narrow: 750px;
}

/* Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-warm);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.030;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--chartreuse);
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#main-nav.scrolled {
    border-bottom-color: var(--border-light);
    box-shadow: 0 2px 24px var(--shadow-soft);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.nav-logo:hover {
    color: var(--pink);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-light);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--chartreuse);
    transition: width 0.3s ease;
}

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

.nav-links li:nth-child(2) a::after { background: var(--pink); }
.nav-links li:nth-child(4) a::after { background: var(--peach); }
.nav-links li:nth-child(6) a::after { background: var(--yellow); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 18% 78%, rgba(232, 104, 138, 0.14) 0%, transparent 45%),
        radial-gradient(ellipse at 82% 22%, rgba(245, 160, 96, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(242, 200, 64, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 28% 28%, rgba(141, 184, 62, 0.10) 0%, transparent 40%),
        radial-gradient(ellipse at 72% 72%, rgba(242, 160, 176, 0.08) 0%, transparent 40%),
        linear-gradient(170deg, #EEF3E0, #F7F2E6);
}

/* Soft wave transition to next section */
#hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    right: -5%;
    height: 70px;
    background: var(--bg-warm);
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.hero-names {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.0;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero-names .name {
    display: block;
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 0.08em;
}

.hero-names .ampersand {
    display: block;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pink);
    margin: 0.05em 0;
    letter-spacing: 0.05em;
}

.hero-divider {
    width: 100px;
    margin: 1.8rem auto;
    color: var(--pink-soft);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.hero-divider svg {
    width: 100%;
    height: auto;
}

.hero-date {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.hero-venue {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.hero-scroll {
    display: inline-block;
    margin-top: 3rem;
    color: var(--text-light);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    animation: bobble 2.5s ease-in-out infinite;
}

/* Hero botanical decorations */
.hero-botanical {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.hero-botanical--tl {
    top: 4%;
    left: 4%;
    width: 90px;
    animation: botanicalReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.hero-botanical--tr {
    top: 4%;
    right: 4%;
    width: 90px;
    transform: scaleX(-1);
    animation: botanicalReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.hero-botanical--bl {
    bottom: 12%;
    left: 5%;
    width: 70px;
    transform: rotate(180deg);
    animation: botanicalReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.hero-botanical--br {
    bottom: 12%;
    right: 5%;
    width: 70px;
    transform: rotate(180deg) scaleX(-1);
    animation: botanicalReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-alt {
    background-color: var(--bg-sage);
}

/* Watercolor-style section backgrounds */
#details {
    background:
        radial-gradient(ellipse at 12% 40%, rgba(232, 104, 138, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 88% 60%, rgba(141, 184, 62, 0.05) 0%, transparent 50%),
        var(--bg-warm);
}

#travel {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(245, 160, 96, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(242, 160, 176, 0.05) 0%, transparent 50%),
        var(--bg-blush);
}

#nola {
    background:
        radial-gradient(ellipse at 15% 60%, rgba(242, 200, 64, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(141, 184, 62, 0.05) 0%, transparent 50%),
        var(--bg-cream);
}

#gallery {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(232, 104, 138, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(168, 204, 92, 0.05) 0%, transparent 50%),
        var(--bg-sage);
}

#registry {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(242, 160, 176, 0.06) 0%, transparent 60%),
        var(--bg-warm);
}

#faq {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(245, 160, 96, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 40%, rgba(242, 200, 64, 0.05) 0%, transparent 50%),
        var(--bg-lemon);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: 0.03em;
}

#details .section-title { color: var(--pink); }
#travel .section-title { color: var(--peach); }
#nola .section-title { color: var(--yellow); }
#gallery .section-title { color: var(--pink); }
#registry .section-title { color: var(--peach); }
#faq .section-title { color: var(--yellow); }

/* Botanical-style dividers — gradient fade with center ornament */
.section-divider {
    width: 120px;
    height: 1px;
    margin: 1.5rem auto 3rem;
    position: relative;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 6px;
    border-radius: 0 50% 50% 0;
    opacity: 0.5;
}

.section-divider::before {
    background: var(--chartreuse);
    transform: translate(-110%, -50%) rotate(-40deg);
}

.section-divider::after {
    background: var(--chartreuse-light);
    transform: translate(10%, -50%) rotate(40deg);
    border-radius: 50% 0 0 50%;
}

#travel .section-divider::before { background: var(--pink); }
#travel .section-divider::after { background: var(--pink-soft); }
#nola .section-divider::before { background: var(--peach); }
#nola .section-divider::after { background: var(--yellow); }
#gallery .section-divider::before { background: var(--yellow); }
#gallery .section-divider::after { background: var(--yellow-soft); }
#registry .section-divider::before { background: var(--pink-soft); }
#registry .section-divider::after { background: var(--pink); }
#faq .section-divider::before { background: var(--peach); }
#faq .section-divider::after { background: var(--yellow); }

.section-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Event Details
   ========================================================================== */

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.detail-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--shadow-soft);
    border: 1px solid rgba(232, 226, 214, 0.5);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-warm);
}

.detail-card:nth-child(1) { border-top: 3px solid var(--chartreuse); }
.detail-card:nth-child(2) { border-top: 3px solid var(--pink); }
.detail-card:nth-child(3) { border-top: 3px solid var(--peach); }

.detail-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.2rem;
    color: var(--chartreuse);
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.detail-time {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.detail-venue-name {
    font-weight: 700;
    color: var(--text-primary) !important;
}

.detail-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--chartreuse) !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.detail-link:hover {
    border-bottom-color: var(--chartreuse);
}

.detail-sub {
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--text-light) !important;
}

/* ==========================================================================
   Schedule Timeline
   ========================================================================== */

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

.schedule-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.timeline {
    position: relative;
    padding-left: 140px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 125px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: var(--chartreuse-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-time {
    position: absolute;
    left: -140px;
    top: 0;
    width: 110px;
    text-align: right;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 2px solid var(--chartreuse);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Travel & Accommodations
   ========================================================================== */

.travel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.travel-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--shadow-soft);
    border: 1px solid rgba(232, 226, 214, 0.4);
    border-left: 3px solid var(--pink-soft);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.travel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px var(--shadow-warm);
}

.travel-card:nth-child(2) { border-left-color: var(--peach); }
.travel-card:nth-child(3) { border-left-color: var(--yellow); }

.travel-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.travel-card p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.hotel-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel {
    padding: 1rem 1.2rem;
    background: var(--bg-sage);
    border-radius: 10px;
    border-left: 3px solid var(--chartreuse);
}

.hotel h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hotel p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================================================
   New Orleans Guide
   ========================================================================== */

.nola-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.nola-category {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--shadow-soft);
    border: 1px solid rgba(232, 226, 214, 0.4);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.nola-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px var(--shadow-warm);
}

.nola-category h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--yellow-soft);
}

.nola-category:nth-child(1) h3 { border-bottom-color: var(--pink-soft); }
.nola-category:nth-child(2) h3 { border-bottom-color: var(--peach); }
.nola-category:nth-child(3) h3 { border-bottom-color: var(--yellow); }
.nola-category:nth-child(4) h3 { border-bottom-color: var(--chartreuse-light); }

.nola-list {
    list-style: none;
}

.nola-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.nola-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nola-list strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.nola-list span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.gallery-item:nth-child(1) .gallery-placeholder { background: var(--chartreuse); }
.gallery-item:nth-child(2) .gallery-placeholder { background: var(--pink); }
.gallery-item:nth-child(3) .gallery-placeholder { background: var(--peach); }
.gallery-item:nth-child(4) .gallery-placeholder { background: var(--yellow); }
.gallery-item:nth-child(5) .gallery-placeholder { background: var(--chartreuse-light); }
.gallery-item:nth-child(6) .gallery-placeholder { background: var(--pink-soft); }
.gallery-item:nth-child(7) .gallery-placeholder { background: var(--peach); }
.gallery-item:nth-child(8) .gallery-placeholder { background: var(--chartreuse); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ==========================================================================
   Registry
   ========================================================================== */

.registry-message {
    text-align: center;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1.5px solid var(--pink-soft);
    box-shadow: 0 4px 30px var(--shadow-soft);
}

.registry-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.registry-message p {
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    background: var(--pink);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 104, 138, 0.25);
}

.btn:hover {
    background: #d4587a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 104, 138, 0.35);
}

.registry-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px var(--shadow-soft);
    border: 1px solid rgba(232, 226, 214, 0.4);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 24px var(--shadow-warm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    background: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--chartreuse);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--text-light);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--chartreuse);
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(160deg, #2E4A24, #3A5E30, #2E4A24);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(232, 104, 138, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(242, 200, 64, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-names {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
    position: relative;
    background: linear-gradient(90deg, var(--pink-soft), var(--peach), var(--yellow-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-date {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bobble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

@keyframes botanicalReveal {
    from {
        opacity: 0;
        transform: var(--botanical-base-transform, none) scale(0.8);
    }
    to {
        opacity: 1;
        transform: var(--botanical-base-transform, none) scale(1);
    }
}

/* Override botanical transforms to compose with scale */
.hero-botanical--tl { --botanical-base-transform: none; }
.hero-botanical--tr { --botanical-base-transform: scaleX(-1); }
.hero-botanical--bl { --botanical-base-transform: rotate(180deg); }
.hero-botanical--br { --botanical-base-transform: rotate(180deg) scaleX(-1); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 4rem;
    }

    .nola-categories {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .hero-botanical--tl,
    .hero-botanical--tr {
        width: 60px;
    }

    .hero-botanical--bl,
    .hero-botanical--br {
        display: none;
    }
}

@media (max-width: 700px) {
    :root {
        --section-padding: 5rem 0;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero-botanical {
        display: none;
    }

    #hero::after {
        height: 40px;
    }

    /* Timeline mobile */
    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline-time {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 0.25rem;
        color: var(--chartreuse);
        font-size: 0.85rem;
    }

    .timeline-dot {
        left: -30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .registry-message {
        padding: 2.5rem 1.5rem;
    }
}
