/* ==========================================================================
   JOHN & SHEENA WEDDING — GRAND RETRO-MODERN DESIGN
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Rich Muted Palette */
    --cream: #F5F0E8;
    --cream-light: #FAF8F4;
    --cream-dark: #E8E0D4;
    --beige: #D4C4B0;
    --sand: #C9B89A;
    --olive: #7A8B6E;
    --sage: #9AAF8C;
    --sage-light: #B8C9AC;
    --taupe: #8A7B6A;
    --brown: #6A5B4A;
    --brown-dark: #4A3F32;
    --dusty-rose: #C4A090;
    --rose-light: #D8C4B8;
    --charcoal: #3A3530;
    --charcoal-light: #5A5550;
    --gold: #B8A070;
    --gold-light: #D4C4A0;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Crimson Pro', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;
    
    /* Spacing - Tighter */
    --sp-2xs: 0.25rem;
    --sp-xs: 0.5rem;
    --sp-sm: 0.75rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4rem;
    --sp-4xl: 5rem;
    
    /* Radius */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 40px;
    --r-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(58, 53, 48, 0.06);
    --shadow-md: 0 4px 20px rgba(58, 53, 48, 0.1);
    --shadow-lg: 0 12px 40px rgba(58, 53, 48, 0.15);
    --shadow-xl: 0 24px 60px rgba(58, 53, 48, 0.2);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --t-fast: 0.2s var(--ease-out);
    --t-base: 0.4s var(--ease-out);
    --t-slow: 0.6s var(--ease-out);
    --t-slower: 0.8s var(--ease-out);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Film Grain Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--t-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
}

.label-light {
    color: var(--cream);
    opacity: 0.85;
}

.title-script {
    font-family: var(--font-script);
    font-weight: 400;
}

.title-lg {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.title-md {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.title-sm {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

/* Decorative Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    margin: var(--sp-md) 0;
}

.divider::before,
.divider::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--beige), transparent);
}

.divider-light::before,
.divider-light::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.divider .icon {
    font-size: 0.75rem;
    color: var(--dusty-rose);
}

.divider-light .icon {
    color: var(--cream);
}

/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.container-sm {
    max-width: 800px;
}

.container-xs {
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--sp-md) 0;
    transition: var(--t-base);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: var(--t-base);
}

.nav.scrolled::before {
    opacity: 1;
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.nav-logo {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--charcoal);
    z-index: 1001;
}

.nav-logo span {
    color: var(--olive);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--t-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--t-base);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--olive);
    transform: translateX(-101%);
    transition: var(--t-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(0);
}

.nav-cta {
    padding: var(--sp-xs) var(--sp-lg);
    background: var(--olive);
    color: var(--cream) !important;
    border-radius: var(--r-full);
    font-family: var(--font-sans) !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.1em;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--brown);
}

/* Desktop Nav */
@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        opacity: 1;
        visibility: visible;
        gap: var(--sp-xl);
    }
    
    .nav-menu a {
        font-family: var(--font-sans);
        font-size: 0.8125rem;
        letter-spacing: 0.05em;
    }
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: sepia(15%) saturate(80%) brightness(88%);
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(58, 53, 48, 0.3) 0%, rgba(58, 53, 48, 0.6) 100%),
        linear-gradient(180deg, rgba(58, 53, 48, 0.3) 0%, transparent 40%, transparent 60%, rgba(58, 53, 48, 0.5) 100%);
}

/* Decorative corner elements */
.hero-decor {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    pointer-events: none;
}

.hero-decor-tl {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
    animation: fadeIn 1s var(--ease-out) 1.5s forwards;
    opacity: 0;
}

.hero-decor-tr {
    top: 30px;
    right: 30px;
    border-left: none;
    border-bottom: none;
    animation: fadeIn 1s var(--ease-out) 1.6s forwards;
    opacity: 0;
}

.hero-decor-bl {
    bottom: 30px;
    left: 30px;
    border-right: none;
    border-top: none;
    animation: fadeIn 1s var(--ease-out) 1.7s forwards;
    opacity: 0;
}

.hero-decor-br {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
    animation: fadeIn 1s var(--ease-out) 1.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--sp-xl);
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-frame {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-xl);
    padding: var(--sp-2xl) var(--sp-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xs);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.85;
}

.hero-names-wrap {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    margin: var(--sp-sm) 0;
}

.hero-name-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    display: none;
}

.hero-names {
    font-family: var(--font-script);
    font-size: clamp(3rem, 12vw, 5.5rem);
    color: var(--cream);
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
    line-height: 1;
    white-space: nowrap;
}

.hero-ampersand {
    display: inline-block;
    font-size: 0.6em;
    opacity: 0.7;
    margin: 0 0.05em;
}

