/* =============================================
   HESHAM & AURORA – LUXURY WEDDING STYLESHEET
   ============================================= */

/* ---------- Palette & Tokens ---------- */
:root {
    --gold: #b8a08a;
    --gold-light: #d8cbb8;
    --gold-dark: #8a7a68;
    --champagne: #fdf8f5;
    --ivory: #fff9f6;
    --blush: #fdf0eb;
    --sage: #8fa88b;
    --sage-light: #c5d5c0;
    --sage-dark: #6b8a66;
    --rose: #c4afa5;
    --rose-light: #e8ddd6;
    --rose-dark: #9a8a80;
    --charcoal: #3a3332;
    --text: #4a4040;
    --text-light: #6b5e5c;
    --text-lighter: #8a7e7c;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-gold: 0 4px 20px rgba(196,145,123,0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--champagne);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

/* ---------- Selection ---------- */
::selection { background: var(--sage-light); color: var(--charcoal); }

/* ---------- Navigation ---------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s ease;
    background: rgba(250, 249, 247, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 16px rgba(0,0,0,0.05);
}
.site-nav.scrolled {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 3px;
    transition: color 0.5s ease;
}
.nav-logo span { font-family: var(--font-script); font-size: 1.3rem; color: var(--sage); }
.site-nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links.nav-compact { gap: 20px; letter-spacing: 1.8px; }
.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.5s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--charcoal); }
.site-nav.scrolled .nav-links a { color: var(--text-light); }
.site-nav.scrolled .nav-links a:hover { color: var(--charcoal); }

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.site-nav.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.btn-hero {
    background: transparent;
    color: var(--sage-dark);
    border: 1.5px solid var(--sage);
    margin-top: 12px;
}
.btn-hero:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.65rem; letter-spacing: 2px; }
.btn-danger { background: #e74c3c; color: var(--white); }
.btn-danger:hover { background: #c0392b; color: var(--white); }

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #f9f8f6 0%, #faf9f7 30%, #f8f7f5 50%, #f9f8f6 70%, #faf9f7 100%);
    overflow: visible;
    padding: 48px 24px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(200,188,175,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(190,180,168,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(160,180,155,0.08) 0%, transparent 60%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23c8c0b4' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='20' r='3'/%3E%3Ccircle cx='20' cy='50' r='2'/%3E%3Ccircle cx='60' cy='55' r='2.5'/%3E%3Ccircle cx='40' cy='70' r='1.5'/%3E%3Cpath d='M40 8c2 4 0 8-2 6s-2-6 0-8 4-2 2 2zm-20 30c1.5 3 0 6-1.5 4.5s-1.5-4.5 0-6 3-1.5 1.5 1.5zm40 5c1.5 3 0 6-1.5 4.5s-1.5-4.5 0-6 3-1.5 1.5 1.5z' /%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    color: var(--sage-light);
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    pointer-events: none;
}
.particle.petal {
    background: var(--sage-light);
    border-radius: 50% 0 50% 50%;
    color: transparent !important;
    font-size: 0 !important;
}
@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
    25% { opacity: 0.5; }
    50% { opacity: 0.25; transform: translateY(-100px) rotate(180deg) scale(1); }
    75% { opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-ornament {
    font-size: 1.4rem;
    color: var(--sage);
    margin-bottom: 24px;
    letter-spacing: 12px;
    opacity: 0.8;
}
.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
}
.hero h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 5rem;
    color: var(--charcoal);
    line-height: 1.1;
    letter-spacing: 4px;
    margin-bottom: 12px;
}
.hero h1 .amp {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 3.5rem;
    color: var(--sage);
    display: inline-block;
    margin: 0 12px;
    vertical-align: middle;
}

/* Flourish */
.hero-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}
.flourish-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
}
.flourish-diamond {
    color: var(--sage);
    font-size: 0.6rem;
    opacity: 0.7;
}

.hero-date {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--text);
    margin-bottom: 4px;
}
.hero-venue {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-lighter);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212,160,160,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Layout ---------- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 680px; }

