/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --burgundy: #800020;
    --copper: #B87333;
    --dusty-rose: #D09696;
    --cream: #F5F1EA;
    --burgundy-soft: rgba(128, 0, 32, 0.06);
    --copper-soft: rgba(184, 115, 51, 0.12);
    --text-dark: #3a2024;
    --text-muted: #8a6a6e;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    font-size: 16px;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background-color: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

.nav-hamburger {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1000;
    background: white;
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 2px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.08);
    transition: box-shadow 0.2s ease;
}

.nav-hamburger:hover {
    box-shadow: 0 2px 12px rgba(128, 0, 32, 0.15);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--copper);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 32, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: white;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(128, 0, 32, 0.1);
    display: flex;
    flex-direction: column;
}

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

.nav-panel-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(184, 115, 51, 0.15);
    text-align: center;
}

.nav-panel-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.8rem;
    color: var(--burgundy);
}

.nav-panel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--copper);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.nav-panel-close:hover {
    color: var(--burgundy);
}

.nav-menu {
    list-style: none;
    padding: 16px 0;
    flex: 1;
}

.nav-menu-item {
    display: block;
}

.nav-menu-link {
    display: block;
    padding: 14px 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.nav-menu-link:hover {
    color: var(--burgundy);
    background: var(--burgundy-soft);
    border-left-color: var(--dusty-rose);
}

.nav-menu-link.active {
    color: var(--burgundy);
    border-left-color: var(--copper);
    font-weight: 400;
}

.nav-panel-lang {
    padding: 12px 24px;
    text-align: center;
}

.nav-lang-btn {
    background: none;
    border: 1px solid var(--copper);
    color: var(--copper);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 2px;
}

.nav-lang-btn:hover {
    background: var(--copper);
    color: #fff;
}

.nav-panel-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(184, 115, 51, 0.15);
}

.nav-panel-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--dusty-rose);
}

/* ============================================
   CARD LAYOUT
   ============================================ */

.card {
    max-width: 900px;
    margin: 32px auto;
    background: white;
    box-shadow:
        0 1px 3px rgba(128, 0, 32, 0.04),
        0 8px 40px rgba(128, 0, 32, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(184, 115, 51, 0.1);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.card-hero {
    margin-top: 32px;
    margin-bottom: 0;
}

.card-details {
    margin-top: 24px;
    margin-bottom: 32px;
}

@media (max-width: 960px) {
    .card {
        margin-left: 16px;
        margin-right: 16px;
    }
}

@media (max-width: 600px) {
    .card {
        margin-left: 8px;
        margin-right: 8px;
    }
    .card-hero {
        margin-top: 8px;
    }
    .card-details {
        margin-bottom: 8px;
    }
}

/* ============================================
   DECORATIVE FLORAL IMAGES
   ============================================ */

.floral-img {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.floral-img-tl {
    top: -20px;
    left: -30px;
    width: 280px;
    opacity: 0;
    animation: floralFadeIn 2s ease-out 0.3s both;
}

.floral-img-tr {
    top: -35px;
    right: -30px;
    width: 280px;
    opacity: 0;
    animation: floralFadeIn 2s ease-out 0.5s both;
}

.floral-details-tr {
    top: -40px;
    right: -20px;
    width: 220px;
    opacity: 0;
    animation: floralFadeIn 2s ease-out 0.3s both;
    animation-play-state: paused;
}

.floral-details-tr.visible {
    animation-play-state: running;
}

.floral-details-bl {
    bottom: -30px;
    left: -20px;
    width: 220px;
    opacity: 0;
    animation: floralFadeIn 2s ease-out 0.5s both;
    animation-play-state: paused;
}

.floral-details-bl.visible {
    animation-play-state: running;
}

/* ============================================
   COPPER BACKGROUND
   ============================================ */

.copper-bg {
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 80%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transform: rotate(90deg);
}

.copper-bg-hero {
    left: calc(-30% + 50px);
    bottom: calc(-30% + 50px);
    width: 80%;
}

.copper-bg-hero-r {
    right: -30%;
    bottom: -30%;
    left: auto;
    width: 80%;
    transform: rotate(180deg);
}

@keyframes floralFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 0.9; transform: scale(1); }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeSlideDown 1.2s ease-out 1.8s both;
    cursor: pointer;
}

.scroll-indicator-text {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator-arrow {
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--copper);
    border-bottom: 1px solid var(--copper);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: calc(85vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 80px;
    overflow: hidden;
}

/* Soft radial glow background */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse at center,
        rgba(208, 150, 150, 0.18) 0%,
        rgba(245, 241, 234, 0) 70%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* Save the Date label */
.save-the-date-label {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 32px;
    animation: fadeSlideDown 1.2s ease-out 0.2s both;
}

/* Couple names */
.couple-names {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--burgundy);
    line-height: 1.15;
    margin-bottom: 8px;
    animation: fadeSlideDown 1.2s ease-out 0.5s both;
}

.couple-names .ampersand {
    display: block;
    font-size: 0.55em;
    color: var(--copper);
    line-height: 1.8;
}

/* Decorative divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0;
    animation: fadeSlideDown 1.2s ease-out 0.8s both;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.divider-ornament {
    width: 8px;
    height: 8px;
    border: 1px solid var(--copper);
    transform: rotate(45deg);
}

/* Date display */
.date-display {
    animation: fadeSlideDown 1.2s ease-out 1s both;
    margin-bottom: 12px;
}

.date-display .month-year {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.date-display .day-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 5rem;
    color: var(--burgundy);
    line-height: 1.1;
}

.date-display .day-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dusty-rose);
    letter-spacing: 0.05em;
}

