* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    background: #fdf9f5;
    color: #3a3a3a;
    line-height: 1.7;
    font-size: 16px;
}

/* ================= ШАПКА ================= */
header {
    background: #fdf9f5;
    padding: 40px 20px 25px;
    text-align: center;
    border-bottom: 1px solid #f0e5dc;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 48px;
    color: #d4869c;
    letter-spacing: 8px;
    font-style: italic;
    line-height: 1;
}

/* ================= ОРНАМЕНТ ================= */
.ornament {
    max-width: 620px;
    margin: 10px auto 5px;
    padding: 0 15px;
}

.ornament svg {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    color: #a89b94;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    color: #3a3a3a;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

nav a:hover {
    color: #d4869c;
    border-bottom-color: #d4869c;
}

nav span {
    color: #d4c4b8;
    font-size: 14px;
}

/* ================= БАННЕР ================= */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    background: #fbeef0;
}

.hero-left {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    color: #d4869c;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 68px;
    line-height: 1;
    color: #3a3a3a;
    margin-bottom: 25px;
    font-weight: normal;
    font-style: italic;
}

.hero-desc {
    color: #7a6f6a;
    font-size: 17px;
    margin-bottom: 35px;
    max-width: 400px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: #d4869c;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: 0.3s;
    align-self: flex-start;
}

.btn:hover {
    background: #b86e84;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,134,156,0.3);
}

.hero-right {
    background-size: cover;
    background-position: center;
}

/* ================= ОБЩЕЕ ================= */
section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Georgia', serif;
    font-size: 48px;
    color: #3a3a3a;
    font-style: italic;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-label {
    color: #d4869c;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

/* ================= УСЛУГИ ================= */
.services {
    max-width: 1200px;
    margin: 0 auto;
}

.services-head {
    text-align: center;
    margin-bottom: 70px;
}

.services-head p {
    color: #a89b94;
    font-size: 16px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row.reverse .service-image {
    order: 2;
}

.service-row.reverse .service-text {
    order: 1;
}

.service-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 20px 40px rgba(212,134,156,0.15);
}

.service-text {
    padding: 20px 0;
}

.service-num {
    color: #d4869c;
    font-size: 14px;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 15px;
}

.service-text h3 {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-style: italic;
    font-weight: normal;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-text p {
    color: #7a6f6a;
    margin-bottom: 15px;
    font-size: 16px;
}

.service-price {
    color: #d4869c;
    font-size: 22px;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-top: 25px !important;
}

/* ================= ГАЛЕРЕЯ ================= */
.gallery {
    max-width: 100%;
    padding: 100px 0;
    background: #fbeef0;
}

.gallery-head {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 60px;
}

.gallery-head p {
    color: #a89b94;
    font-size: 15px;
    margin-top: 10px;
}

.gallery-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 60px;
    scroll-snap-type: x mandatory;
}

.gallery-strip::-webkit-scrollbar {
    height: 6px;
}

.gallery-strip::-webkit-scrollbar-thumb {
    background: #d4869c;
    border-radius: 3px;
}

.gallery-strip::-webkit-scrollbar-track {
    background: #f0e5dc;
}

.gallery-photo {
    flex: 0 0 320px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 160px 160px 20px 20px;
    box-shadow: 0 15px 35px rgba(212,134,156,0.15);
    transition: 0.4s;
    scroll-snap-align: center;
    cursor: pointer;
}

.gallery-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212,134,156,0.3);
}

/* ================= О НАС ================= */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-photo {
    height: 550px;
    background-size: cover;
    background-position: center;
    border-radius: 250px 250px 20px 20px;
    box-shadow: 0 20px 40px rgba(212,134,156,0.15);
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    color: #7a6f6a;
    margin-bottom: 18px;
    font-size: 16px;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    color: #3a3a3a;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0e5dc;
    letter-spacing: 0.5px;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li::first-letter {
    color: #d4869c;
}

/* ================= ЗАКАЗ ================= */
.order {
    max-width: 1100px;
    padding: 100px 40px;
}

.order-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(212,134,156,0.2);
}

.order-form-side {
    padding: 60px 50px;
}

.order-form-side h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.order-sub {
    color: #a89b94;
    font-size: 14px;
    margin-bottom: 35px;
}

.order form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order input,
.order select {
    padding: 16px 20px;
    border: 1px solid #f0e5dc;
    background: #fdf9f5;
    color: #3a3a3a;
    font-size: 15px;
    font-family: inherit;
    border-radius: 10px;
    transition: 0.3s;
}

.order input:focus,
.order select:focus {
    outline: none;
    border-color: #d4869c;
    background: #fff;
}

.order button {
    padding: 18px;
    background: #d4869c;
    color: #fff;
    border: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.3s;
    margin-top: 10px;
    font-family: inherit;
}

.order button:hover {
    background: #b86e84;
    box-shadow: 0 10px 25px rgba(212,134,156,0.4);
}

.order-photo {
    background-size: cover;
    background-position: center;
}

/* ================= ПОДВАЛ ================= */
footer {
    background: #fbeef0;
    padding: 70px 40px 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Georgia', serif;
    font-size: 42px;
    color: #d4869c;
    letter-spacing: 8px;
    font-style: italic;
    line-height: 1;
}

.footer-tagline {
    color: #a89b94;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 40px;
}

.footer-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-row p {
    color: #3a3a3a;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-hours {
    margin-bottom: 30px;
}

.footer-hours p {
    color: #a89b94;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #d4869c;
    text-decoration: none;
    border-radius: 50%;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(212,134,156,0.15);
}

.footer-socials a:hover {
    background: #d4869c;
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    color: #a89b94;
    font-size: 12px;
    letter-spacing: 2px;
    padding-top: 25px;
    border-top: 1px solid #f0e5dc;
}

/* ================= АДАПТИВ ================= */
@media (max-width: 900px) {

    header {
        padding: 25px 20px 20px;
    }

    .logo {
        font-size: 34px;
        letter-spacing: 5px;
    }

    .ornament {
        max-width: 100%;
        padding: 0 5px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    nav span {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 25px;
        text-align: center;
        align-items: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .btn {
        align-self: center;
    }

    .hero-right {
        height: 300px;
    }

    h2 {
        font-size: 32px;
    }

    .services-head {
        margin-bottom: 40px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-text {
        order: 0;
    }

    .service-image {
        height: 280px;
        border-radius: 140px 140px 15px 15px;
    }

    .service-text h3 {
        font-size: 26px;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery-head {
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .gallery-strip {
        padding: 15px 20px;
        gap: 15px;
    }

    .gallery-photo {
        flex: 0 0 240px;
        height: 320px;
        border-radius: 120px 120px 15px 15px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-photo {
        height: 350px;
        border-radius: 175px 175px 15px 15px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .order {
        padding: 60px 20px;
    }

    .order-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .order-form-side {
        padding: 40px 25px;
    }

    .order-form-side h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-photo {
        height: 250px;
    }

    footer {
        padding: 50px 20px 25px;
    }

    .footer-logo {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .footer-row {
        flex-direction: column;
        gap: 12px;
    }

    .footer-row p {
        font-size: 13px;
    }
}