.section {
    padding: 60px 0;
    position: relative;
}
.section-alt {
    background: var(--ivory);
    position: relative;
}
.section-alt::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 180px; height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M20 180 Q60 120 40 60 Q80 90 100 30 Q120 90 160 60 Q140 120 180 180' fill='none' stroke='%238fa88b' stroke-opacity='0.08' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='30' r='4' fill='%23d4a0a0' fill-opacity='0.08'/%3E%3Ccircle cx='40' cy='60' r='3' fill='%23d4a0a0' fill-opacity='0.06'/%3E%3Ccircle cx='160' cy='60' r='3' fill='%23d4a0a0' fill-opacity='0.06'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
}
.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 180px; height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M180 20 Q140 80 160 140 Q120 110 100 170 Q80 110 40 140 Q60 80 20 20' fill='none' stroke='%238fa88b' stroke-opacity='0.08' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='170' r='4' fill='%23d4a0a0' fill-opacity='0.08'/%3E%3Ccircle cx='160' cy='140' r='3' fill='%23d4a0a0' fill-opacity='0.06'/%3E%3Ccircle cx='40' cy='140' r='3' fill='%23d4a0a0' fill-opacity='0.06'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
}

/* Section Ornament */
.section-ornament {
    text-align: center;
    font-size: 1.4rem;
    color: var(--sage);
    margin-bottom: 12px;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.8rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
    font-weight: 400;
}

/* ---------- Countdown (inline) ---------- */
.countdown-section {
    padding: 36px 0;
}
.countdown-inline {
    text-align: center;
    background: var(--white);
    padding: 36px 48px;
    border-radius: var(--radius);
    border: 1px solid rgba(143,168,139,0.12);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}
.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
}
.countdown-inline .cd-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold-dark);
    line-height: 1;
    letter-spacing: 1px;
}
.countdown-inline .cd-word {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-lighter);
}
.cd-sep {
    color: var(--border);
    font-size: 1.4rem;
    padding-bottom: 18px;
    align-self: center;
}
.countdown-done {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-dark);
}

/* ---------- Detail Cards ---------- */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}
.detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    border: 1px solid rgba(143,168,139,0.12);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    border-radius: 0 0 4px 4px;
}
.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(143,168,139,0.25);
}
.detail-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.detail-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.8;
}
.detail-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}
.detail-highlight {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.detail-sub {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}
.detail-spacer {
    height: 16px;
}

/* ---------- Schedule / Timeline ---------- */
.timeline {
    max-width: 600px;
    margin: 28px auto 0;
    position: relative;
    padding-left: 48px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--sage-light), rgba(143,168,139,0.1));
}
.timeline-item {
    position: relative;
    padding: 0 0 40px 24px;
    display: block;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 0 2px rgba(143,168,139,0.3);
    z-index: 1;
}
.timeline-time {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage-dark);
    margin-bottom: 4px;
}
.timeline-event {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 400;
}

/* ---------- RSVP Form ---------- */
.rsvp-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 56px 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(143,168,139,0.08);
    position: relative;
    overflow: hidden;
}
.rsvp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--sage-light));
}

.form-group {
    margin-bottom: 28px;
}
.form-group label {
    display: flex;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 10px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e8e3dd;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--ivory);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(143,168,139,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-hint {
    font-size: 0.78rem;
    color: var(--text-lighter);
    margin-top: 6px;
}

/* Radio & Checkbox – Custom luxury style */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    padding: 12px 16px;
    border-radius: var(--radius-sm, 8px);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
}
.radio-label:hover {
    border-color: var(--sage-light);
    background: rgba(143,168,139,0.04);
}
.radio-label input[type="radio"] {
    accent-color: var(--sage);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}
.radio-label input[type="radio"]:checked ~ span,
.radio-label input[type="radio"]:checked ~ * {
    color: var(--sage-dark);
}
.radio-label:has(input:checked) {
    border-color: var(--sage);
    background: rgba(143,168,139,0.06);
}
.radio-custom { display: none; }
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.radio-option, .checkbox-option {
    position: relative;
}
.radio-option input, .checkbox-option input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.radio-option label, .checkbox-option label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1.5px solid #e8e3dd;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--ivory);
    color: var(--text);
}
.radio-option input:checked + label,
.checkbox-option input:checked + label {
    border-color: var(--sage);
    background: linear-gradient(135deg, rgba(143,168,139,0.08), rgba(143,168,139,0.15));
    color: var(--sage-dark);
    box-shadow: var(--shadow-gold);
}
.radio-option label:hover,
.checkbox-option label:hover {
    border-color: var(--sage-light);
    background: var(--white);
}

