* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #FFFFFF;
    --text-color: #2c2b28;
    --accent-color: #B22222;
    --accent-dark: #8B1A1A;
    --gray-color: #6f6f6f;
    --border-color: #e2ddd4;
    --font-serif: 'Playfair Display', serif;
    --font-typewriter: 'SpecialEliteRus', monospace;
    --font-sans: system-ui, sans-serif;
    --font-cursive: 'Pinyon Script', cursive;
}

@font-face{
    font-family:'SpecialEliteRus';
    src:url('fonts/special-elite-rus.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    position: relative;
    overflow-x: hidden;
	font-size:15px;
}

.bg-scrolling-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode:multiply;
}

.hero-main {
    min-height: 100vh;
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width:100%;
}

.hero-date{
    font-family:'Bodoni Moda', serif;
    font-size:clamp(1.6rem, 4vw, 3.2rem);
    font-weight:400;
    letter-spacing:4px;
    color:#000;
    margin-bottom:1.2rem;
    text-shadow:none;
}

.hero-names{
    font-family:'Bodoni Moda', serif;
    font-size:clamp(3.5rem, 10vw, 7rem);
    font-weight:400;
    letter-spacing:-3px;
    color:#000;
    line-height:0.92;
    text-transform:uppercase;
    text-shadow:none;
    margin:0.3rem 0 1.5rem;
}

.hero-sub{
    font-family:'Pinyon Script', cursive;
    font-size:clamp(2rem, 5vw, 4rem);
    color:#c40000;
    margin-top:0.5rem;
    font-weight:400;
    letter-spacing:0;
}

.hero-photo-spot {
    margin: 20px auto 0;
    width: 100%;
    max-width: 320px;
    background: rgba(255,250,255,0.9);
    border-radius: 32px;
    backdrop-filter: blur(2px);
    padding: 12px;
    border: 1px solid rgba(178,34,34,0.15);
}

.hero-photo-spot img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.photo-placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #8b6f4c;
    background: #ffffff; 
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    letter-spacing: 1px;
    border: 1px solid #eee;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.arrow-down-simple {
    width: 14px;
    height: 14px;
    border: solid var(--accent-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(12px) rotate(45deg); }
    60% { transform: translateY(6px) rotate(45deg); }
}

.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.section {
    padding: 70px 0 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
    color: #2c2b28;
}

.section-text {
    font-size:0.95rem;
    line-height:1.45;
    max-width:550px;
    margin:0 auto 1.2rem auto;
    color:var(--gray-color);
    font-weight:400;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    width: 200px;
    margin: 0 auto;
}

.envelope-section {
    padding: 40px 0 50px;
}

.invitation-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    background: none;
    text-shadow: none;
}

.invitation-text-simple {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.65;
    color: #4a4a4a;
    max-width: 90%;
    margin: 0 auto 2rem auto;
    background: none;
    text-shadow: none;
    font-weight: 400;
}

.envelope-wrapper{
    position:relative;
    max-width:700px;
    width:100%;
    margin:0 auto;
}

