:root {
    --pink: #ef4f73;
    --rose: #fff0f4;
    --ink: #252126;
    --muted: #6f6870;
    --line: #f1dce2;
    --gold: #c69b4b;
    --shadow: 0 14px 40px rgba(84,45,58,.09)
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "DM Sans",sans-serif
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px,92%);
    margin: auto
}

.topbar {
    min-height: 46px;
    border-bottom: 1px solid #f4e8eb;
    display: flex;
    align-items: center;
    font-size: 13px
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px
}

.topbar b {
    color: var(--pink)
}

.social {
    display: flex;
    gap: 8px
}

.social a {
    width: 26px;
    height: 26px;
    border: 1px solid #f2d7df;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pink)
}

.nav {
    height: 88px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #f5e9ec
}

.nav .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font: 37px/1 "Great Vibes",cursive;
    color: #df496b
}

.logo small {
    display: block;
    font: 600 9px "DM Sans";
    letter-spacing: 1.3px;
    color: #756b70;
    text-align: center;
    margin-top: 5px
}

.menu {
    display: flex;
    gap: 27px;
    font-size: 14px
}

.menu a:hover,.menu a.active {
    color: var(--pink)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 21px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px
}

.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 8px 22px rgba(239,79,115,.22)
}

.btn-outline {
    border: 1px solid #ef9aad;
    color: var(--pink);
    background: #fff
}

.hero {
    min-height: 570px;
    position: relative;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=85') center/cover;
    z-index: -2
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 30%,rgba(255,255,255,.68) 48%,rgba(255,255,255,.05) 78%);
    z-index: -1
}

.hero-content {
    padding: 110px 0 70px;
    width: 52%
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px
}

.eyebrow:before,.eyebrow:after {
    content: "❧";
    color: var(--gold);
    margin: 0 10px
}

h1 {
    font: 700 68px/.94 "Cormorant Garamond",serif;
    margin: 0 0 24px
}

.script {
    font: 400 73px "Great Vibes",cursive;
    color: var(--pink)
}

.hero p {
    font-size: 16px;
    line-height: 1.75;
    color: #5f5960;
    max-width: 480px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 27px
}

.trust {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap
}

.trust div {
    font-size: 11px;
    display: flex;
    gap: 8px;
    align-items: center
}

.dot {
    width: 31px;
    height: 31px;
    border: 1px solid #f0c7d1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pink)
}

.section {
    padding: 72px 0
}

.services {
    background: linear-gradient(#fff,#fff8fa)
}

.section-head {
    text-align: center;
    margin-bottom: 36px
}

.kicker {
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase
}

.section h2 {
    font: 700 42px "Cormorant Garamond",serif;
    margin: 8px 0
}

.section h2 span {
    color: var(--pink)
}

.section-sub {
    color: var(--muted);
    max-width: 620px;
    margin: auto;
    line-height: 1.7
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 14px
}

.card {
    background: #fff;
    border: 1px solid #f0e2e6;
    border-radius: 14px;
    padding: 24px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .25s
}

.card:hover {
    transform: translateY(-6px)
}

.icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: #fff2f5;
    display: grid;
    place-items: center;
    font-size: 28px
}

.card h3 {
    font: 700 18px "Cormorant Garamond",serif;
    margin: 5px 0 8px
}

.card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 22px
}

.flower-badge {
    position: absolute;
    right: -35px;
    bottom: 35px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f3d5dd;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    text-align: center;
    font: 600 18px "Cormorant Garamond"
}

.flower-badge span {
    color: var(--pink)
}

.about h2 {
    text-align: left;
    font-size: 47px
}

.about p {
    color: var(--muted);
    line-height: 1.75
}

.features {
    display: grid;
    gap: 18px;
    margin: 25px 0
}

.feature {
    display: flex;
    gap: 13px;
    align-items: flex-start
}

.feature .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0;
    font-size: 18px
}

.feature strong {
    font-size: 14px
}

.feature small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-size: 12px
}

