/* Elegant 2 Theme - Forest & Ivory */

:root {
    --forest: #2c4a3e;
    --ivory: #faf8f5;
    --soft-gray: #5a5a5a;
    --white: #ffffff;
    --border-light: rgba(44, 74, 62, 0.2);
}

/* Navigation */
.nav-header {
    background: var(--ivory);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Mobile Navigation */
.nav-mobile {
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-mobile {
        padding: 24px 32px;
    }
}

@media (min-width: 1024px) {
    .nav-mobile {
        display: none;
    }
}

.nav-mobile-burger-btn {
    background-color: var(--border-light);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    border: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.nav-mobile-burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--forest);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-mobile-burger-btn span:nth-child(2) {
    transition: opacity 0.3s ease;
}

.nav-mobile-burger-btn span:last-child {
    width: 10px;
    transition: width 0.3s ease,
    transform 0.3s ease;
}

.nav-mobile-burger-btn.active span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.nav-mobile-burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-burger-btn.active span:last-child {
    width: 20px;
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.nav-menu-mobile {
    position: fixed;
    background: var(--ivory);
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

@media (min-width: 1024px) {
    .nav-menu-mobile {
        display: none;
    }
}

.nav-menu-mobile-list {
    margin: 0;
    padding: 102px 0 0;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.nav-menu-mobile-list li {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
}

.nav-menu-mobile-list li a {
    font-weight: 500;
    color: var(--soft-gray);
    text-decoration: none;
}

.nav-menu-mobile-list div {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.nav-menu-mobile-button {
    background: var(--forest);
    color: white;
    padding: 10px 24px;
    border-radius: 9999px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: block;
    transition: background 0.3s ease;
}

.nav-menu-mobile-button:hover {
    background: #234133;
}

/* Desktop Navigation */
.nav-container {
    display: none;
}

@media (min-width: 1024px) {
    .nav-container {
        display: flex;
        max-width: 1280px;
        margin: 0 auto;
        padding: 24px 32px;
        align-items: center;
        justify-content: space-between;
    }
}

.nav-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--soft-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--forest);
}

.nav-button {
    background: var(--forest);
    color: white;
    padding: 10px 24px;
    border-radius: 9999px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: #234133;
}

/* Main Container */
.main {
    padding-top: 0;
}

/* Section Spacing */
.section {
    padding: 96px 32px;
}

.section-bg {
    background: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 80px 32px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 96px 32px;
    }
}

.hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 16px;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 24px;
}

.hero-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--soft-gray);
    margin-bottom: 32px;
}

.hero-date-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.date-item {
    text-align: center;
}

.date-month {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--forest);
}

.date-year {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--soft-gray);
    margin-top: 4px;
}

.date-day {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--forest);
}

.date-weekday {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--soft-gray);
    margin-top: 4px;
}

.date-time-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: var(--soft-gray);
    margin-bottom: 4px;
}

.date-time {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: var(--forest);
}

.date-divider {
    height: 64px;
    width: 1px;
    background: var(--border-light);
}

/* Countdown */
.countdown-container {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
}

.countdown-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--forest);
    text-align: center;
    margin-bottom: 16px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--forest);
    display: block;
    line-height: 1;
}

.countdown-unit {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-top: 8px;
    display: block;
}

/* Hero Images */
.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero-images-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-images-col:last-child {
    padding-top: 48px;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero-image.circle {
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.hero-image.rect {
    border-radius: 24px;
}

.hero-image.tall {
    height: 320px;
}

.hero-image.medium {
    height: 256px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Locations Section */
.locations-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 32px;
}

@media (min-width: 768px) {
    .locations-section {
        padding: 80px 32px;
    }
}

@media (min-width: 1024px) {
    .locations-section {
        padding: 96px 32px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 24px;
}

.section-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--soft-gray);
    max-width: 672px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: rgba(44, 74, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--forest, #2C4A3E);
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 16px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--soft-gray);
}

.location-detail svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--forest);
}

.dress-code-card {
    background: rgba(44, 74, 62, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.dress-code-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 12px;
}

.dress-code-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: var(--forest);
    margin-bottom: 8px;
}

.dress-code-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--soft-gray);
}

/* Timeline Section */
.timeline-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 32px;
}

@media (min-width: 768px) {
    .timeline-section {
        padding: 80px 32px;
    }
}

@media (min-width: 1024px) {
    .timeline-section {
        padding: 96px 32px;
    }
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.timeline-time {
    flex-shrink: 0;
    width: 128px;
    padding-top: 4px;
}

.timeline-time-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: var(--forest);
}

.timeline-content {
    flex: 1;
    border-left: 2px solid var(--border-light);
    padding-left: 32px;
    padding-bottom: 48px;
}

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

.timeline-event-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
}

.timeline-event-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--soft-gray);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    max-width: 1152px;
    margin: 0 auto;
    padding: 64px 32px;
}

@media (min-width: 768px) {
    .story-section {
        padding: 80px 32px;
    }
}

@media (min-width: 1024px) {
    .story-section {
        padding: 96px 32px;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .story-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.story-card-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 968px) {
    .story-card-col:nth-child(2) {
        padding-top: 48px;
    }
}

.story-image {
    width: 100%;
    height: 384px;
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 480px) {
    .story-image,
    .story-info-card {
        width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 640px) {
    .story-image,
    .story-info-card {
        width: 100%;
    }
}

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

.story-info-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
}

.story-info-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    color: var(--forest);
    margin-bottom: 8px;
}

.story-info-date {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: var(--soft-gray);
    margin-bottom: 12px;
}