.envelope-letter{
    position:absolute;
    left:50%;
    top:52%;
    transform:translate(-50%, -50%);
    width:68%;
    background:#ffffff;
    padding:35px 30px;
    z-index:1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.envelope-letter p{
    font-family:'Playfair Display', serif;
    font-size:20px;
    line-height:1.7;
    color:#4a4a4a;
    text-align:center;
}

.envelope-image-clean {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
  
.timer-section{
    width:100%;
    padding:0;
    position:relative;
    overflow:hidden;
    background:#ffffff;
}

.timer-box{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    background-image:url('images/fon.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border:1px solid #d87878;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:70px 40px 65px;
	min-height:420px;
}

.timer-box .title{
    font-family:'Bodoni Moda', serif;
    font-size:72px;
    font-weight:400;
    line-height:0.95;
    letter-spacing:-3px;
    text-align:center;
    color:#000;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.timer-box .subtitle{
    font-family:'Pinyon Script', cursive;
    font-size:54px;
    color:#c63b3b;
    margin-bottom:55px;
    position:relative;
    z-index:2;
}

.countdown{
    display:flex;
    gap:55px;
    position:relative;
    z-index:2;
}

.item{
    text-align:center;
}

.item span{
    display:block;
    font-family:'Bodoni Moda', serif;
    font-size:56px;
    font-weight:400;
    color:#000;
}

.item p{
    margin-top:8px;
    font-family:'SpecialEliteRus', monospace;
    font-size:17px;
    color:#000;
}

@media(max-width:900px){
    .timer-section{ padding:80px 20px; }
    .timer-box{ padding:55px 14px; }
    .timer-box .title{ font-size:44px; }
    .timer-box .subtitle{ font-size:42px; }
    .countdown{ gap:28px; flex-wrap:wrap; justify-content:center; }
    .item span{ font-size:36px; }
    .item p{ font-size:11px; }
	    .contacts-title{
        font-size:58px !important;
    }
    .contacts-description{
        font-size:18px !important;
    }
    .contacts-list{
        grid-template-columns:1fr;
    }
    .contact-name{
        font-size:44px !important;
    }
    .contact-phone{
        font-size:28px !important;
    }
    .contact-button{
        width:260px;
        height:62px;
        font-size:26px !important;
    }
    .wishes-title {
         font-size: 58px !important;
    }
} 

.contacts-section{
    position:relative;
    padding:130px 20px 140px;
    overflow:hidden;
}

.contacts-title{
    position:relative;
    z-index:2;
    font-family:'Bodoni Moda', serif;
    font-size:92px;
    font-weight:400;
    letter-spacing:-3px;
    line-height:0.9;
    color:#000;
    margin-bottom:55px;
}

.contacts-image-wrapper{
    position:relative;
    z-index:2;
    width:100%;
    max-width:360px;
    margin:0 auto 45px;
}

.contacts-image{
    width:100%;
    display:block;
}

.contacts-description{
    position:relative;
    z-index:2;
    font-family:'SpecialEliteRus', monospace;
    font-size:18px;
    line-height:1.35;
	letter-spacing:-0.2px;
    color:#000;
    margin-bottom:50px;
}

.contacts-list{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    max-width:1000px;
    margin:0 auto;
}

.contact-item{
    text-align:center;
}

.contact-name{
    font-family:'Bodoni Moda', serif;
    font-size:58px;
    font-weight:400;
    line-height:1;
    color:#000;
    margin-bottom:15px;
}

.contact-phone{
    display:block;
    font-family:'Bodoni Moda', serif;
    font-size:34px;
    font-weight:400;
    color:#000;
    text-decoration:none;
    margin-bottom:35px;
}

.contact-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:320px;
    height:72px;
    background:#c40000;
    color:#fff;
    text-decoration:none;
    font-family:'Bodoni Moda', serif;
    font-size:32px;
    transition:0.3s;
}

.contact-button:hover{
    opacity:0.85;
}

@media(max-width:900px){
    .contacts-title{ font-size:58px; }
    .contacts-description{ font-size:18px; }
    .contacts-list{ grid-template-columns:1fr; }
    .contact-name{ font-size:44px; }
    .contact-phone{ font-size:28px; }
    .contact-button{ width:260px; height:62px; font-size:26px; }
}

@media(max-width:600px){
    .contacts-section{ padding:90px 20px 100px; }
    .contacts-title{ font-size:42px !important;}
    .contacts-description{ font-size:16px !important;}
    .contact-name{
        font-family:'SpecialEliteRus', monospace;
        font-size:34px !important;
        line-height:1.4;
        color:#000;
        margin-bottom:15px;
    }
    .contact-phone{
        display:block;
        font-family:'SpecialEliteRus', monospace;
        font-size:24px !important;
        line-height:1.5;
        color:#000;
        text-decoration:none;
        margin-bottom:35px;
    }
    .contact-button{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width:320px;
        height:72px;
        background:#c40000;
        color:#fff;
        text-decoration:none;
        font-family:'SpecialEliteRus', monospace;
        font-size:24px;
        transition:0.3s;
    }
	    .wishes-slider{
        gap:15px;
    }

    .wishes-title{
        font-size:42px !important; /* Добавлено !important */
    }

    .wishes-subtitle{
        font-size:32px;
    }

    .wish-card{
        min-height:220px;
    }

    .wish-card p{
        font-family:'SpecialEliteRus', monospace;
        font-size:16px;
        line-height:1.25;
		letter-spacing:0.6px;
        color:#000;
        text-align:center;
        max-width:560px;
        margin:0 auto;
    }

    .wish-btn{
        font-size:38px;
    }

    .timeline-title {
        font-size: 42px !important;
    }
    .timeline-subtitle {
        font-size: 34px !important;
    }
    .rsvp-title {
        font-size: 38px !important;
    }
    .rsvp-helper {
        font-size: 16px !important;
    }
	body{
    font-size:13px;
}
}

.timeline-section{
    padding:120px 20px 90px;
    position:relative;
    overflow:hidden;
	background:transparent;
}

.timeline-head{
    position:relative;
    z-index:2;
    margin-bottom:90px;
}

.timeline-title{
    font-family:'Bodoni Moda', serif;
    font-size:72px;
    font-weight:400;
    letter-spacing:-2px;
    line-height:0.9;
    color:#000;
    margin-bottom:8px;
}

.timeline-subtitle{
    font-family:'Pinyon Script', cursive;
    font-size:52px;
    line-height:1;
    color:#c63b3b;
}

.timeline-wrapper{
    max-width:1400px;
    margin:0 auto;
    position:relative;
	background:transparent;
}

.timeline-items{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    position:relative;
    z-index:2;
}

.timeline-item{
    text-align:center;
    position:relative;
}

.timeline-icon{
    width:102px;
    height:102px;
    object-fit:contain;
    margin-bottom:38px;
    opacity:0.8;
}

.timeline-time{
    font-family:'Bodoni Moda', serif;
    font-size:42px;
    font-weight:400;
    color:#000;
    margin-bottom:12px;
}

.timeline-text{
    font-family:'SpecialEliteRus', monospace;
    font-size:16px;
    line-height:1.35;
    color:#000;
}

.wishes-section{
    padding:130px 20px 120px;
    position:relative;
    overflow:hidden;
}

.wishes-head{
    margin-bottom:70px;
}

.wishes-title{
    font-family:'Bodoni Moda', serif;
    font-size:92px;
    font-weight:400;
    letter-spacing:-3px;
    line-height:0.9;
    color:#000;
    margin-bottom:10px;
}

.wishes-subtitle{
    font-family:'Pinyon Script', cursive;
    font-size:56px;
    color:#c63b3b;
}

.wishes-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    max-width:1200px;
    margin:0 auto;
}

.wishes-viewport{
    width:100%;
    max-width:720px;
    overflow:hidden;
}

.wishes-track{
    display:flex;
    transition:transform 0.5s ease;
}

.wish-card{
    min-width:100%;
    background:transparent;
    border:none;
    padding:60px 50px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:320px;
    position:relative;
}

.wish-card p{
    font-family:'SpecialEliteRus', monospace;
    font-size:24px;
    line-height:1.35;
    color:#000;
    text-align:center;
}

.wish-btn{
    background:none;
    border:none;
    font-size:70px;
    font-weight:300;
    color:#4e6481;
    cursor:pointer;
    transition:0.3s;
    flex-shrink:0;
}

.wish-btn:hover{
    opacity:0.5;
}

@media(max-width:900px){
    .wishes-section{ padding:90px 20px; }
    .wishes-title{ font-size:58px; }
    .wishes-subtitle{ font-size:40px; }
    .wish-card{ padding:40px 25px; min-height:260px; }
    .wish-card p{ font-size:18px; line-height:1.7; }
    .wish-btn{ font-size:48px; }
}

@media(max-width:600px){
    .wishes-slider{ gap:15px; }
    .wishes-title{ font-size:42px; }
    .wishes-subtitle{ font-size:32px; }
    .wish-card{ min-height:220px; }
    .wish-card p{
        font-family:'SpecialEliteRus', monospace;
        font-size:14px;
        line-height:1.2;
		letter-spacing:0.5px;
        color:#000;
        text-align:center;
        max-width:100%;
        margin:0 auto;
		padding:0 8px;
    }
    .wish-btn{ font-size:38px; }
}

@media(max-width:1000px){
    .timeline-section{ padding:90px 20px 70px; }
    .timeline-title{ font-size:54px; }
    .timeline-subtitle{ font-size:40px; }
    .timeline-items{ grid-template-columns:repeat(2,1fr); gap:50px 30px; }
    .timeline-wave{ top:20px; }
}

@media(max-width:600px){
    .timeline-items{ grid-template-columns:1fr; }
    .timeline-title{ font-size:42px; }
    .timeline-subtitle{ font-size:34px; }
    .timeline-icon{ width:78px; height:78px; margin-bottom:25px; }
    .timeline-time{ font-size:34px; }
    .timeline-text{ font-size:16px; }
    .timeline-wave{ display:none; }
}

.location-section {
    position: relative;
    background: transparent;
}

.location-section .section-title {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 3px;
}

.location-subtitle {
    font-family: var(--font-cursive);
    color: var(--accent-color);
    font-size: 2.2rem;
    margin: 0 0 1.5rem;
}

.location-address {
    font-family: var(--font-typewriter);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: #4a3e32;
}

.location-image-small {
    max-width: 220px;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 24px;
    border: 1px solid #ddd2c2;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.button-solid {
    background-color: var(--accent-color);
    color: white;
    border-radius: 40px;
    padding: 12px 36px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.button-solid:hover {
    background-color: var(--accent-dark);
    transform: scale(1.02);
}

.form-container {
    max-width: 540px;
    margin: 2rem auto 0;
    text-align: left;
    background-color: #ffffff;
    padding: 32px 38px;
    border-radius: 36px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    border: 1px solid #f0e7de;
}

.form-group {
    margin-bottom: 1.6rem;
}

.form-group legend, .form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    display: block;
    color: #3d3529;
}

input[type="text"],
input[type="email"],
textarea{
    border:1px solid #e2d9cf;
    border-radius:28px;
    padding:10px 18px;
    width:100%;
    font-family:var(--font-sans);
    background:#fefcf9;
    transition:0.2s;
    font-weight:400;
}

fieldset{
    border:1px solid #e2d9cf;
    border-radius:28px;
    padding:18px 20px;
}

input[type="radio"],
input[type="checkbox"]{
    width:auto;
    margin:0;
    accent-color:#B22222;
    transform:scale(1.1);
    flex-shrink:0;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(178,34,34,0.1);
}

.radio-label,
.checkbox-label{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
    font-size:15px;
    font-weight:400;
    cursor:pointer;
}

button.button {
    background-color: var(--accent-color);
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 44px;
    margin-top: 10px;
    cursor: pointer;
    color: white;
    font-family: var(--font-sans);
}

button.button:hover {
    background-color: var(--accent-dark);
}

.footer {
    padding: 45px 20px 50px;
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
    position: relative;
    z-index: 1;
    background-color: var(--bg-color);
}

.footer p {
    font-weight: 400;
}

.footer-names {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-top: 0.4rem;
}

.dresscode-v2 {
    padding: 70px 0 60px;
}

.dresscode-v2__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    letter-spacing: 2px;
    color: #1f1a15;
    margin-bottom: 10px;
}

