html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Montserrat', sans-serif;
    background: #f9f2eb;
    color: #3f302d;
}
html{
    scroll-behavior: smooth;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
.container{
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
}

img{
    display: block;
    max-width: 100%;
}

button,
a{
    -webkit-tap-highlight-color: transparent;
}

.page-shell{
    overflow: hidden;
    position: relative;
}

.page-shell::before,
.page-shell::after{
    content: '';
    position: fixed;
    inset: auto;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.page-shell::before{
    width: 340px;
    height: 340px;
    top: 90px;
    left: -100px;
    background: rgba(233, 189, 157, 0.55);
}

.page-shell::after{
    width: 320px;
    height: 320px;
    top: 0;
    right: -120px;
    background: rgba(213, 159, 154, 0.35);
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(250, 244, 239, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(108, 75, 71, 0.08);
}

.header-inner{
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand{
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #181112;
}

.site-nav{
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5d4a48;
}

.hero{
    padding: 34px 0 0;
}

.hero-inner,
.steps .container,
.reviews .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-kicker{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8d5958;
    text-align: center;
}

.section-kicker::before,
.section-kicker::after{
    content: '';
    width: 44px;
    height: 1px;
    background: rgba(141, 89, 88, 0.38);
}

.hero-title,
.section-title,
.about-content h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-align: center;
    color: #2d1f1d;
}

.hero-title{
    max-width: 940px;
}

.hero-title span,
.section-title span{
    font-family: 'Marck Script', cursive;
    color: #8b3f4c;
    letter-spacing: 0;
}

.hero-text{
    max-width: 760px;
    margin-top: 22px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    text-align: center;
    color: rgba(63, 48, 45, 0.76);
}

.hero-card{
    width: 100%;
    margin-top: 38px;
    padding: 18px 18px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 60px rgba(92, 56, 49, 0.12);
}

.hero-photo,
.about-photo{
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.hero-photo{
    aspect-ratio: 1.5 / 1;
}

.primary-button,
.secondary-button{
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
    min-width: min(100%, 420px);
    margin: 22px auto 0;
    padding: 21px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button{
    background: #392127;
    color: #fff;
    box-shadow: 0 14px 30px rgba(57, 33, 39, 0.18);
}

.secondary-button{
    background: #fff;
    color: #7f3542;
    box-shadow: 0 14px 30px rgba(35, 16, 22, 0.14);
}

.primary-button:hover,
.secondary-button:hover{
    transform: translateY(-2px);
}

.stats{
    margin-top: 48px;
    background: #2f1e24;
    color: #fff;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
}

.stat-item{
    text-align: center;
}

.stat-item strong{
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    color: #d6b170;
}

.stat-item span{
    display: block;
    margin-top: 6px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 244, 235, 0.82);
}

.about{
    padding: 54px 0 24px;
}

.about-card{
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 18px 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(245, 226, 211, 0.78), rgba(248, 238, 229, 0.92));
}

.about-photo{
    aspect-ratio: 1.35 / 1;
}

.about-content{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-content h2{
    font-size: clamp(34px, 4vw, 52px);
    text-align: left;
}

.about-content p{
    font-size: 18px;
    line-height: 1.65;
    color: rgba(63, 48, 45, 0.82);
}

.signature{
    font-family: 'Marck Script', cursive;
    font-size: 32px;
    color: #6e323c;
    text-align: right;
}

.steps{
    padding: 62px 0 36px;
}

.section-title{
    max-width: 760px;
}

.section-title-simple{
    margin-bottom: 34px;
}

.steps-grid{
    width: 100%;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.step-card,
.review-card,
.partner-card{
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(208, 180, 166, 0.22);
    box-shadow: 0 20px 50px rgba(78, 48, 44, 0.08);
}

.step-card{
    padding: 34px 26px;
    border-radius: 28px;
    text-align: center;
}

.step-icon{
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(245, 246, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.step-icon svg{
    width: 50px;
    height: 50px;
    fill: none;
    stroke: #4359ff;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    color: #2f1f1e;
}

.step-card p{
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(63, 48, 45, 0.72);
}

.cta-band{
    padding: 20px 0 24px;
}

.cta-band-inner{
    padding: 44px 22px !important;
    border-radius: 0;
    background:
        radial-gradient(circle at left bottom, rgba(160, 61, 78, 0.25), transparent 34%),
        radial-gradient(circle at right top, rgba(121, 30, 48, 0.25), transparent 28%),
        linear-gradient(135deg, #6f1f34, #7f2e3f 58%, #672132);
    color: #fff4f1;
    text-align: center;
}

.cta-band-inner p{
    max-width: 880px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.35;
    font-style: italic;
}

.partners{
    padding: 54px 0 70px;
}

.partners-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.partner-card{
    min-height: 116px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 12px;
    text-align: center;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #5e5553;
}

.reviews{
    padding: 56px 0 70px;
    border-top: 1px solid rgba(122, 92, 84, 0.08);
}

.reviews-list{
    width: 100%;
    margin-top: 36px;
    display: grid;
    gap: 20px;
}

.review-card{
    padding: 28px 22px;
    border-radius: 28px;
}

.stars{
    color: #d1ad69;
    font-size: 24px;
    letter-spacing: 0.12em;
}

.review-text{
    margin-top: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.42;
    color: rgba(74, 51, 46, 0.78);
}

.review-author{
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #edcbbf, #dba596);
    color: #fff;
    font-weight: 700;
}

.review-author strong{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #3d2c2a;
}

.review-author span{
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: rgba(63, 48, 45, 0.7);
}

.reviews-button{
    margin-top: 28px;
    box-sizing: border-box;
}

.lead-section{
    padding: 10px 0 72px;
}

.lead-form{
    width: min(100%, 760px);
    margin: 34px auto 0;
    box-sizing: border-box;
    padding: 28px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(208, 180, 166, 0.22);
    box-shadow: 0 20px 50px rgba(78, 48, 44, 0.08);
}

.form-field {
    display: block;
}

label.form-field span:not(.iti__country-name, .iti__dial-code) {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7d5957;
}

.form-field input{
    width: 100%;
    height: 58px;
    box-sizing: border-box;
    padding: 0 18px;
    border: 1px solid rgba(150, 112, 105, 0.22);
    border-radius: 16px;
    box-sizing: border-box;
    background: #fffdfb;
    font-size: 16px;
    color: #3f302d;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder{
    color: rgba(63, 48, 45, 0.42);
}

.form-field input:focus{
    border-color: rgba(127, 53, 66, 0.45);
    box-shadow: 0 0 0 4px rgba(127, 53, 66, 0.08);
}

.form-button{
    width: 100%;
    border: 0;
    cursor: pointer;
}

.site-footer{
    background: #2f1e24;
    color: rgba(255, 237, 230, 0.68);
}
.hero-card .primary-button{
    margin: 24px auto 0 !important;
    display: block;
    width: max-content;
    text-align: center;
}
.footer-inner{
    padding-top: 26px !important;
    padding-bottom: 26px !important;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 920px){
    .site-nav{
        gap: 14px;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .partners-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid{
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 720px){
    .header-inner{
        min-height: 58px;
    }

    .brand{
        font-size: 24px;
    }

    .site-nav{
        gap: 10px;
        font-size: 10px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .hero{
        padding-top: 20px;
    }

    .hero-card{
        padding: 14px 14px 20px;
        border-radius: 24px;
    }

    .hero-photo{
        aspect-ratio: 0.78 / 1;
    }

    .about{
        padding-top: 34px;
    }

    .about-card{
        padding: 0 14px 20px;
        border-radius: 24px;
    }

    .about-photo{
        aspect-ratio: 0.82 / 1;
    }

    .about-content p,
    .step-card p{
        font-size: 16px;
    }

    .cta-band-inner{
        padding: 34px 18px !important;
    }

    .partner-card{
        min-height: 92px;
        font-size: 16px;
    }

    .review-card{
        padding: 22px 18px;
    }

    .lead-form{
        padding: 22px 16px;
        border-radius: 24px;
    }

    .form-field input{
        height: 54px;
        padding: 0 16px;
    }
}

@media (min-width: 980px){
    .container{
        padding: 0 28px;
    }

    .about-card{
        grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
        align-items: center;
        padding: 22px;
    }

    .steps-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-list{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px){
    .site-header{
        position: relative;
    }

    .hero{
        padding-top: 42px;
    }

    .hero-card{
        max-width: 1180px;
        padding: 24px 24px 30px;
        border-radius: 34px;
    }

    .hero-photo{
        max-height: 700px;
    }

    .primary-button,
    .secondary-button{
        min-width: 430px;
    }
}
