/* montserrat-300 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/montserrat-v31-cyrillic_latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/montserrat-v31-cyrillic_latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* montserrat-regular - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v31-cyrillic_latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/montserrat-v31-cyrillic_latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* montserrat-500 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/montserrat-v31-cyrillic_latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/montserrat-v31-cyrillic_latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* cormorant-garamond-regular - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';                                                                                                                    font-style: normal;                                                                                                                                   font-weight: 400;                                                                                                                                     src: url('fonts/cormorant-garamond-v21-cyrillic_latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */       url('fonts/cormorant-garamond-v21-cyrillic_latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* cormorant-garamond-600 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';                                                                                                                    font-style: normal;                                                                                                                                   font-weight: 600;                                                                                                                                     src: url('fonts/cormorant-garamond-v21-cyrillic_latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */           url('fonts/cormorant-garamond-v21-cyrillic_latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* cormorant-garamond-700 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/cormorant-garamond-v21-cyrillic_latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/cormorant-garamond-v21-cyrillic_latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


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

:root {
    --wood-dark: #3E2723;
    --wood-medium: #5D4037;
    --wood-light: #8D6E63;
    --wood-accent: #6D4C41;
    --hay-gold: #C9A96E;
    --hay-light: #E8D5B7;
    --hay-pale: #F5EDE0;
    --burlap: #D4C5A9;
    --burlap-light: #EDE5D4;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --leaf-green: #6B8E23;
    --leaf-dark: #556B2F;
    --rust-red: #A0522D;
    --shadow: 0 4px 20px rgba(62, 39, 35, 0.15);
    --shadow-hover: 0 8px 30px rgba(62, 39, 35, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    background-color: var(--cream);
    color: var(--wood-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Текстура фона - имитация мешковины */
.rustic-bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--wood-medium) 2px, var(--wood-medium) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--wood-medium) 2px, var(--wood-medium) 3px);
    pointer-events: none;
}

/* Плавающие элементы - листья, колосья */
.rustic-element {
    position: fixed;
    opacity: 0;
    z-index: 50;
    animation: floatRustic linear forwards;
    pointer-events: none;
    font-size: 20px;
}

@keyframes floatRustic {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg) scale(1.1);
    }
}

/* Секции */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
    position: relative;
    text-align: center;
}

.section-content {
    max-width: 950px;
    width: 100%;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Заголовки секций */
.section-header {
    margin-bottom: 40px;
}

.section-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--wood-light);
    margin-bottom: 15px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 15px;
}

.divider-small {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--hay-gold), transparent);
    margin: 20px auto;
    position: relative;
}

.section-desc {
    font-size: 18px;
    color: var(--wood-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(180deg, rgba(253,248,240,0.95) 0%, rgba(245,237,224,0.98) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238D6E63' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Деревянная рамка сверху */
.hero-wood-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, 
        var(--wood-dark) 0%, 
        var(--wood-medium) 20%, 
        var(--wood-light) 50%, 
        var(--wood-medium) 80%, 
        var(--wood-dark) 100%);
    z-index: 20;
}

.wood-texture {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(0,0,0,0.05) 8px,
        rgba(0,0,0,0.05) 9px
    );
}

/* Стога сена по бокам */
.hero-hay-left,
.hero-hay-right {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 150px;
    background: linear-gradient(180deg, var(--hay-gold) 0%, var(--hay-light) 100%);
    border-radius: 50% 50% 0 0;
    opacity: 0.3;
    z-index: 1;
}

.hero-hay-left {
    left: -50px;
    transform: rotate(-5deg);
}

.hero-hay-right {
    right: -50px;
    transform: rotate(5deg);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 40px;
}

.hero-ornament-top {
    margin-bottom: 20px;
}

.wheat-icon {
    font-size: 36px;
    opacity: 0.7;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--wood-light);
    margin-bottom: 25px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--wood-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.amp {
    font-style: italic;
    color: var(--hay-gold);
    font-weight: 400;
}

.divider-wood {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.divider-wood::before,
.divider-wood::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--hay-gold);
}

.divider-leaf {
    font-size: 24px;
    opacity: 0.8;
}

.hero-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--wood-medium);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 18px;
    color: var(--wood-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--wood-light);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--wood-dark);
}

.scroll-arrow-rustic {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: bounceRustic 2s infinite;
}

@keyframes bounceRustic {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(8px) translateX(8px);
    }
    60% {
        transform: rotate(45deg) translateY(4px) translateX(4px);
    }
}

/* ===== ОБРАТНЫЙ ОТСЧЁТ ===== */
.countdown-section {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    min-height: auto;
    padding: 4rem 2rem;
}

.countdown-section .section-content {
    opacity: 1;
    transform: none;
}

.countdown-section .section-label {
    color: var(--hay-light);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.countdown-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--hay-gold);
    line-height: 1;
}

.countdown-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hay-light);
    margin-top: 8px;
}

.countdown-sep {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--hay-gold);
    opacity: 0.5;
}

/* ===== ПРОГРАММА ===== */
.program {
    background: var(--cream);
}

.timeline-rustic {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--hay-gold), var(--burlap), var(--hay-gold));
}

.timeline-item-rustic {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.timeline-item-rustic.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--cream);
    border: 2px solid var(--hay-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    margin-right: 25px;
    box-shadow: 0 0 0 4px var(--cream);
}