/* Location */
.location {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 28px;
    animation: fadeSlideDown 1.2s ease-out 1.2s both;
}

.location-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-link:hover {
    color: var(--copper);
}

.location .pin {
    display: inline-block;
    margin-right: 6px;
}

.location-address {
    display: block;
    margin-top: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

/* ============================================
   DETAILS SECTION
   ============================================ */

.details-section {
    position: relative;
    padding: 32px 24px 24px;
    text-align: center;
}

.details-inner {
    max-width: 580px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideDown 1s ease-out both;
    animation-play-state: paused;
}

.section-heading.visible {
    animation-play-state: running;
}

.details-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeSlideDown 1s ease-out 0.2s both;
    animation-play-state: paused;
}

.details-text.visible {
    animation-play-state: running;
}

.details-text em {
    font-style: italic;
    color: var(--burgundy);
}

/* Accommodations card */
.accommodation-card {
    background: var(--cream);
    border: 1px solid rgba(184, 115, 51, 0.15);
    border-radius: 2px;
    padding: 36px 32px;
    margin-top: 24px;
    position: relative;
    opacity: 0;
    animation: fadeSlideDown 1s ease-out 0.4s both;
    animation-play-state: paused;
}

.accommodation-card.visible {
    animation-play-state: running;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30%;
    right: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.accommodation-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.accommodation-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--burgundy);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.accommodation-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.accommodation-card .highlight {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    border: 1px solid rgba(184, 115, 51, 0.3);
    padding: 6px 18px;
    border-radius: 1px;
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */

.countdown-section {
    padding: 24px 24px;
    text-align: center;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dusty-rose), transparent);
}

.countdown-label {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 18px;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: var(--burgundy);
    line-height: 1;
}

.countdown-unit {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 20px 24px 24px;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dusty-rose), transparent);
}

.footer-text {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.5rem;
    color: var(--dusty-rose);
    margin-bottom: 8px;
}

