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

:root {
    --cream: #FAF6EF;
    --parchment: #F0E9DD;
    --sand: #DDD0BC;
    --terra: #B86040;
    --terra-light: #E8927A;
    --terra-dark: #7A3B23;
    --brown: #3D2B1F;
    --brown-mid: #6B4C38;
    --sage: #6E7D62;
    --text: #2C1F14;
    --text-mid: #6B4C38;
    --text-light: #9E8070;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    font-size: 16px;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--sand);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--terra);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, #E8DDD0 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 90%, #D4C8B2 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 85%, #C8B89E 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

/* botanical SVG corners */
.botanical {
    position: absolute;
    pointer-events: none;
}

.botanical-tl {
    top: 0;
    left: 0;
}

.botanical-tr {
    top: 0;
    right: 0;
}

.hero-eyebrow {
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1.5rem;
    position: relative;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 1.05;
    color: var(--brown);
    letter-spacing: -0.01em;
    position: relative;
}

.hero h1 em {
    font-style: italic;
    color: var(--terra);
}

.hero-ampersand {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--sage);
    line-height: 1.2;
    margin: 0.1em 0;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    width: min(320px, 80%);
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sand);
}

.hero-divider span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    white-space: nowrap;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.2rem;
}

.hero-meta-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--brown-mid);
    font-weight: 500;
}

/* ── SECTIONS ── */
section {
    padding: 5rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}

section.alt-bg {
    max-width: 100%;
    background: var(--parchment);
    padding: 5rem 2rem;
}

section.alt-bg .inner {
    max-width: 860px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 2rem;
}

h2 em {
    font-style: italic;
    color: var(--terra);
}

p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ── SCHEDULE ── */
.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5.5rem;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 1px;
    background: var(--sand);
}

.timeline-item {
    display: grid;
    grid-template-columns: 5rem 1px auto;
    gap: 0 1.25rem;
    align-items: start;
    padding: 0.75rem 0;
    position: relative;
}

.timeline-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: right;
    padding-top: 0.1rem;
    font-style: italic;
}

.timeline-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terra);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    padding-bottom: 0.5rem;
}

.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.15rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ── INFO CARDS ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: var(--parchment);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--terra);
    fill: none;
    stroke-width: 1.5;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-mid);
    line-height: 1.65;
}

.card a {
    color: var(--terra);
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* ── FAQ ── */
.faq-list {
    list-style: none;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--sand);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    gap: 1rem;
}

.faq-q:hover {
    color: var(--terra);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--terra);
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.25s ease;
}

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

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 1rem;
}

.faq-a p {
    font-size: 0.95rem;
    margin: 0;
}

/* ── WISHLIST ── */
.wishlist-banner {
    background: var(--brown);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wishlist-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(184, 96, 64, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.wishlist-banner h2 {
    color: var(--parchment);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    position: relative;
}

.wishlist-banner h2 em {
    color: var(--terra-light);
}

.wishlist-banner p {
    color: var(--sand);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2.25rem;
    background: var(--terra);
    color: var(--cream);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    position: relative;
}

.btn:hover {
    background: var(--terra-dark);
    transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--sand);
    color: var(--text-light);
    font-size: 0.85rem;
}

footer em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-mid);
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    nav {
        gap: 1.25rem;
        padding: 0.75rem 1rem;
    }

    section {
        padding: 3.5rem 1.25rem;
    }

    section.alt-bg {
        padding: 3.5rem 1.25rem;
    }

    .timeline::before {
        left: 4.2rem;
    }

    .timeline-item {
        grid-template-columns: 4rem 1px auto;
    }

    .wishlist-banner {
        padding: 2rem 1.5rem;
    }

    /* scale botanicals so they stay in the corners on narrow screens */
    .botanical {
        width: min(280px, 48vw);
        height: min(280px, 48vw);
    }
}

/* fade-in on load */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero>* {
    animation: fadeUp 0.8s ease both;
}

.hero .hero-eyebrow {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.25s;
}

.hero .hero-divider {
    animation-delay: 0.45s;
}

.hero .hero-meta {
    animation-delay: 0.6s;
}