/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2744;
    --navy-deep: #0f1a2e;
    --gold: #c8a84e;
    --gold-light: #dfc477;
    --cream: #faf8f2;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0.75rem auto 0;
}

h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: var(--navy-deep);
    color: var(--white);
    text-align: center;
    padding: 80px 24px 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-supratitle {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
}

.lodge-emblem {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 0 40px rgba(200, 168, 78, 0.25);
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.hero-date {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Sections ===== */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: var(--white);
}

.welcome {
    text-align: center;
    font-size: 1.1rem;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border: 1px solid #e8e4da;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.section:nth-child(even) .card {
    background: var(--cream);
}

.card .address {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.card ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.card li {
    margin-bottom: 0.3rem;
}

/* ===== Timeline ===== */
.timeline {
    margin-top: 1rem;
}

.timeline-day {
    margin-bottom: 2.5rem;
}

.timeline-day h3 {
    font-size: 1.3rem;
    color: var(--gold);
    border-bottom: 1px solid #e8e4da;
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.timeline-event {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid #e8e4da;
}

.timeline-event.highlight {
    border-left-color: var(--gold);
}

.timeline-time {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    padding-top: 0.15rem;
}

.timeline-detail p {
    margin-bottom: 0.4rem;
}

.fee {
    display: inline-block;
    background: var(--navy);
    color: var(--gold-light);
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.95rem;
}

/* ===== Info Grid ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e8e4da;
}

.info-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* ===== RSVP ===== */
.rsvp {
    text-align: center;
}

.rsvp ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.rsvp li {
    margin-bottom: 0.3rem;
}

.rsvp li::before {
    content: '\2022';
    color: var(--gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contact-card {
    display: inline-block;
    text-align: left;
    max-width: 360px;
}

.contact-card h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ===== Button ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1.25rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: #d4b45a;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.75rem;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ===== Footer ===== */
footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 2rem 24px;
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .hero {
        padding: 60px 20px 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .lodge-emblem {
        width: 120px;
        height: 120px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 40px 0;
    }

    .timeline-event {
        grid-template-columns: 70px 1fr;
        gap: 0.75rem;
    }
}