.hero-surnames {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.75;
    margin-bottom: var(--sp-sm);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    margin: var(--sp-md) 0;
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero-divider-icon {
    color: var(--cream);
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-date {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--cream);
}

.hero-venue {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-top: var(--sp-sm);
}

.hero-location {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
    margin-top: var(--sp-2xs);
}

.hero-cta {
    margin-top: var(--sp-xl);
    padding: var(--sp-sm) var(--sp-xl);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: var(--r-full);
    transition: var(--t-fast);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-cta:hover {
    background: var(--cream);
    color: var(--charcoal);
    border-color: var(--cream);
}

.hero-scroll {
    position: absolute;
    bottom: var(--sp-lg);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2xs);
    color: var(--cream);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
    z-index: 10;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-scroll {
        bottom: var(--sp-md);
    }
}

.hero-scroll span {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--cream), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.8); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Desktop Enhancements */
@media (min-width: 768px) {
    .hero-decor {
        width: 150px;
        height: 150px;
    }
    
    .hero-decor-tl,
    .hero-decor-tr,
    .hero-decor-bl,
    .hero-decor-br {
        top: 50px;
        left: 50px;
    }
    
    .hero-decor-tr,
    .hero-decor-br {
        left: auto;
        right: 50px;
    }
    
    .hero-decor-bl,
    .hero-decor-br {
        top: auto;
        bottom: 50px;
    }
    
    .hero-frame {
        padding: var(--sp-3xl) var(--sp-3xl);
    }
    
    .hero-name-line {
        display: block;
        width: 80px;
    }
    
    .hero-names {
        font-size: clamp(4rem, 10vw, 6rem);
    }
    
    .hero-divider-line {
        width: 100px;
    }
}

@media (min-width: 1200px) {
    .hero-decor {
        width: 200px;
        height: 200px;
    }
    
    .hero-decor-tl,
    .hero-decor-bl {
        left: 80px;
    }
    
    .hero-decor-tr,
    .hero-decor-br {
        right: 80px;
    }
    
    .hero-decor-tl,
    .hero-decor-tr {
        top: 80px;
    }
    
    .hero-decor-bl,
    .hero-decor-br {
        bottom: 80px;
    }
    
    .hero-name-line {
        width: 120px;
    }
}

/* --------------------------------------------------------------------------
   SECTION BASE STYLES
   -------------------------------------------------------------------------- */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

.section-pad {
    padding: var(--sp-3xl) 0;
}

.section-pad-lg {
    padding: var(--sp-4xl) 0;
}

.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-cream-light { background: var(--cream-light); }
.bg-charcoal { background: var(--charcoal); color: var(--cream); }

/* --------------------------------------------------------------------------
   COUNTDOWN SECTION
   -------------------------------------------------------------------------- */
.countdown {
    background: var(--cream-dark);
    padding: var(--sp-xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--beige);
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: var(--sp-sm);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--sp-lg);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1;
}

.countdown-unit {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-top: var(--sp-2xs);
}

/* --------------------------------------------------------------------------
   INTRO / LOVE STORY
   -------------------------------------------------------------------------- */
.intro {
    position: relative;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: calc(var(--r-xl) - 4px);
    z-index: 1;
    pointer-events: none;
}

.intro-image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: sepia(8%) saturate(95%);
    transition: transform 0.8s var(--ease-out);
}

.intro-image-frame:hover img {
    transform: scale(1.03);
}

.intro-decor {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid var(--beige);
    border-radius: var(--r-lg);
    z-index: -1;
}

.intro-decor-1 {
    top: -20px;
    left: -20px;
}

.intro-decor-2 {
    bottom: -20px;
    right: -20px;
}

.intro-text {
    max-width: 500px;
}

.intro-text p {
    margin-bottom: var(--sp-md);
    color: var(--charcoal-light);
}

.intro-text p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: var(--sp-sm);
    margin-top: var(--sp-xs);
    color: var(--olive);
}

.intro-signature {
    font-family: var(--font-script);
    font-size: 1.75rem;
    color: var(--taupe);
    margin-top: var(--sp-lg);
}

@media (min-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-3xl);
    }
    
    .intro-image {
        order: 0;
    }
    
    .intro-text {
        max-width: none;
    }
}

/* --------------------------------------------------------------------------
   SAVE THE DATE
   -------------------------------------------------------------------------- */
.save-date {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.save-date-bg {
    position: absolute;
    inset: 0;
}

.save-date-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%) saturate(80%) brightness(85%);
}

.save-date-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 53, 48, 0.6);
}

.save-date-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cream);
    padding: var(--sp-2xl) var(--sp-lg);
}

.date-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-sm);
    margin: var(--sp-xl) 0;
    flex-wrap: wrap;
}

.date-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--sp-md) var(--sp-lg);
    border-radius: var(--r-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 90px;
    text-align: center;
}

.date-card-label {
    font-family: var(--font-sans);
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: var(--sp-2xs);
}