.gallery {
    background: #fff8fa
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px
}

.gallery-grid img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px
}

.why {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    border: 1px solid #f2dfe4;
    border-radius: 18px;
    overflow: hidden
}

.why-item {
    text-align: center;
    padding: 28px 15px;
    border-right: 1px solid #f0e1e5
}

.why-item:last-child {
    border: 0
}

.why-item .icon {
    width: 48px;
    height: 48px;
    font-size: 20px
}

.why-item h4 {
    font: 700 17px "Cormorant Garamond";
    margin: 10px 0 5px
}

.why-item p {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5
}

.cta {
    margin: 60px auto 0;
    background: linear-gradient(100deg,#fff0f4,#fff9f7);
    border: 1px solid #f3dce2;
    border-radius: 20px;
    padding: 28px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.cta h3 {
    font: 700 34px "Cormorant Garamond";
    margin: 0
}

.cta h3 span {
    color: var(--pink)
}

.cta p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px
}

.phone {
    font: 700 22px "Cormorant Garamond";
    white-space: nowrap
}

footer {
    background: #fffaf9;
    border-top: 1px solid #f2e0e4;
    padding: 48px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 40px
}

footer h4 {
    font: 700 20px "Cormorant Garamond";
    margin: 0 0 15px
}

footer p,footer li {
    font-size: 12px;
    color: #70676d;
    line-height: 1.7
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none
}

footer li {
    margin: 7px 0
}

.copy {
    text-align: center;
    border-top: 1px solid #f0e0e4;
    margin-top: 35px;
    padding-top: 20px;
    font-size: 11px;
    color: #8a8086
}

.mobile {
    display: none
}

@media(max-width: 900px) {
    .menu {
        display:none
    }

    .mobile {
        display: block;
        border: 0;
        background: none;
        color: var(--pink);
        font-size: 25px
    }

    .hero-content {
        width: 72%
    }

    h1 {
        font-size: 55px
    }

    .script {
        font-size: 60px
    }

    .service-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .about {
        gap: 35px
    }

    .gallery-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .why {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width: 600px) {
    .topbar .address {
        display:none
    }

    .nav {
        height: 75px
    }

    .logo {
        font-size: 30px
    }

    .nav .btn {
        display: none
    }

    .hero {
        min-height: 680px
    }

    .hero:before {
        background-position: 68% center
    }

    .hero:after {
        background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 65%,rgba(255,255,255,.2) 100%)
    }

    .hero-content {
        width: 95%;
        padding: 80px 0 30px
    }

    h1 {
        font-size: 45px
    }

    .script {
        font-size: 52px
    }

    .hero p {
        font-size: 14px
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .section {
        padding: 55px 0
    }

    .section h2 {
        font-size: 36px
    }

    .about {
        grid-template-columns: 1fr
    }

    .about-image img {
        height: 330px
    }

    .flower-badge {
        right: 10px;
        bottom: 15px;
        width: 105px;
        height: 105px;
        font-size: 14px
    }

    .about h2 {
        font-size: 39px
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .gallery-grid img {
        height: 160px
    }

    .why {
        grid-template-columns: 1fr 1fr
    }

    .why-item {
        border-top: 1px solid #f0e1e5
    }

    .why-item:nth-child(1),.why-item:nth-child(2) {
        border-top: 0
    }

    .cta {
        padding: 25px;
        display: block;
        text-align: center
    }

    .phone {
        display: block;
        margin: 18px 0
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }
}

.collage-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;

    grid-auto-flow: dense;
}

/* Images */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* ---- COLLAGE SIZES ---- */

.item-1 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-6 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-7 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-8 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-9 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-10 {
    grid-column: span 2;
    grid-row: span 1;
}


/* TABLET */
@media (max-width: 900px) {

    .collage-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 170px;
    }

}


/* MOBILE */
@media (max-width: 600px) {

    .collage-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 8px;
        padding: 10px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-7 {
        grid-row: span 2;
    }

    .item-6 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .item-10 {
        grid-column: span 2;
    }

}