.footer-names {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-invitation-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================
   PLACEHOLDER PAGE STYLES
   ============================================ */

.page-card {
    max-width: 900px;
    margin: 32px auto;
    background: white;
    box-shadow:
        0 1px 3px rgba(128, 0, 32, 0.04),
        0 8px 40px rgba(128, 0, 32, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(184, 115, 51, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.page-heading {
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.page-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 960px) {
    .page-card {
        margin-left: 16px;
        margin-right: 16px;
    }
}

@media (max-width: 600px) {
    .page-card {
        margin-left: 8px;
        margin-right: 8px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
    .floral-img-tl,
    .floral-img-tr {
        width: 160px;
        top: -10px;
    }
    .floral-img-tl { left: -15px; }
    .floral-img-tr { right: -15px; }
    .floral-details-tr {
        width: 140px;
        top: -20px;
        right: -10px;
    }
    .floral-details-bl {
        width: 140px;
        bottom: -10px;
        left: -10px;
    }
    .couple-names {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .date-display .day-number {
        font-size: 3.5rem;
    }
    .countdown-grid {
        gap: 20px;
    }
    .countdown-number {
        font-size: 2.2rem;
    }
    .accommodation-card {
        padding: 28px 20px;
    }
    .hero {
        min-height: auto;
        padding: 50px 16px 70px;
    }
    .copper-bg-hero {
        left: -15%;
        bottom: -15%;
        width: 70%;
    }
    .copper-bg-hero-r {
        right: -15%;
        bottom: -15%;
        width: 70%;
    }

    .nav-panel {
        max-width: 100vw;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .floral-img-tl,
    .floral-img-tr {
        width: 120px;
    }
    .floral-details-tr {
        width: 100px;
    }
    .floral-details-bl {
        width: 100px;
    }
}

/* ============================================
   RSVP FORM STYLES
   ============================================ */

.rsvp-card {
    padding: 48px 24px 40px;
    text-align: center;
    align-items: center;
}

.rsvp-container {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.rsvp-label {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 8px;
}

.rsvp-greeting {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.rsvp-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.rsvp-subtext em {
    color: var(--burgundy);
}

.rsvp-footer-names {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.5rem;
    color: var(--dusty-rose);
}

.rsvp-form {
    margin-top: 28px;
    text-align: left;
}

/* Radio card options */
.rsvp-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.rsvp-option {
    cursor: pointer;
}

.rsvp-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.rsvp-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 2px;
    background: white;
    transition: all 0.2s ease;
}

.rsvp-option input:checked + .rsvp-option-card {
    border-color: var(--burgundy);
    background: var(--burgundy-soft);
    box-shadow: 0 0 0 1px var(--burgundy);
}

.rsvp-option:hover .rsvp-option-card {
    border-color: var(--copper);
}

.rsvp-option-icon {
    font-size: 1.1rem;
    color: var(--copper);
    width: 24px;
    text-align: center;
}

.rsvp-option-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Checkbox */
.rsvp-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 12px 16px;
    border: 1px solid rgba(184, 115, 51, 0.12);
    border-radius: 2px;
}

.rsvp-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.rsvp-checkbox-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--copper);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.rsvp-checkbox input:checked ~ .rsvp-checkbox-box {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.rsvp-checkbox input:checked ~ .rsvp-checkbox-box::after {
    content: '\2713';
    color: white;
    font-size: 0.75rem;
}

.rsvp-checkbox-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Text input */
.rsvp-field {
    margin-bottom: 20px;
}

.rsvp-field-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.rsvp-input {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-dark);
    border: 1px solid rgba(184, 115, 51, 0.25);
    border-radius: 2px;
    background: white;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.rsvp-input:focus {
    border-color: var(--copper);
}

.rsvp-input::placeholder {
    color: var(--dusty-rose);
    opacity: 0.6;
}

/* Submit button */
.rsvp-submit {
    display: inline-block;
    padding: 13px 40px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: white;
    background: var(--burgundy);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    margin-top: 8px;
}

.rsvp-submit:hover {
    background: #6b001a;
}

.rsvp-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   ADMIN DASHBOARD STYLES
   ============================================ */

.admin-dashboard {
    text-align: left;
    align-items: stretch;
    padding: 36px 32px;
    min-height: auto;
}

.admin-section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
}

/* Stats grid */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    width: 100%;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: var(--cream);
    border: 1px solid rgba(184, 115, 51, 0.12);
    border-radius: 2px;
    padding: 14px 12px;
    text-align: center;
}

.admin-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1.1;
}

.admin-stat-label {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Add guest form */
.admin-add-guest {
    width: 100%;
    margin-bottom: 12px;
    padding: 16px;
    background: var(--cream);
    border: 1px solid rgba(184, 115, 51, 0.12);
    border-radius: 2px;
}

.admin-add-form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.admin-add-form .rsvp-input {
    flex: 1;
    min-width: 150px;
}

.admin-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
}

/* Table */
.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
}

.admin-table th {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
    padding: 8px 10px;
    border-bottom: 2px solid rgba(184, 115, 51, 0.2);
    white-space: nowrap;
}

.admin-table td {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(184, 115, 51, 0.08);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(245, 241, 234, 0.5);
}

.admin-email {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-actions {
    white-space: nowrap;
    display: flex;
    gap: 4px;
}

/* Status badges */
.admin-badge {
    display: inline-block;
    padding: 3px 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    white-space: nowrap;
}

.admin-badge-confirmed {
    background: rgba(40, 120, 60, 0.1);
    color: #28783c;
}

.admin-badge-tentative {
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper);
}

.admin-badge-regrets {
    background: rgba(128, 0, 32, 0.08);
    color: var(--burgundy);
}

.admin-badge-none {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
}

/* Buttons */
.admin-btn {
    display: inline-block;
    padding: 8px 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.admin-btn-sm {
    padding: 4px 10px;
    font-size: 0.6rem;
}

.admin-btn-primary {
    background: var(--burgundy);
    color: white;
    border-color: var(--burgundy);
}

.admin-btn-primary:hover {
    background: #6b001a;
}

.admin-btn-copper {
    background: var(--copper);
    color: white;
    border-color: var(--copper);
}

.admin-btn-copper:hover {
    background: #9a6029;
}

.admin-btn-outline {
    background: white;
    color: var(--copper);
    border-color: rgba(184, 115, 51, 0.3);
}

.admin-btn-outline:hover {
    border-color: var(--copper);
}

.admin-btn-danger {
    background: white;
    color: var(--burgundy);
    border-color: rgba(128, 0, 32, 0.2);
}

.admin-btn-danger:hover {
    background: rgba(128, 0, 32, 0.06);
    border-color: var(--burgundy);
}

@media (max-width: 600px) {
    .admin-dashboard {
        padding: 24px 16px;
    }
    .admin-add-form {
        flex-direction: column;
    }
    .admin-add-form .rsvp-input {
        min-width: 100%;
    }
    .admin-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .rsvp-card {
        padding: 32px 16px;
    }
}