.date-card-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
}

.date-sep {
    font-size: 0.75rem;
    color: var(--cream);
    opacity: 0.5;
}

.time-pills {
    display: flex;
    justify-content: center;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

.time-pill {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    background: rgba(255, 255, 255, 0.08);
    padding: var(--sp-sm) var(--sp-lg);
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
}

.time-pill-icon {
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   VENUE / DETAILS
   -------------------------------------------------------------------------- */
.venues {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
}

.venue-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    background: var(--cream-light);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.venue-image {
    position: relative;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: sepia(10%) saturate(90%);
    transition: transform 0.6s var(--ease-out);
}

.venue-card:hover .venue-image img {
    transform: scale(1.05);
}

.venue-badge {
    position: absolute;
    top: var(--sp-md);
    left: var(--sp-md);
    background: var(--cream);
    padding: var(--sp-2xs) var(--sp-sm);
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}

.venue-info {
    padding: var(--sp-md) var(--sp-lg) var(--sp-lg);
}

.venue-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-xs);
}

.venue-address {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}

.venue-time {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--olive);
    margin-bottom: var(--sp-xs);
}

.venue-note {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--taupe);
}

.venue-map-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    margin-top: var(--sp-md);
    padding: var(--sp-sm) var(--sp-md);
    background: var(--cream-dark);
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    transition: var(--t-fast);
}

.venue-map-btn:hover {
    background: var(--beige);
}

@media (min-width: 900px) {
    .venues {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venue-card {
        grid-template-columns: 1fr;
    }
    
    .venue-image img {
        height: 280px;
    }
}

/* --------------------------------------------------------------------------
   ENTOURAGE
   -------------------------------------------------------------------------- */
.entourage-section {
    position: relative;
}

.entourage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--cream-dark), var(--cream));
    z-index: -1;
}

.entourage-group {
    margin-bottom: var(--sp-2xl);
}

.entourage-group:last-child {
    margin-bottom: 0;
}

.entourage-group-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    text-align: center;
    margin-bottom: var(--sp-lg);
}

.entourage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
}

.entourage-card {
    text-align: center;
    padding: var(--sp-md);
    background: var(--cream-light);
    border-radius: var(--r-lg);
    transition: var(--t-fast);
}

.entourage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.entourage-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--sp-sm);
    border: 3px solid var(--cream);
    box-shadow: var(--shadow-sm);
}

.entourage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(5%) saturate(95%);
}

.entourage-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-2xs);
}

.entourage-role {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}

/* Principal Sponsors - Special Style */
.entourage-principal {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
}

.entourage-principal .entourage-card {
    background: linear-gradient(135deg, var(--cream-light), var(--cream-dark));
    border: 1px solid var(--beige);
}

.entourage-principal .entourage-photo {
    width: 100px;
    height: 100px;
    border: 4px solid var(--gold-light);
}

@media (min-width: 600px) {
    .entourage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .entourage-principal {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) {
    .entourage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .entourage-principal {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* --------------------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 53, 48, 0);
    transition: var(--t-base);
    z-index: 1;
}

.gallery-item:hover::before {
    background: rgba(58, 53, 48, 0.3);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: sepia(8%) saturate(95%);
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-lg {
    grid-column: span 2;
}

.gallery-item-lg img {
    aspect-ratio: 2/1;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t-base);
    z-index: 2;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
    color: var(--charcoal);
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item-lg {
        grid-column: span 2;
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-md);
    }
}

/* Homepage Gallery - 8 images in 4x2 grid */
.gallery-home {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
}

.gallery-home .gallery-item {
    border-radius: var(--r-lg);
    overflow: hidden;
}

.gallery-home .gallery-item img {
    aspect-ratio: 1;
    transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}

.gallery-home .gallery-item:hover img {
    transform: scale(1.1);
    filter: sepia(0%) saturate(110%);
}

@media (min-width: 600px) {
    .gallery-home {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-md);
    }
}

@media (min-width: 1024px) {
    .gallery-home {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-lg);
    }
    
    .gallery-home .gallery-item {
        border-radius: var(--r-xl);
    }
    
    .gallery-home .gallery-item img {
        aspect-ratio: 1;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 22, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--t-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: var(--sp-lg);
    right: var(--sp-lg);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.5rem;
    transition: var(--t-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   GIFT GUIDE
   -------------------------------------------------------------------------- */
.gift-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--sp-2xl);
}

.gift-intro p {
    color: var(--charcoal-light);
    font-size: 1.0625rem;
}

.gift-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
}

.gift-card {
    background: var(--cream-light);
    padding: var(--sp-xl);
    border-radius: var(--r-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--t-base);
}

.gift-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-light);
}

.gift-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--sp-md);
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
    transition: var(--t-fast);
}