/* Form Dividers */
.form-divider {
    margin: 40px 0 32px;
    text-align: center;
    position: relative;
}
.form-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143,168,139,0.3), transparent);
}
.form-divider span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--sage-dark);
    background: var(--white);
    padding: 0 24px;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Slide down animation for attending fields */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Alerts ---------- */
.alert {
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    border: 1px solid;
    position: relative;
    padding-left: 52px;
}
.alert::before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}
.alert-success {
    background: linear-gradient(135deg, #f0faf0, #e8f5e9);
    border-color: #c8e6c9;
    color: #2e7d32;
}
.alert-success::before { content: '✓'; }
.alert-error {
    background: linear-gradient(135deg, #fdf0ef, #ffebee);
    border-color: #ffcdd2;
    color: #c62828;
}
.alert-error::before { content: '✕'; }

/* ---------- FAQ ---------- */
.faq-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    border: 1px solid rgba(143,168,139,0.08);
    transition: all var(--transition);
}
.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(212,160,160,0.2);
}
.faq-item h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 10px 0;
}
.faq-item strong {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    display: block;
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}



/* ---------- Guest Counter ---------- */
.form-label-hint {
    font-weight: 400;
    color: var(--text-lighter);
    font-size: 0.85em;
}
.guest-counter {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 160px;
}
.guest-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 1.25rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
}
.guest-btn:hover:not(:disabled) {
    background: var(--sage-lightest);
    border-color: var(--sage);
}
.guest-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.guest-minus {
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
}
.guest-plus {
    border-radius: 0 var(--radius) var(--radius) 0;
    border-left: none;
}
.guest-count-input {
    width: 56px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--cream);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    -moz-appearance: textfield;
    appearance: textfield;
}
.guest-count-input::-webkit-outer-spin-button,
.guest-count-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* ---------- Guest Counter ---------- */
.form-label-hint {
    font-weight: 400;
    color: var(--text-lighter);
    font-size: 0.85em;
}
.guest-counter {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 160px;
}
.guest-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 1.25rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
}
.guest-btn:hover:not(:disabled) {
    background: var(--sage-lightest);
    border-color: var(--sage);
}
.guest-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.guest-minus {
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
}
.guest-plus {
    border-radius: 0 var(--radius) var(--radius) 0;
    border-left: none;
}
.guest-count-input {
    width: 56px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--cream);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    -moz-appearance: textfield;
    appearance: textfield;
}
.guest-count-input::-webkit-outer-spin-button,
.guest-count-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* ---------- Per-Guest Meal Cards ---------- */
#guest-meals {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.guest-meal-card {
    background: rgba(143,168,139,0.04);
    border: 1px solid rgba(143,168,139,0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    animation: fadeSlideIn 0.3s ease;
}
.guest-meal-card .form-group:last-child {
    margin-bottom: 0;
}
.guest-meal-header {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(143,168,139,0.1);
}
.guest-meal-fields .form-group {
    margin-bottom: 14px;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Form Section Label ---------- */
.form-section-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: center;
    margin: 32px 0 20px;
    padding: 16px 0;
    position: relative;
}
.form-section-label::before,
.form-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: rgba(143,168,139,0.25);
}
.form-section-label::before { right: calc(50% + 120px); }
.form-section-label::after { left: calc(50% + 120px); }


/* ---------- Per-Guest Meal Cards ---------- */
#guest-meals {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.guest-meal-card {
    background: rgba(143,168,139,0.04);
    border: 1px solid rgba(143,168,139,0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    animation: fadeSlideIn 0.3s ease;
}
.guest-meal-card .form-group:last-child {
    margin-bottom: 0;
}
.guest-meal-header {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(143,168,139,0.1);
}
.guest-meal-fields .form-group {
    margin-bottom: 14px;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Form Section Label ---------- */
.form-section-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: center;
    margin: 32px 0 20px;
    padding: 16px 0;
    position: relative;
}
.form-section-label::before,
.form-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: rgba(143,168,139,0.25);
}
.form-section-label::before { right: calc(50% + 120px); }
.form-section-label::after { left: calc(50% + 120px); }

