* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2c3e50;
            --accent: #8b7355;
            --gold: #d4af37;
            --cream: #faf8f3;
            --white: #ffffff;
            --text: #333333;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background: var(--cream);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, #faf8f3 0%, #f0ede5 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, 30px) scale(1.05); }
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1.2s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ornament {
            width: 80px;
            height: 2px;
            background: var(--gold);
            margin: 0 auto 30px;
            position: relative;
            animation: expandWidth 1s ease-out 0.5s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }

        .ornament::before,
        .ornament::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            top: -3px;
        }

        .ornament::before { left: -12px; }
        .ornament::after { right: -12px; }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 300;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: 2px;
            line-height: 1.2;
            animation: fadeInUp 1.2s ease-out 0.3s both;
        }

        .ampersand {
            font-size: 0.8em;
            font-style: italic;
            color: var(--gold);
            display: inline-block;
            margin: 0 20px;
        }

        .subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            color: var(--accent);
            margin-top: 30px;
            letter-spacing: 3px;
            text-transform: uppercase;
            animation: fadeInUp 1.2s ease-out 0.6s both;
        }

        .date-highlight {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--gold);
            margin-top: 40px;
            font-weight: 400;
            animation: fadeInUp 1.2s ease-out 0.9s both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-indicator::after {
            content: '↓';
            font-size: 24px;
            color: var(--gold);
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 400;
            color: var(--primary);
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--gold);
        }

        /* Details Section */
        .details {
            background: var(--white);
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .detail-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--cream);
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .detail-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .detail-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .detail-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--accent);
        }

        /* Timeline */
        .timeline {
            background: linear-gradient(135deg, #faf8f3 0%, #f5f2ea 100%);
        }

        .timeline-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            padding: 30px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .timeline-content:hover {
            transform: scale(1.03);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: var(--gold);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border: 4px solid var(--cream);
            z-index: 2;
        }

        .timeline-time {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .timeline-event {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 400;
        }

        /* Location */
        .location {
            background: var(--white);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 60px;
        }

        .location-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .location-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .map-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e8e5dd 0%, #d4cfc4 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '📍';
            font-size: 80px;
            position: absolute;
            opacity: 0.3;
        }

        .map-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Рисуем белую рамку внутри: 
            сверху 45px, снизу 45px, слева 5px, справа 0px */
            box-shadow: inset 0 45px 0 white, 
                        inset 0 -45px 0 white, 
                        inset 5px 0 0 white, 
                        inset 0px 0 0 white;
            z-index: 2;
            pointer-events: none; /* Чтобы можно было двигать карту под маской */
            border-radius: 8px; /* Чтобы маска повторяла форму контейнера */
        }

        /* Стили для самого iframe внутри контейнера */
        .map-placeholder iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* RSVP */
        .rsvp {
            background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
            color: var(--white);
        }

        .rsvp .section-title {
            color: var(--white);
        }

        .rsvp .section-title::after {
            background: var(--gold);
        }

        .rsvp-form {
            max-width: 600px;
            margin: 60px auto 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 50px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--cream);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .radio-group {
            display: flex;
            gap: 30px;
            margin-top: 10px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .radio-option input[type="radio"] {
            width: auto;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gold);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #c29d2e;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        /* Countdown Section */
        .countdown {
            background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .countdown::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
            z-index: 0;
        }

        .countdown::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 25s ease-in-out infinite reverse;
            z-index: 0;
        }

        .countdown .container {
            position: relative;
            z-index: 1;
        }

        .countdown .section-title {
            color: var(--white);
        }

        .countdown .section-title::after {
            background: var(--gold);
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 30px;
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            position: relative;
        }

        .countdown-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 15px;
            animation: fadeInUp 1.2s ease-out;
            display: inline-block;
            min-width: 100px;
        }

        @keyframes titlePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .countdown-number {
            animation: fadeInUp 1.2s ease-out, titlePulse 2s ease-in-out 1s infinite;
        }

        .countdown-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cream);
            font-weight: 300;
        }

        .countdown-separator {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: var(--gold);
            font-weight: 300;
            margin-bottom: 20px;
            opacity: 0.6;
            animation: fadeInUp 1.2s ease-out 0.3s both;
        }

        .countdown-date {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--cream);
            margin-top: 30px;
            letter-spacing: 2px;
            animation: fadeInUp 1.2s ease-out 0.6s both;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--cream);
            text-align: center;
            padding: 50px 20px;
        }

        footer p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .heart {
            color: var(--gold);
            display: inline-block;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            10%, 30% { transform: scale(1.1); }
            20%, 40% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .location-content {
                grid-template-columns: 1fr;
            }

            .timeline-container::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: row;
                padding-left: 50px;
            }

            .timeline-content,
            .timeline-item:nth-child(odd) .timeline-content {
                width: 100%;
                text-align: left;
            }

            .timeline-dot {
                left: 20px;
                transform: translateX(0);
            }

            .rsvp-form {
                padding: 30px 20px;
            }

            .radio-group {
                flex-direction: column;
                gap: 15px;
            }

            .countdown-container {
                gap: 15px;
                flex-direction: column;
            }

            .countdown-number {
                font-size: clamp(2rem, 6vw, 3.5rem);
            }

            .countdown-separator {
                font-size: 2rem;
                margin: 10px 0;
            }

            .countdown-item {
                width: 100%;
            }
        }