.gift-card:hover .gift-icon {
    background: var(--olive);
    color: var(--cream);
}

.gift-icon svg {
    width: 26px;
    height: 26px;
}

.gift-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-xs);
}

.gift-desc {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: var(--sp-md);
}

.gift-btn {
    display: inline-block;
    padding: var(--sp-sm) var(--sp-lg);
    background: transparent;
    border: 1.5px solid var(--olive);
    color: var(--olive);
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--t-fast);
}

.gift-btn:hover {
    background: var(--olive);
    color: var(--cream);
}

@media (min-width: 768px) {
    .gift-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --------------------------------------------------------------------------
   FAQS
   -------------------------------------------------------------------------- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream-light);
    border-radius: var(--r-lg);
    overflow: hidden;
    border-left: 3px solid var(--dusty-rose);
    transition: var(--t-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--sp-md) var(--sp-lg);
    font-family: var(--font-display);
    font-size: 1.0625rem;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-md);
}

.faq-question::after {
    content: '+';
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--taupe);
    transition: var(--t-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--sp-lg) var(--sp-md);
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.color-swatches {
    display: flex;
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
    flex-wrap: wrap;
}

.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--t-fast);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.15);
}

.color-swatch[data-color]::after {
    content: attr(data-color);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal);
    color: var(--cream);
    padding: 2px 8px;
    border-radius: var(--r-sm);
    font-size: 0.625rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--t-fast);
}

.color-swatch:hover::after {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-item:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

/* --------------------------------------------------------------------------
   RSVP
   -------------------------------------------------------------------------- */
.rsvp-section {
    position: relative;
}

.rsvp-layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

.rsvp-image {
    position: relative;
    min-height: 50vh;
}

.rsvp-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(12%) saturate(90%);
}

.rsvp-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, var(--cream-dark));
}

.rsvp-content {
    padding: var(--sp-2xl) var(--sp-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rsvp-header {
    text-align: center;
    margin-bottom: var(--sp-xl);
}

.rsvp-headline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal);
    margin-top: var(--sp-sm);
}

.rsvp-deadline {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--taupe);
    margin-top: var(--sp-xs);
}

.rsvp-deadline strong {
    color: var(--olive);
}

.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2xs);
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--sp-sm) var(--sp-md);
    background: var(--cream-light);
    border: 1px solid var(--beige);
    border-radius: var(--r-md);
    font-size: 0.9375rem;
    color: var(--charcoal);
    transition: var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(122, 139, 110, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--taupe);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rsvp-submit {
    width: 100%;
    padding: var(--sp-md);
    background: var(--olive);
    color: var(--cream);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t-fast);
    margin-top: var(--sp-sm);
}

.rsvp-submit:hover {
    background: var(--brown);
    transform: translateY(-2px);
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .rsvp-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .rsvp-image {
        min-height: 100vh;
    }
    
    .rsvp-image-overlay {
        background: linear-gradient(90deg, transparent 40%, var(--cream-dark) 100%);
    }
    
    .rsvp-content {
        padding: var(--sp-3xl);
    }
}

/* --------------------------------------------------------------------------
   HASHTAG / CLOSING
   -------------------------------------------------------------------------- */
.closing {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.closing-bg {
    position: absolute;
    inset: 0;
}

.closing-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%) saturate(80%) brightness(80%);
}

.closing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 53, 48, 0.55);
}

.closing-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cream);
    padding: var(--sp-2xl) var(--sp-lg);
}

.closing-hashtag {
    font-family: var(--font-script);
    font-size: clamp(2rem, 7vw, 4rem);
    margin: var(--sp-md) 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.closing-message {
    max-width: 400px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: var(--sp-2xl) var(--sp-lg);
    text-align: center;
}

.footer-names {
    font-family: var(--font-script);
    font-size: 2.5rem;
    margin-bottom: var(--sp-xs);
}

.footer-date {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.footer-heart {
    color: var(--dusty-rose);
    font-size: 1rem;
    margin: var(--sp-md) 0;
}

.footer-message {
    font-size: 0.8125rem;
    opacity: 0.6;
    margin-bottom: var(--sp-lg);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--sp-lg);
    flex-wrap: wrap;
    margin-bottom: var(--sp-lg);
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: var(--t-fast);
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-credit {
    font-size: 0.6875rem;
    opacity: 0.4;
}

/* --------------------------------------------------------------------------
   ANIMATIONS & UTILITIES
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Spacing utilities */
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }

/* Scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 60px;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   NOTIFICATION TOAST
   -------------------------------------------------------------------------- */
.toast {
    position: fixed;
    bottom: var(--sp-lg);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: var(--sp-md) var(--sp-xl);
    background: var(--charcoal);
    color: var(--cream);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--t-base);
}

.toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: var(--olive);
}

.toast.error {
    background: var(--dusty-rose);
}

.toast-close {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}