/* ---------- Gifts Section ---------- */
.gift-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid rgba(143,168,139,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.gift-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.gift-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}
.gift-details {
    background: var(--ivory);
    border-radius: 8px;
    padding: 7px;
    margin-bottom: 20px;
}
.gift-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(143,168,139,0.08);
}
.gift-detail-row:last-child {
    border-bottom: none;
}
.gift-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 500;
}
.gift-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--charcoal);
}
.gift-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

/* ---------- Travel & Stay Section ---------- */
.info-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    border: 1px solid rgba(143,168,139,0.12);
    max-width: 700px;
    margin: 28px auto 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.info-block-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.info-block h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.info-block p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0;
}

.travel-grid,
.hotel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(143,168,139,0.1);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    border-radius: 0 0 4px 4px;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(143,168,139,0.22);
}
.info-card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}
.info-card h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0 0 10px 0;
}
.info-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}
.info-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}
.info-link:hover {
    color: var(--charcoal);
}

.hotel-tier {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-lighter);
    font-weight: 600;
    margin-bottom: 8px;
}

.hotel-distance {
    display: block;
    font-size: 0.78rem;
    color: var(--text-lighter);
    margin-top: 6px;
    margin-bottom: 2px;
}

/* Language Switcher */
.nav-lang {
    font-size: 0.72rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    background: rgba(149, 165, 136, 0.12);
    padding: 4px 12px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    white-space: nowrap;
}
.nav-lang::after { display: none !important; }
.site-nav.scrolled .nav-lang {
    background: rgba(149, 165, 136, 0.15);
}

.subsection-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--charcoal);
    text-align: center;
    letter-spacing: 1px;
}

/* ---------- Explore Valencia Section ---------- */
.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.explore-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(143,168,139,0.1);
    transition: all var(--transition);
    text-align: center;
}
.explore-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(143,168,139,0.22);
}
.explore-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.explore-card h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.08rem;
    color: var(--charcoal);
    margin: 0 0 10px 0;
}
.explore-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ivory);
    color: var(--text-light);
    text-align: center;
    padding: 40px 24px;
    position: relative;
    border-top: 1px solid rgba(143,168,139,0.15);
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sage-light), var(--sage), var(--sage-light), transparent);
}
.footer-ornament {
    color: var(--sage);
    font-size: 0.8rem;
    letter-spacing: 16px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.footer-names {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 3px;
    font-weight: 300;
}
.footer-date {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text-light);
}
.footer-made {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-lighter);
}


/* ---------- Hero Floral Corner Decorations ---------- */
.hero-floral {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
.hero-floral-tl {
    top: -20px;
    left: -20px;
    width: 450px;
    height: auto;
    opacity: 0.92;
    -webkit-mask-image: radial-gradient(ellipse at 0% 0%, black 25%, transparent 72%);
    mask-image: radial-gradient(ellipse at 0% 0%, black 25%, transparent 72%);
}
.hero-floral-br {
    bottom: -20px;
    right: -20px;
    width: 430px;
    height: auto;
    opacity: 0.92;
    -webkit-mask-image: radial-gradient(ellipse at 100% 100%, black 25%, transparent 72%);
    mask-image: radial-gradient(ellipse at 100% 100%, black 25%, transparent 72%);
}
.hero-floral-tr {
    top: -20px;
    right: -20px;
    width: 380px;
    height: auto;
    opacity: 0.5;
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 25%, transparent 72%);
    mask-image: radial-gradient(ellipse at 100% 0%, black 25%, transparent 72%);
}
.hero-floral-bl {
    bottom: -20px;
    left: -20px;
    width: 360px;
    height: auto;
    opacity: 0.45;
    -webkit-mask-image: radial-gradient(ellipse at 0% 100%, black 25%, transparent 72%);
    mask-image: radial-gradient(ellipse at 0% 100%, black 25%, transparent 72%);
}