.dot-icon {
    font-size: 24px;
}

.timeline-card {
    background: var(--cream-dark);
    border-radius: 12px;
    padding: 25px 30px;
    flex: 1;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-wood-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hay-gold), var(--burlap), var(--hay-gold));
}

.timeline-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--hay-gold);
    display: block;
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 16px;
    color: var(--wood-light);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== ДЕТАЛИ ===== */
.details {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.details-rustic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.detail-rustic-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.detail-rustic-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-rustic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-burlap-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, var(--wood-medium) 3px, var(--wood-medium) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, var(--wood-medium) 3px, var(--wood-medium) 4px);
    pointer-events: none;
}

.detail-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hay-pale) 0%, var(--hay-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--hay-gold);
}

.detail-emoji {
    font-size: 32px;
}

.detail-rustic-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 12px;
}

.detail-rustic-card p {
    font-size: 15px;
    color: var(--wood-light);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== ГОСТЬ ===== */
.guest {
    background: var(--cream);
}

.guest-rustic-card {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.guest-card-inner {
    background: var(--cream-dark);
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--burlap);
}

.guest-card-inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed var(--hay-gold);
    border-radius: 10px;
    pointer-events: none;
    opacity: 0.5;
}

.guest-card-stamp {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--rust-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.3);
    transform: rotate(15deg);
}

.guest-card-stamp span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 2px;
}

.greeting {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 15px;
}

#guest-name {
    color: var(--hay-gold);
}

.guest-message {
    font-size: 17px;
    color: var(--wood-light);
    font-weight: 300;
    margin-bottom: 25px;
}

.guest-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--burlap);
}

.info-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wood-light);
}

.info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--wood-dark);
}

.guest-note {
    font-size: 14px;
    color: var(--wood-light);
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 25px;
}

.loading {
    font-style: italic;
    color: var(--wood-light);
    font-size: 16px;
    animation: pulseText 1.5s infinite;
    padding: 20px 0;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.error {
    color: #c0392b;
    font-size: 15px;
    padding: 15px;
    background: rgba(192, 57, 43, 0.08);
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

/* Кнопка */
.rustic-btn {
    position: relative;
    background: linear-gradient(145deg, var(--hay-gold), var(--hay-light));
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    color: var(--wood-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    margin-top: 10px;
}

.rustic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5);
}

.rustic-btn:active {
    transform: translateY(0);
}

.rustic-btn.booked {
    background: linear-gradient(145deg, var(--leaf-green), var(--leaf-dark));
    color: var(--cream);
    cursor: default;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
}

.rustic-btn.booked:hover {
    transform: none;
}

.sparkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    opacity: 0;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) translate(0, 0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.2) translate(var(--tx), var(--ty));
    }
}

/* ===== ИСТОРИИ ===== */
.stories {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.stories-rustic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.story-rustic-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--burlap-light);
}

.story-rustic-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-rustic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.story-card-tag {
    position: absolute;
    top: -12px;
    left: 25px;
    background: var(--hay-gold);
    color: var(--wood-dark);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 20px;
}

.story-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--hay-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 20px;
}

.story-emoji {
    font-size: 28px;
}

.story-text {
    font-size: 16px;
    color: var(--wood-light);
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
}

/* ===== ФУТЕР ===== */
.footer {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    min-height: auto;
    padding: 60px 20px;
    color: var(--hay-light);
}

.footer-wood-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hay-gold), transparent);
    margin: 0 auto 30px;
}

.footer-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--hay-gold);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-message {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 35px;
    color: var(--hay-light);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--hay-light);
}

.contact-icon {
    font-size: 18px;
}

.footer-wax-seal {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--rust-red) 0%, var(--wood-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 0 30px rgba(160, 82, 45, 0.4),
        inset 0 0 20px rgba(0,0,0,0.3);
    border: 4px solid var(--rust-red);
}

.footer-wax-seal span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--hay-light);
    text-align: center;
    line-height: 1.4;
}

.footer-note {
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--hay-light);
    opacity: 0.8;
}

.footer-wheat {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    opacity: 0.6;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 44px;
    }

    .hero-hay-left,
    .hero-hay-right {
        width: 150px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    section {
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 38px;
    }

    .hero-date {
        font-size: 26px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .countdown-num {
        font-size: 42px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-sep {
        font-size: 36px;
    }

    .timeline-line {
        left: 25px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 15px;
    }

    .dot-icon {
        font-size: 20px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h3 {
        font-size: 22px;
    }

    .details-rustic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .detail-rustic-card {
        padding: 25px 15px;
    }

    .guest-card-inner {
        padding: 40px 25px;
    }

    .guest-info-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .stories-rustic-grid {
        grid-template-columns: 1fr;
    }

    .footer-signature {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-date {
        font-size: 22px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-num {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 11px;
    }

    .countdown-sep {
        font-size: 28px;
    }

    .details-rustic-grid {
        grid-template-columns: 1fr;
    }

    .guest-card-inner {
        padding: 35px 20px;
    }

    .greeting {
        font-size: 24px;
    }

    .rustic-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 14px;
    }

    .footer-signature {
        font-size: 36px;
    }

    .footer-wax-seal {
        width: 100px;
        height: 100px;
    }

    .footer-wax-seal span {
        font-size: 14px;
    }
}