.story-info-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--soft-gray);
}

/* Quote Card */
.quote-card {
    background: rgba(44, 74, 62, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    color: var(--forest);
    max-width: 768px;
    margin: 0 auto 24px;
}

.quote-author {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: var(--soft-gray);
}

/* FAQ Section */
.faq-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 128px 32px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    padding: 28px 32px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--forest);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.faq-question-btn:hover {
    background: rgba(44, 74, 62, 0.03);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--soft-gray);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 32px 28px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--soft-gray);
}

/* Travel Section */
.travel-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 128px 32px;
}

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

.travel-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.travel-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 20px;
    color: var(--forest);
}

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

.travel-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 12px;
}

.travel-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--soft-gray);
}

@media (max-width: 768px) {
    .travel-grid {
        grid-template-columns: 1fr;
    }

    .travel-section {
        padding: 80px 20px;
    }

    .faq-section {
        padding: 80px 20px;
    }
}

/* RSVP CTA Section */
.rsvp-cta-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 128px 32px;
}

.rsvp-cta-card {
    background: var(--forest);
    color: white;
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.rsvp-cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
}

.rsvp-cta-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 672px;
    margin: 0 auto 40px;
}

.rsvp-cta-button {
    background: white;
    color: var(--forest);
    padding: 16px 40px;
    border-radius: 9999px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.rsvp-cta-button:hover {
    background: var(--ivory);
}

.rsvp-cta-deadline {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 32px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RSVP Form
   ───────────────────────────────────────────────────────────────────────────── */
.rsvp-section {
    background: rgba(44, 74, 62, 0.03);
    position: relative;
    padding: 96px 32px;
}

.rsvp-container {
    max-width: 640px;
    margin: 0 auto;
}

.rsvp-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 56px 48px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(44, 74, 62, 0.08);
    position: relative;
}

.rsvp-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--forest),
        transparent
    );
    border-radius: 0 0 2px 2px;
}

.rsvp-field {
    margin-bottom: 28px;
}

.rsvp-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--forest);
    display: block;
    margin-bottom: 12px;
}

.rsvp-input,
.rsvp-textarea,
.rsvp-select {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--forest);
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--ivory);
    transition: all 0.3s ease;
}

.rsvp-input:focus,
.rsvp-textarea:focus,
.rsvp-select:focus {
    outline: none;
    border-color: var(--forest);
    background: white;
    box-shadow: 0 0 0 4px rgba(44, 74, 62, 0.1);
}

.rsvp-input::placeholder,
.rsvp-textarea::placeholder {
    color: var(--soft-gray);
    opacity: 0.6;
}

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

.rsvp-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.rsvp-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--forest);
    cursor: pointer;
    padding: 14px 24px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    background: var(--ivory);
}

.rsvp-radio:hover {
    border-color: var(--forest);
    background: rgba(44, 74, 62, 0.05);
}

.rsvp-radio:has(input:checked) {
    border-color: var(--forest);
    background: rgba(44, 74, 62, 0.08);
}

.rsvp-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--soft-gray);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.rsvp-radio input[type="radio"]:checked {
    border-color: var(--forest);
}

.rsvp-radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--forest);
    border-radius: 50%;
}

.rsvp-submit {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: var(--forest);
    border: none;
    padding: 18px 36px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.rsvp-submit:hover {
    background: #234133;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 74, 62, 0.3);
}

.rsvp-submit:active {
    transform: translateY(0);
}

/* RSVP Message Styles */
.rsvp-message {
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.rsvp-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
}

.rsvp-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

/* Guest Fields */
.guest-fields {
    margin-top: 24px;
    padding: 28px;
    background: var(--ivory);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.guest-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.guest-field-row:last-child {
    margin-bottom: 0;
}

.add-guest-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--forest);
    background: transparent;
    border: 1px dashed var(--border-light);
    padding: 14px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.add-guest-btn:hover {
    border-color: var(--forest);
    background: rgba(44, 74, 62, 0.03);
}

@media (max-width: 640px) {
    .rsvp-section {
        padding: 64px 24px;
    }

    .rsvp-form {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .rsvp-radio-group {
        flex-direction: column;
        gap: 12px;
    }

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

/* Footer */
.footer {
    background: rgba(44, 74, 62, 0.05);
    border-top: 1px solid var(--border-light);
    padding: 64px 32px;
}

.footer-container {
    max-width: 1024px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 48px;
}

.footer-names {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 16px;
}

.footer-date {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--soft-gray);
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(44, 74, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--forest);
    color: white;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: var(--soft-gray);
}

.footer-brand {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft-gray);
    opacity: 0.6;
}

.footer-brand a {
    color: var(--soft-gray);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--soft-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--forest);
}

/* Responsive */
@media (max-width: 1150px) {
    .hero-image.tall {
        max-width: 100%;
        height: auto;
        max-height: 320px;
        margin: 0 auto;
    }

    .hero-image.medium {
        max-width: 100%;
        height: auto;
        max-height: 256px;
        margin: 0 auto;
    }

    .hero-section {
        grid-template-columns: 1fr 1.35fr;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-time {
        width: auto;
    }

    .timeline-content {
        border-left: none;
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-images {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .hero-images-col:last-child {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .hero-date-row {
        flex-direction: column;
        gap: 16px;
    }

    .date-divider {
        width: 100%;
        height: 1px;
    }

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

    .section {
        padding: 64px 24px;
    }

    .quote-text {
        font-size: 20px;
    }

    .rsvp-cta-title {
        font-size: 32px;
    }
}