/* ---------- Section Floral Corner Decorations ---------- */
.section {
    position: relative;
}
.section-floral {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.section-floral-tl {
    top: -10px;
    left: -10px;
    width: 280px;
    height: auto;
    opacity: 0.7;
    -webkit-mask-image: radial-gradient(ellipse at 0% 0%, black 20%, transparent 68%);
    mask-image: radial-gradient(ellipse at 0% 0%, black 20%, transparent 68%);
}
.section-floral-br {
    bottom: -10px;
    right: -10px;
    width: 260px;
    height: auto;
    opacity: 0.7;
    -webkit-mask-image: radial-gradient(ellipse at 100% 100%, black 20%, transparent 68%);
    mask-image: radial-gradient(ellipse at 100% 100%, black 20%, transparent 68%);
}


/* ---------- Section Floral Corner Decorations ---------- */
.section {
    position: relative;
}
.section-floral {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.section-floral-tl {
    top: -10px;
    left: -10px;
    width: 280px;
    height: auto;
    opacity: 0.7;
    -webkit-mask-image: radial-gradient(ellipse at 0% 0%, black 20%, transparent 68%);
    mask-image: radial-gradient(ellipse at 0% 0%, black 20%, transparent 68%);
}
.section-floral-br {
    bottom: -10px;
    right: -10px;
    width: 260px;
    height: auto;
    opacity: 0.7;
    -webkit-mask-image: radial-gradient(ellipse at 100% 100%, black 20%, transparent 68%);
    mask-image: radial-gradient(ellipse at 100% 100%, black 20%, transparent 68%);
}

/* Floral section divider */
.floral-divider {
    text-align: center;
    padding: 2px 0;
    pointer-events: none;
}
.floral-divider svg {
    width: 380px;
    height: 65px;
    opacity: 0.8;
}

/* Footer flower */
.footer-flower {
    margin: 0 auto 16px;
    width: 90px;
    height: 90px;
    opacity: 0.7;
}


/* ---------- Section Corner Flowers ---------- */
.section-flowers {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.section-flower-tr {
    top: -10px;
    right: -20px;
    width: 200px;
    height: 200px;
    opacity: 0.45;
}
.section-flower-bl {
    bottom: -10px;
    left: -20px;
    width: 180px;
    height: 180px;
    opacity: 0.4;
    transform: rotate(180deg);
}

/* Countdown flower accents */
.countdown-section {
    position: relative;
    overflow: visible;
}
.countdown-flower {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.countdown-flower-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 140px;
    opacity: 0.5;
}
.countdown-flower-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 110px;
    height: 140px;
    opacity: 0.5;
}

/* Detail card floral accent */
.detail-card {
    position: relative;
    overflow: hidden;
}
.detail-card-flower {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

/* RSVP corner flowers */
.rsvp-section-wrap {
    position: relative;
    overflow: visible;
}
.rsvp-flower {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.rsvp-flower-tl {
    top: 20px;
    left: -30px;
    width: 220px;
    height: 280px;
    opacity: 0.35;
    transform: scaleX(-1);
}
.rsvp-flower-br {
    bottom: 20px;
    right: -30px;
    width: 200px;
    height: 260px;
    opacity: 0.3;
}

/* FAQ corner flower */
.faq-flower {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    bottom: -10px;
    right: -20px;
    width: 160px;
    height: 200px;
    opacity: 0.3;
}

/* Footer garland */
.footer-garland {
    margin: 0 auto 20px;
    width: 320px;
    height: 45px;
    opacity: 0.55;
}

/* Watercolor wash backgrounds */
.section.watercolor-wash::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(143,168,139,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(143,168,139,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(184,160,138,0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.section.watercolor-wash > * {
    position: relative;
    z-index: 1;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.timeline-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}
.detail-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.detail-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.detail-card:nth-child(2) { transition-delay: 0.15s; }
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.info-card, .info-block {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.info-card.visible, .info-block.visible {
    opacity: 1;
    transform: translateY(0);
}
.info-card:nth-child(2) { transition-delay: 0.08s; }
.info-card:nth-child(3) { transition-delay: 0.16s; }
.info-card:nth-child(4) { transition-delay: 0.24s; }
.explore-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.explore-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.explore-card:nth-child(2) { transition-delay: 0.08s; }
.explore-card:nth-child(3) { transition-delay: 0.16s; }
.explore-card:nth-child(4) { transition-delay: 0.24s; }

/* =============================================
   ADMIN PANEL STYLES
   ============================================= */

.admin-nav {
    background: var(--white);
    border-bottom: 1px solid #f0ebe5;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.admin-nav-inner h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 400;
}
.admin-nav-inner h2 span { color: var(--sage); }
.admin-nav-links { display: flex; gap: 20px; align-items: center; }
.admin-nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.admin-nav-links a:hover { color: var(--gold-dark); }

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.admin-header h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
}

/* Admin Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201,169,110,0.08);
    transition: all var(--transition);
}
.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-dark);
}
.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* Dietary Summary */
.dietary-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201,169,110,0.08);
}
.dietary-summary h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.dietary-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dietary-tag {
    background: var(--champagne);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text);
    border: 1px solid rgba(201,169,110,0.1);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 8px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}
.filter-tab:hover, .filter-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Table */
.table-wrap {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201,169,110,0.08);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.admin-table th {
    background: var(--champagne);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    white-space: nowrap;
}
.admin-table td {
    padding: 14px 16px;
    border-top: 1px solid #f5f0ea;
    vertical-align: top;
}
.admin-table tr:hover td { background: rgba(201,169,110,0.02); }
.actions-cell { white-space: nowrap; display: flex; gap: 6px; }

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-yes { background: #eafaf1; color: #1e8449; }
.badge-no { background: #fdedec; color: #922b21; }
.badge-pending { background: #fef5e7; color: #b7791f; }
.badge-source { background: #eef2ff; color: #5b6abf; }

/* Guest chips for dashboard table */
.guest-chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 0.72rem;
    margin: 2px 3px 2px 0;
    line-height: 1.4;
    white-space: nowrap;
}
.guest-primary {
    background: #eaf0e5;
    color: #3d5a2a;
    font-weight: 600;
}
.guest-extra {
    background: #f5f0ea;
    color: #6b5d4a;
    font-weight: 500;
}
.allergy-chip {
    background: #fdf0ee;
    color: #a93226;
    font-weight: 500;
    font-size: 0.68rem;
}

/* Admin Form Card */
.admin-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,169,110,0.08);
}
.admin-form-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 28px;
}
.form-actions { display: flex; gap: 12px; margin-top: 16px; }

/* Admin Login */
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--champagne);
}
.admin-login-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 52px 44px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(201,169,110,0.08);
    position: relative;
    overflow: hidden;
}
.admin-login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--sage-light));
}
.admin-login-card h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.admin-login-card > p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 32px;
}
.admin-login-card .form-group { text-align: left; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    /* Nav – hamburger + slide-down menu */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(255, 253, 249, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 32px 28px;
        gap: 0;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        color: var(--charcoal) !important;
        padding: 14px 0;
        font-size: 0.75rem;
        border-bottom: 1px solid rgba(201,169,110,0.1);
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-logo { font-size: 1.2rem; }

    /* Hero */
    .hero { padding: 80px 20px 60px; min-height: 100svh; }
    .hero-floral-tl { width: 300px; } .hero-floral-br { width: 280px; }
    .hero-floral-tr { width: 240px; } .hero-floral-bl { width: 220px; }
    .section-floral-tl { width: 180px; } .section-floral-br { width: 160px; }
    .section-flower-tr { width: 140px; height: 140px; }
    .section-flower-bl { width: 120px; height: 120px; }
    .countdown-flower-left, .countdown-flower-right { width: 80px; height: 100px; opacity: 0.35; }
    .rsvp-flower-tl { width: 160px; height: 200px; left: -20px; }
    .rsvp-flower-br { width: 140px; height: 180px; right: -20px; }
    .footer-garland { width: 240px; height: 35px; }
    .hero h1 { font-size: 2.8rem; letter-spacing: 2px; }
    .hero h1 .amp { font-size: 2rem; margin: 0 6px; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-date { letter-spacing: 3px; font-size: 0.7rem; }
    .hero-venue { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-ornament { margin-bottom: 16px; }
    .flourish-line { width: 50px; }
    .hero-scroll { display: none; }

    /* Layout */
    .section { padding: 44px 0; }
    .countdown-section { padding: 28px 0; }
    .section-title { font-size: 1.9rem; }
    .section-subtitle { font-size: 0.85rem; margin-bottom: 22px; }
    .section-ornament { font-size: 1.1rem; margin-bottom: 8px; }
    .container { padding: 0 20px; }

    /* Countdown – stack as 2x2 grid on mobile */
    .countdown-inline { flex-wrap: wrap; gap: 8px 0; padding: 28px 20px; }
    .cd-unit { padding: 0 16px; }
    .cd-sep { font-size: 1.1rem; padding-bottom: 14px; }
    .countdown-inline .cd-num { font-size: 2rem; }
    .countdown-inline .cd-word { font-size: 0.6rem; }

    /* Details */
    .details-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
    .detail-card { padding: 32px 24px; }
    .detail-card h3 { font-size: 1.3rem; }

    /* Timeline */
    .timeline { padding-left: 40px; margin-top: 32px; }
    .timeline-item { padding-bottom: 28px; }
    .timeline-item::before { left: -32px; }
    .timeline-event { font-size: 1.1rem; }

    /* RSVP Form */
    .rsvp-card { padding: 32px 20px; }
    .form-group { margin-bottom: 22px; }
    .form-group label { font-size: 0.65rem; letter-spacing: 1.5px; }
    .radio-group, .checkbox-group { gap: 8px; }
    .radio-option label, .checkbox-option label { padding: 10px 16px; font-size: 0.8rem; }
    .form-divider { margin: 32px 0 24px; }
    .form-divider span { font-size: 0.95rem; padding: 0 16px; }
    .btn-full { width: 100%; }

    /* FAQ */
    .faq-item { padding: 20px 22px; margin-bottom: 12px; }
    .faq-item strong { font-size: 1rem; }

    /* Travel & Explore */
    .travel-grid, .hotel-grid, .explore-grid { grid-template-columns: 1fr; gap: 14px; }
    .info-block { padding: 28px 22px; }
    .info-card { padding: 22px 20px; }
    .explore-card { padding: 22px 20px; }

    /* Footer */
    .footer { padding: 44px 20px; }
    .footer-names { font-size: 1.3rem; letter-spacing: 2px; }
    .footer-ornament { letter-spacing: 10px; font-size: 0.7rem; }

    /* Admin */
    .admin-nav-inner { flex-direction: column; height: auto; padding: 12px; gap: 8px; }
    .admin-table { font-size: 0.78rem; }
    .admin-form-card { padding: 28px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; letter-spacing: 1px; }
    .hero h1 .amp { font-size: 1.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .flourish-line { width: 36px; }
    .btn-hero { padding: 12px 32px; font-size: 0.65rem; }
    .hero-floral-tl { width: 220px; } .hero-floral-br { width: 200px; }
    .hero-floral-tr { width: 160px; } .hero-floral-bl { width: 140px; }
    .section-floral-tl { width: 120px; } .section-floral-br { width: 110px; }
    .floral-divider svg { width: 240px; height: 42px; }
    .section-flower-tr { width: 100px; height: 100px; }
    .section-flower-bl { width: 90px; height: 90px; }
    .countdown-flower-left, .countdown-flower-right { display: none; }
    .rsvp-flower-tl, .rsvp-flower-br { display: none; }
    .faq-flower { width: 100px; height: 120px; }
    .footer-garland { width: 180px; height: 28px; }

    .section { padding: 36px 0; }
    .section-title { font-size: 1.6rem; }
    .container { padding: 0 16px; }

    .countdown-inline { padding: 20px 0; gap: 12px 4px; }
    .countdown-inline .cd-num { font-size: 1.6rem; }
    .countdown-inline .cd-word { font-size: 0.5rem; letter-spacing: 1.5px; }

    .detail-card { padding: 28px 20px; }
    .info-card { padding: 20px 16px; }
    .explore-card { padding: 20px 16px; }
    .info-block { padding: 24px 16px; }
    .subsection-title { font-size: 1.2rem; }
    .timeline { padding-left: 44px; }
    .rsvp-card { padding: 24px 16px; }
        .radio-label { padding: 10px 14px; font-size: 0.82rem; }
    .footer { padding: 36px 16px; }
    .footer-names { font-size: 1.1rem; }
}