.dresscode-v2__text {
    font-family: var(--font-typewriter);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3d3529;
    max-width: 560px;
    margin: 0 auto;
}

.dresscode-v2__palette {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 16px auto 0;
}

.dresscode-v2__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.18);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.dresscode-v2__dot--black { background: #0b0b0b; }
.dresscode-v2__dot--wine  { background: #5b0a10; }
.dresscode-v2__dot--beige { background: #c9b7a6; }

.dresscode-v2__grid {
    position: relative;
    margin-top: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.dresscode-v2__col {
    position: relative;
    z-index: 1;
    min-width: 260px; 
}

.dresscode-v2__label {
    font-family: var(--font-cursive);
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    color: var(--accent-color);
    margin-bottom: 18px;
}

.dresscode-v2__collage {
    position: relative;
    height: 520px;
    max-width: 520px;
    margin: 0 auto;
}

.dresscode-v2__card {
    position: absolute;
    height: auto;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.06);
}

.dresscode-v2__card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.dresscode-v2__collage--ladies .c1 { left: 0%;  top: 22%; width: clamp(120px, 30%, 190px); z-index: 1; }
.dresscode-v2__collage--ladies .c2 { left: 20%; top: 14%; width: clamp(160px, 42%, 260px); z-index: 3; }
.dresscode-v2__collage--ladies .c3 { left: 56%; top: 0%;  width: clamp(110px, 26%, 170px); z-index: 2; }
.dresscode-v2__collage--ladies .c4 { left: 48%; top: 55%; width: clamp(130px, 33%, 210px); z-index: 4; }
.dresscode-v2__collage--ladies .c5 { left: 10%; top: 66%; width: clamp(130px, 33%, 210px); z-index: 2; }

.dresscode-v2__collage--gents .c1 { left: 0%;  top: 26%; width: clamp(110px, 26%, 165px); z-index: 1; }
.dresscode-v2__collage--gents .c2 { left: 22%; top: 14%; width: clamp(170px, 44%, 280px); z-index: 4; }
.dresscode-v2__collage--gents .c3 { left: 62%; top: 6%;  width: clamp(120px, 28%, 175px); z-index: 2; }
.dresscode-v2__collage--gents .c4 { left: 18%; top: 64%; width: clamp(120px, 30%, 185px); z-index: 3; }
.dresscode-v2__collage--gents .c5 { left: 58%; top: 62%; width: clamp(120px, 30%, 185px); z-index: 3; }

@media (max-width: 768px) {
    .dresscode-v2__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .dresscode-v2__collage {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .dresscode-v2__collage { height: 460px; }
    .dresscode-v2__card { padding: 8px; }
}

@media (max-width: 650px) {
    .section-title { font-size: 2.2rem; }
    .form-container { padding: 24px 20px; }
    .location-section .section-title { font-size: 2.2rem; }
    .location-subtitle { font-size: 1.6rem; }
    .program-item { gap: 15px; flex-wrap: wrap; }
    .hero-names { letter-spacing: 3px; }
    .invitation-title { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .invitation-text-simple { font-size: 0.9rem; max-width: 95%; }
    .envelope-wrapper { max-width: 90%; }
}

/* ========================================
   MOBILE WISHES FIX
======================================== */

@media(max-width:600px){
    .wishes-section{ padding:70px 12px 60px; }
    .wishes-slider{ gap:4px; align-items:center; }
    .wishes-viewport{ max-width:100%; }
    .wish-card{ min-height:180px; padding:25px 18px; display:flex; align-items:center; justify-content:center; }
    .wish-card p{ font-family:'SpecialEliteRus', monospace; font-size:17px; line-height:1.5; letter-spacing:0.1px; color:#000; text-align:center; max-width:100%; padding:0 8px; }
    .wish-btn{ font-size:34px; flex-shrink:0; }
    .wishes-title{ font-size:42px; }
    .wishes-subtitle{ font-size:30px; }
	.wish-btn{ position:relative; z-index:5; }
    .wishes-viewport{ position:relative; z-index:1; }
}

/* ======================================== CALENDAR */

.calendar-section{ padding:120px 20px 100px; position:relative; }
.calendar-wrapper{ position:relative; max-width:900px; margin:0 auto; }
.calendar-heart{ position:absolute; left:50%; top:58%; transform:translate(-50%, -50%); width:840px; z-index:0; opacity:0.9; pointer-events:none; }
.calendar-grid{ position:relative; z-index:2; border-top:1px solid #777; border-bottom:1px solid #777; }
.calendar-head{ display:grid; grid-template-columns:repeat(3,1fr); border-bottom:1px solid #777; }
.calendar-head div{ padding:10px 0; font-family:'SpecialEliteRus', monospace; font-size:14px; letter-spacing:1px; color:#000; border-right:1px solid #777; }
.calendar-head div:last-child{ border-right:none; }
.calendar-body{ display:grid; grid-template-columns:repeat(3,1fr); }
.calendar-day{ position:relative; padding:28px 10px 22px; border-right:1px solid #777; }
.calendar-day:last-child{ border-right:none; }
.calendar-month{ font-family:'SpecialEliteRus', monospace; font-size:18px; color:#000; margin-bottom:10px; }
.calendar-number{ font-family:'Bodoni Moda', serif; font-size:110px; font-weight:400; line-height:0.9; color:#000; }

@media(max-width:600px){
    .calendar-section{ padding:80px 10px 70px; }
    .calendar-heart{ width:440px !important; top:54% !important; }
    .calendar-number{ font-size:72px; }
    .calendar-month{ font-size:14px; }
    .calendar-head div{ font-size:11px; }
}

.reveal{ will-change: transform, opacity, filter, clip-path; }

/* ========================================
   BODONI — ТОЛЬКО КРУПНЫЕ ЗАГОЛОВКИ
======================================== */
.hero-date, .hero-names, .invitation-title, .location-section .section-title, .timeline-title, .dresscode-v2__title, .timer-box .title, .wishes-title, .contacts-title, .rsvp-title, .calendar-number{
    font-family:'Bodoni Moda', serif !important;
}

/* ========================================
   PINYON — КРАСНЫЕ ПОДПИСИ
======================================== */
.hero-sub, .location-subtitle, .timeline-subtitle, .timer-box .subtitle, .wishes-subtitle{
    font-family:'Pinyon Script', cursive !important;
}

/* ========================================
   SPECIAL ELITE — ВЕСЬ ОСТАЛЬНОЙ ТЕКСТ
======================================== */
body, .calendar-head div, .calendar-month, .location-address, .timeline-time, .timeline-text, .dresscode-v2__text, .item span, .item p, .wish-card p, .contacts-description, .contact-name, .contact-phone, .contact-button, .rsvp-subtitle, .form-group label, .form-group legend, .radio-label, .checkbox-label, input, textarea, .button-solid, .envelope-letter p, .section-text{
    font-family:'SpecialEliteRus', monospace !important;
}

/* ========================================
   РАЗМЕРЫ
======================================== */
.calendar-head div{ font-size:15px; }
.calendar-month{ font-size:15px; }
.location-address{ font-size:20px; line-height:1.8; }
.timeline-time{ font-size:40px; }
.timeline-text{ font-size:18px; line-height:1.6; }
.dresscode-v2__text{ font-size:18px; line-height:1.35; }
.item span{ font-size:54px; }
.item p{ font-size:15px; }
.wish-card p{ font-size:18px; line-height:1.35; }
.contacts-description{ font-size:17px; line-height:1.35; }
.contact-name{ font-size:34px; }
.contact-phone{ font-size:18px; }
.contact-button{ font-size:24px; }
.rsvp-subtitle{ font-size:18px; }
.form-group label, .form-group legend{ font-size:17px; }
.radio-label, .checkbox-label{ font-size:18px; }
input, textarea{ font-size:18px; }

/* ========================================
   RSVP FINAL
======================================== */

/* заголовок */

.rsvp-title{
    font-family:'Bodoni Moda', serif !important;

    font-size:52px;

    font-weight:400;

    line-height:1;

    letter-spacing:-2px;

    color:#000;

    margin-bottom:28px;
}

/* текст */

.rsvp-helper{
    font-family:'SpecialEliteRus', monospace !important;

    font-size:16px;

    line-height:1.35;

    letter-spacing:-0.2px;

    color:#5f5f5f;

    max-width:760px;

    margin:0 auto 45px;
}

/* названия полей */

.rsvp-section .form-group > label,
.rsvp-section .form-group > legend{

    font-family:'SpecialEliteRus', monospace !important;

    font-size:22px;

    font-weight:400;

    line-height:1.1;

    letter-spacing:-1px;

    color:#000;

    margin-bottom:14px;

    text-transform:none;
}

/* radio/checkbox */

.rsvp-section .radio-label,
.rsvp-section .checkbox-label{

    font-family:'SpecialEliteRus', monospace !important;

    font-size:15px;

    line-height:1.35;

    color:#000;
}

/* inputs */

.rsvp-section input,
.rsvp-section textarea{

    font-family:'SpecialEliteRus', monospace !important;

    font-size:15px;

    color:#000;
}

/* mobile */

@media(max-width:600px){

    .rsvp-title{
        font-size:34px;
    }

    .rsvp-helper{
        font-size:14px;
    }

    .rsvp-section .form-group > label,
    .rsvp-section .form-group > legend{
        font-size:18px;
    }

}