/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff7f8;
    color: #4a3037;
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {

    --cream: #fff7f8;
    --cream-dark: #fdf0f2;

    --blush: #f9e1e6;
    --soft-pink: #efc2cb;
    --pink: #dc9ba9;

    --rose: #bd7181;
    --deep-rose: #985666;

    --text: #4a3037;
    --muted: #8b6f77;

    --white: #fff;

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;

    --container: 1380px;
}


/* =========================
   UTILITIES
========================= */

.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================
   NAVBAR
========================= */

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;
}

.navbar {
    height: 105px;

    display: flex;
    align-items: center;
}

.logo {

    font-family: var(--serif);

    font-size: 2.15rem;
    font-weight: 500;

    letter-spacing: 0.08em;

    color: var(--rose);
}

.nav-links {

    display: flex;
    align-items: center;

    gap: 38px;

    margin-left: auto;
    margin-right: 45px;
}

.nav-links a {

    position: relative;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--text);

    transition: color 0.3s ease;
}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--pink);

    transform:
        translateX(-50%)
        scale(0);

    transition: transform 0.3s ease;
}

.nav-links a:hover {

    color: var(--rose);
}

.nav-links a:hover::after {

    transform:
        translateX(-50%)
        scale(1);
}


/* NAV BUTTON */

.nav-cta {

    padding: 13px 25px;

    border: 1px solid var(--soft-pink);

    border-radius: 100px;

    background: rgba(255,255,255,0.3);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: var(--rose);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-cta:hover {

    background: var(--pink);

    color: white;

    transform: translateY(-2px);
}


/* MOBILE */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    cursor: pointer;
}

.menu-toggle span {

    display: block;

    width: 26px;
    height: 1px;

    margin: 6px 0;

    background: var(--text);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: transparent;
}

/* Soft pink wave 1 */
.hero::before {
    content: "";

    position: absolute;

    width: 125%;
    height: 62%;

    top: -18%;
    left: -12%;

    background:
        linear-gradient(
            115deg,
            rgba(250, 222, 228, 1.20) 0%,
            rgba(247, 210, 219, 0.72) 35%,
            rgba(255, 235, 239, 0.38) 68%,
            rgba(255, 247, 248, 0) 100%
        );

    border-radius: 0 0 55% 45%;

    filter: blur(28px);

    transform: rotate(-4deg);

    pointer-events: none;

    z-index: 0;
}




/* Soft pink wave 2 */



/* =========================
   HERO CONTENT
========================= */

.hero-content {

    flex: 1;

    display: grid;

    grid-template-columns:
        1fr 0.82fr;

    align-items: center;

    gap: 80px;

    padding-top: 115px;
    padding-bottom: 45px;
}


/* =========================
   HERO TEXT
========================= */

.hero-copy {

    position: relative;

    z-index: 5;

    padding-left: 85px;
}


/* LABEL */

.hero-label {

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 26px;

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: var(--rose);
}

.hero-label span {

    width: 24px;
    height: 1px;

    background: var(--soft-pink);
}


/* TITLE */

.hero h1 {

    max-width: 700px;

    font-family: var(--serif);

    font-size:
        clamp(4.5rem, 7.3vw, 8rem);

    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -0.045em;

    color: var(--text);
}

.hero h1 em {

    display: block;

    padding-left: 70px;

    color: var(--rose);

    font-style: italic;
}


/* DESCRIPTION */

.hero-description {

    max-width: 420px;

    margin-top: 36px;

    font-size: 0.91rem;

    line-height: 1.85;

    color: var(--muted);
}


/* =========================
   ACTIONS
========================= */

.hero-actions {

    display: flex;
    align-items: center;

    gap: 28px;

    margin-top: 38px;
}

.button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 53px;

    padding: 0 28px;

    border-radius: 100px;

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.button-primary {

    background:
        linear-gradient(
            135deg,
            #d99aa8,
            #bd7181
        );

    color: white;

    box-shadow:
        0 15px 35px
        rgba(189, 113, 129, 0.2);
}

.button-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 20px 40px
        rgba(189, 113, 129, 0.28);
}

.text-link {

    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.text-link span {

    font-family: var(--serif);

    font-size: 1.2rem;

    color: var(--rose);

    transition: transform 0.3s ease;
}

.text-link:hover span {

    transform:
        scale(1.2)
        rotate(-8deg);
}


/* =========================
   SIGNATURE
========================= */

.hero-signature {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 42px;

    color: var(--muted);
}

.hero-signature p {

    font-size: 0.58rem;
    font-weight: 500;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.signature-line {

    width: 28px;
    height: 1px;

    background: var(--soft-pink);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {

    position: relative;

    width: min(100%, 550px);

    justify-self: end;
}


/* GLOW */

.image-glow {

    position: absolute;

    inset: -35px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(239,194,203,0.65),
            transparent 65%
        );

    z-index: 0;
}


/* IMAGE */

.image-frame {

    position: relative;

    z-index: 2;

    aspect-ratio: 0.78;

    overflow: hidden;

    border-radius:
        50% 50% 18px 18px;

    background: var(--blush);

    box-shadow:
        0 30px 80px
        rgba(100, 55, 65, 0.13);
}

.image-frame::before {

    content: "";

    position: absolute;

    inset: 13px;

    z-index: 3;

    border:
        1px solid
        rgba(255,255,255,0.7);

    border-radius:
        48% 48% 12px 12px;

    pointer-events: none;
}

.image-frame img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.1s
        cubic-bezier(.2,.8,.2,1);
}

.image-frame:hover img {

    transform: scale(1.04);
}


/* =========================
   FLOATING CARD
========================= */

.floating-card {

    position: absolute;

    left: -70px;
    bottom: 85px;

    z-index: 5;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,248,248,0.92);

    border:
        1px solid
        rgba(217,154,168,0.5);

    box-shadow:
        0 20px 45px
        rgba(100,55,65,0.1);

    transform: rotate(-8deg);
}

.floating-card p {

    font-family: var(--serif);

    font-size: 1.05rem;

    line-height: 1.15;

    text-align: center;

    color: var(--rose);
}

.card-flower {

    margin-bottom: 7px;

    font-size: 0.9rem;

    color: var(--pink);
}


/* CAPTION */

.image-caption {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 14px;

    padding-inline: 5px;

    font-size: 0.61rem;
    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: var(--muted);
}

.image-caption span:first-child {

    color: var(--rose);
}

.image-caption span:last-child {

    font-family: var(--serif);

    font-size: 1.2rem;

    color: var(--rose);
}


/* =========================
   BOTANICAL
========================= */

.botanical {

    position: absolute;

    z-index: 1;

    pointer-events: none;
}

.botanical-left {

    left: -45px;
    bottom: -110px;

    width: 330px;

    opacity: 0.75;

    transform: rotate(-4deg);
}

.botanical svg {

    width: 100%;
    height: auto;

    overflow: visible;
}

.botanical path {

    fill: none;

    stroke: var(--pink);

    stroke-width: 1.15;

    stroke-linecap: round;
}

.botanical .flower circle {

    fill: #f9e1e6;

    stroke: var(--pink);

    stroke-width: 1;
}


/* =========================
   FLOATING FLOWERS
========================= */

.floating-flower {

    position: absolute;

    z-index: 2;

    font-family: var(--serif);

    color: var(--pink);

    pointer-events: none;
}

.flower-top {

    top: 19%;

    left: 47%;

    font-size: 1.3rem;

    transform: rotate(15deg);
}

.flower-bottom {

    right: 43%;

    bottom: 12%;

    font-size: 1.5rem;

    opacity: 0.6;

    transform: rotate(-15deg);
}


/* =========================
   HERO BOTTOM
========================= */

.hero-bottom {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: var(--muted);
}

.scroll-indicator {

    display: flex;

    align-items: center;

    gap: 10px;
}

.scroll-indicator span {

    color: var(--rose);

    font-size: 1rem;
}

.hero-note {

    display: flex;

    align-items: center;

    gap: 10px;
}

.tiny-flower {

    color: var(--pink);

    font-size: 0.8rem;
}


/* =========================
   PLACEHOLDER SECTIONS
========================= */

.placeholder-section {

    min-height: 70vh;

    display: grid;

    place-items: center;

    background: var(--cream-dark);

    font-family: var(--serif);

    font-size: 3rem;

    color: var(--rose);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .container {

        width:
            calc(100% - 50px);
    }

    .nav-links {

        gap: 20px;

        margin-right: 25px;
    }

    .hero-content {

        grid-template-columns:
            1fr 0.8fr;

        gap: 45px;
    }

    .hero-copy {

        padding-left: 25px;
    }

    .hero h1 {

        font-size:
            clamp(4rem, 7.5vw, 6rem);
    }

    .hero h1 em {

        padding-left: 35px;
    }

    .floating-card {

        left: -45px;

        width: 120px;
        height: 120px;
    }

    .botanical-left {

        opacity: 0.4;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .container {

        width:
            calc(100% - 40px);
    }

    .navbar {

        height: 85px;
    }

    .nav-links,
    .nav-cta {

        display: none;
    }

    .menu-toggle {

        display: block;
    }

    .hero-content {

        grid-template-columns: 1fr;

        gap: 48px;

        padding-top: 125px;
        padding-bottom: 40px;
    }

    .hero-copy {

        padding-left: 0;
    }

    .hero h1 {

        font-size:
            clamp(3.7rem, 17vw, 5.5rem);
    }

    .hero h1 em {

        padding-left: 30px;
    }

    .hero-description {

        max-width: 390px;

        margin-top: 28px;
    }

    .hero-actions {

        flex-wrap: wrap;

        gap: 20px;

        margin-top: 30px;
    }

    .hero-signature {

        margin-top: 30px;
    }

    .hero-visual {

        width:
            min(100%, 480px);

        justify-self: center;
    }

    .floating-card {

        left: -10px;
        bottom: 70px;

        width: 105px;
        height: 105px;
    }

    .floating-card p {

        font-size: 0.85rem;
    }

    .flower-top {

        top: 40%;

        left: 8%;

        opacity: 0.5;
    }

    .flower-bottom {

        right: 10%;

        bottom: 20%;
    }

    .botanical-left {

        left: -125px;

        bottom: 300px;

        width: 245px;

        opacity: 0.3;
    }

    .hero-bottom {

        padding-bottom: 18px;
    }

    .hero-note {

        display: none;
    }

    .placeholder-section {

        min-height: 50vh;

        font-size: 2rem;
    }
}


.background-wave {
    position: absolute;

    pointer-events: none;

    z-index: 0;
}

.background-wave-center {
    width: 75%;
    height: 45%;

    top: 32%;
    left: 12%;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 225, 232, 0.55),
            rgba(255, 225, 232, 0) 70%
        );

    filter: blur(45px);

    transform:
        rotate(-8deg);
}



.hero-content,
.hero-bottom {
    position: relative;
    z-index: 5;
}

.site-header {
    z-index: 100;
}



/* =========================
   ABOUT SECTION
========================= */
.about-section {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: transparent;
}







/* subtle background wave */




/* =========================
   INNER
========================= */

.about-inner {

    position: relative;

    display: grid;

    grid-template-columns:
        0.9fr 1fr;

    align-items: center;

    gap: 110px;

    padding-top: 110px;
    padding-bottom: 110px;
}


/* =========================
   VISUAL
========================= */

.about-visual {

    position: relative;

    width: min(100%, 530px);

    justify-self: center;
}


/* MAIN IMAGE */

.about-image-main {

    position: relative;

    width: 78%;

    margin-left: auto;

    overflow: hidden;

    border-radius:
        48% 48% 14px 14px;

    box-shadow:
        0 30px 70px
        rgba(90, 50, 60, 0.13);
}

.about-image-main::before {

    content: "";

    position: absolute;

    inset: 12px;

    z-index: 2;

    border:
        1px solid
        rgba(255,255,255,0.75);

    border-radius:
        45% 45% 10px 10px;

    pointer-events: none;
}

.about-image-main img {

    display: block;

    width: 100%;
    height: 620px;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}

.about-image-main:hover img {

    transform: scale(1.04);
}


/* =========================
   SMALL IMAGE
========================= */

.about-image-small {

    position: absolute;

    left: 0;
    bottom: 45px;

    width: 180px;
    height: 220px;

    overflow: hidden;

    border:
        8px solid
        #fff7f8;

    box-shadow:
        0 20px 45px
        rgba(80,45,55,0.13);

    transform: rotate(-5deg);
}

.about-image-small img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================
   FLOWER
========================= */

.about-flower {

    position: absolute;

    right: 0;
    top: 5px;

    font-family: var(--serif);

    font-size: 2.5rem;

    color: var(--pink);

    transform: rotate(15deg);
}


/* =========================
   NUMBER
========================= */

.about-number {

    position: absolute;

    right: 5px;
    bottom: 5px;

    font-family: var(--serif);

    font-size: 0.8rem;

    font-style: italic;

    color: var(--rose);
}


/* =========================
   CONTENT
========================= */

.about-content {

    max-width: 570px;
}


/* LABEL */

.section-label {

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: var(--rose);
}

.section-label span {

    width: 28px;
    height: 1px;

    background: var(--soft-pink);
}


/* TITLE */

.about-content h2 {

    max-width: 570px;

    font-family: var(--serif);

    font-size:
        clamp(3.5rem, 5.5vw, 6rem);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.04em;

    color: var(--text);
}

.about-content h2 em {

    color: var(--rose);

    font-style: italic;
}


/* LEAD */

.about-lead {

    max-width: 470px;

    margin-top: 35px;

    font-family: var(--serif);

    font-size: 1.15rem;

    line-height: 1.7;

    color: var(--text);
}


/* BODY */

.about-text {

    max-width: 470px;

    margin-top: 18px;

    font-size: 0.88rem;

    line-height: 1.9;

    color: var(--muted);
}


/* =========================
   SIGNATURE
========================= */

.about-signature {

    display: flex;
    flex-direction: column;

    margin-top: 30px;
}

.about-signature span {

    font-family: var(--serif);

    font-size: 0.75rem;

    font-style: italic;

    color: var(--muted);
}

.about-signature strong {

    margin-top: 2px;

    font-family: var(--serif);

    font-size: 1.8rem;

    font-weight: 500;

    letter-spacing: 0.04em;

    color: var(--rose);
}


/* =========================
   STATS
========================= */

.about-stats {

    display: flex;

    align-items: stretch;

    gap: 0;

    margin-top: 42px;

    border-top:
        1px solid
        rgba(217,154,168,0.35);

    border-bottom:
        1px solid
        rgba(217,154,168,0.35);
}

.about-stat {

    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px 18px;

    border-right:
        1px solid
        rgba(217,154,168,0.35);
}

.about-stat:first-child {

    padding-left: 0;
}

.about-stat:last-child {

    border-right: none;
}

.about-stat strong {

    font-family: var(--serif);

    font-size: 1.8rem;

    font-weight: 400;

    color: var(--rose);
}

.about-stat span {

    margin-top: 4px;

    font-size: 0.58rem;
    font-weight: 600;

    line-height: 1.5;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--muted);
}


/* =========================
   DECORATION
========================= */

.about-decoration {

    position: absolute;

    left: 5%;
    top: 12%;

    font-family: var(--serif);

    font-size: 1.7rem;

    color: var(--pink);

    opacity: 0.7;

    transform: rotate(-15deg);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .about-inner {

        grid-template-columns:
            0.85fr 1fr;

        gap: 60px;
    }

    .about-image-main img {

        height: 540px;
    }

    .about-image-small {

        width: 145px;
        height: 185px;
    }

    .about-content h2 {

        font-size:
            clamp(3.2rem, 5.5vw, 5rem);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .about-section {

        min-height: auto;
    }

    .about-inner {

        grid-template-columns: 1fr;

        gap: 70px;

        padding-top: 90px;
        padding-bottom: 90px;
    }

    .about-visual {

        width: min(100%, 470px);
    }

    .about-image-main {

        width: 80%;
    }

    .about-image-main img {

        height: 540px;
    }

    .about-image-small {

        left: -5px;
        bottom: 30px;

        width: 130px;
        height: 165px;
    }

    .about-content {

        max-width: 100%;
    }

    .about-content h2 {

        font-size:
            clamp(3.2rem, 14vw, 5rem);
    }

    .about-lead {

        font-size: 1.05rem;
    }

    .about-stats {

        flex-wrap: wrap;
    }

    .about-stat {

        min-width: 33%;

        padding: 18px 10px;
    }

    .about-stat:first-child {

        padding-left: 0;
    }

    .about-stat strong {

        font-size: 1.5rem;
    }

    .about-stat span {

        font-size: 0.52rem;
    }

    .about-decoration {

        left: 3%;
        top: 5%;
    }
}


main {
    position: relative;
    background: #fff7f8;
    overflow: hidden;
}

main::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse 80% 28% at 8% 8%,
            rgba(250, 222, 228, 0.9),
            transparent 70%
        ),
        radial-gradient(
            ellipse 75% 32% at 92% 18%,
            rgba(247, 210, 219, 0.6),
            transparent 72%
        ),
        radial-gradient(
            ellipse 80% 35% at 15% 48%,
            rgba(249, 225, 230, 0.55),
            transparent 72%
        ),
        radial-gradient(
            ellipse 75% 35% at 88% 70%,
            rgba(239, 194, 203, 0.4),
            transparent 72%
        );

    z-index: 0;
}

main > * {
    position: relative;
    z-index: 1;
}



/* =========================
   HERO → ABOUT BRANCH
========================= */

.about-section {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.transition-branch {
    position: absolute;

    left: 50%;
    top: -125px;

    width: min(1250px, 100vw);
    height: 250px;

    transform: translateX(-50%);

    z-index: 100;

    pointer-events: none;

    opacity: 0.78;
}

.transition-branch svg {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.branch-stem {
    fill: none;

    stroke: #c98798;
    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.transition-flower circle {
    fill: #f5d5dc;

    stroke: #c98798;
    stroke-width: 0.75;
}



/* =========================
   ABOUT BOTANICAL DECORATION
========================= */

.about-botanical {
    position: absolute;

    pointer-events: none;

    z-index: 1;

    opacity: 0.45;
}

.about-botanical-left {
    left: -45px;
    top: 18%;

    width: 260px;
    height: 560px;

    transform: rotate(-3deg);
}

.about-botanical svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.about-branch-stem {
    fill: none;

    stroke: #d39aaa;

    stroke-width: 1.05;

    stroke-linecap: round;
}

.about-flower-small circle {
    fill: #f4d3da;

    stroke: #d39aaa;

    stroke-width: 0.75;
}


/* =========================
   SMALL RIGHT DECORATION
========================= */

.about-botanical-right {
    position: absolute;

    right: 8%;
    top: 23%;

    display: flex;
    flex-direction: column;

    gap: 85px;

    z-index: 1;

    pointer-events: none;

    color: #d39aaa;

    opacity: 0.42;
}

.about-botanical-right span {
    font-family: var(--serif);

    font-size: 1.15rem;

    transform: rotate(-12deg);
}

.about-botanical-right span:nth-child(2) {
    font-size: 1.6rem;

    transform: rotate(18deg);
}

.about-botanical-right span:nth-child(3) {
    transform: rotate(-5deg);
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    margin-top: -70px;
    padding: 210px;

    background: transparent;

    isolation: isolate;
    z-index: 2;
}


.services-section::before {
    content: none;

    position: absolute;

    top: 0;
    left: -10%;

    width: 120%;
    height: 500px;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 247, 248, 0) 0%,
            rgba(255, 247, 248, 0.02) 15%,
            rgba(255, 250, 251, 0.08) 35%,
            rgba(255, 250, 251, 0.25) 55%,
            rgba(255, 250, 251, 0.55) 75%,
            rgba(255, 250, 251, 0.9) 100%
        );

    filter: blur(25px);

    pointer-events: none;

    z-index: -1;
}











/* =========================
   INNER
========================= */

.services-inner {
    position: relative;

    z-index: 2;
}


/* =========================
   HEADER
========================= */

.services-header {
    max-width: 720px;

    margin-bottom: 100px;
}

.services-header h2 {
    max-width: 650px;

    font-family: var(--serif);

    font-size:
        clamp(3.5rem, 6vw, 6.5rem);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.045em;

    color: var(--text);
}

.services-header h2 em {
    color: var(--rose);

    font-style: italic;
}

.services-header p {
    max-width: 500px;

    margin-top: 30px;

    font-size: 0.9rem;

    line-height: 1.9;

    color: var(--muted);
}


/* =========================
   SERVICE LIST
========================= */

.services-list {
    display: flex;

    flex-direction: column;

    gap: 65px;
}


/* =========================
   SERVICE ITEM
========================= */

.service-item {
    position: relative;

    display: grid;

    grid-template-columns:
        70px 390px 1fr;

    align-items: center;

    gap: 65px;

    min-height: 350px;

    padding:
        45px 0;

    border-top:
        1px solid
        rgba(189,113,129,0.22);

    transition:
        transform 0.4s ease;
}

.service-item:last-child {
    border-bottom:
        1px solid
        rgba(189,113,129,0.22);
}

.service-item:hover {
    transform: translateX(8px);
}


/* =========================
   NUMBER
========================= */

.service-number {
    align-self: flex-start;

    padding-top: 8px;

    font-family: var(--serif);

    font-size: 0.8rem;

    font-style: italic;

    color: var(--rose);
}


/* =========================
   IMAGE
========================= */

.service-image {
    position: relative;

    width: 390px;

    height: 290px;

    overflow: hidden;

    border-radius:
        48% 48% 16px 16px;

    background: var(--blush);

    box-shadow:
        0 25px 65px
        rgba(90,50,60,0.12);
}

.service-image::after {
    content: "";

    position: absolute;

    inset: 10px;

    border:
        1px solid
        rgba(255,255,255,0.65);

    border-radius:
        42% 42% 10px 10px;

    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}


/* =========================
   INFO
========================= */

.service-info {
    width: 100%;
    max-width: 680px;
}

.service-title-row {
    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 14px;

    border-bottom:
        1px solid
        rgba(189,113,129,0.16);
}

.service-title-row h3 {
    font-family: var(--serif);

    font-size: 2.35rem;

    font-weight: 400;

    color: var(--text);
}

.service-price {
    white-space: nowrap;

    font-size: 0.65rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--rose);
}

.service-info > p {
    max-width: 560px;

    margin-top: 24px;

    font-size: 0.9rem;

    line-height: 1.95;

    color: var(--muted);
}


/* =========================
   LINK
========================= */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    font-size: 0.65rem;

    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: var(--rose);
}

.service-link span {
    font-family: var(--serif);

    font-size: 1.15rem;

    transition:
        transform 0.3s ease;
}

.service-link:hover span {
    transform:
        scale(1.25)
        rotate(-8deg);
}


/* =========================
   REVERSE ITEMS
========================= */

.service-item-reverse {
    grid-template-columns:
        70px 1fr 390px;
}

.service-item-reverse .service-image {
    grid-column: 3;
    grid-row: 1;
}

.service-item-reverse .service-info {
    grid-column: 2;
    grid-row: 1;
}

.service-item-reverse .service-number {
    grid-column: 1;
}


/* =========================
   BOTTOM NOTE
========================= */

.services-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    max-width: 850px;

    margin: 120px auto 0;

    padding: 35px 45px;

    text-align: center;

    border-top:
        1px solid
        rgba(189,113,129,0.22);

    border-bottom:
        1px solid
        rgba(189,113,129,0.22);
}

.services-note span {
    color: var(--pink);

    font-size: 1.5rem;

    flex-shrink: 0;

    transform: rotate(-8deg);
}

.services-note span:last-child {
    transform: rotate(8deg);
}


  .services-note p {
    max-width: 650px;

    font-family: var(--serif);

    font-size: 1.25rem;

    font-style: italic;

    line-height: 1.7;

    color: var(--text);
}

.services-note span {
    color: var(--pink);
    font-size: 1.4rem;
}

.services-note p {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--muted);
}


/* =========================
   DECORATIVE FLOWER
========================= */

.services-flower {
    position: absolute;

    top: 12%;
    right: 7%;

    font-family: var(--serif);

    font-size: 2rem;

    color: var(--pink);

    opacity: 0.55;

    transform: rotate(15deg);

    pointer-events: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .service-item {
        grid-template-columns:
            50px 300px 1fr;

        gap: 40px;

        min-height: 310px;
    }

    .service-image {
        width: 300px;
        height: 235px;
    }

    .service-item-reverse {
        grid-template-columns:
            50px 1fr 300px;
    }

    .service-title-row h3 {
        font-size: 1.9rem;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .services-note {
    margin-top: 80px;

    padding: 30px 20px;

    gap: 16px;
}

.services-note span {
    font-size: 1.15rem;
}

.services-note p {
    font-size: 1rem;
    line-height: 1.6;
}

    .services-section {
        padding: 100px 0 90px;
    }

    .services-header {
        margin-bottom: 65px;
    }

    .services-header h2 {
        font-size:
            clamp(3.2rem, 14vw, 5rem);
    }

    .services-header p {
        margin-top: 25px;
    }

    .services-list {
        gap: 35px;
    }

    .service-item,
    .service-item-reverse {

        display: grid;

        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .service-number {
        grid-column: 1 !important;
        grid-row: 1 !important;

        padding-top: 5px;
    }

    .service-image,
    .service-item-reverse .service-image {

        grid-column: 2;
        grid-row: 1;

        width: 100%;
        height: 260px;

        margin-bottom: 25px;
    }

    .service-info,
    .service-item-reverse .service-info {

        grid-column: 2;
        grid-row: 2;

        width: 100%;
    }

    .service-title-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .service-title-row h3 {
        font-size: 1.7rem;
    }

    .service-info > p {
        font-size: 0.82rem;
    }

    .services-note {
        margin-top: 70px;

        padding-inline: 15px;
    }

    .services-flower {
        top: 5%;
        right: 8%;

        font-size: 1.5rem;
    }
}


/* =========================
SERVICES BOTANICAL DECORATION
========================= */

.services-botanical {
    position: absolute;

    left: -35px;
    top: 130px;

    width: 390px;
    height: 700px;

    pointer-events: none;

    opacity: 0.28;

    z-index: 0;

    transform: rotate(-7deg);
}

.services-botanical svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.services-branch-stem {
    fill: none;

    stroke: #c98798;

    stroke-width: 1.1;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-flower circle {
    fill: #f5d5dc;

    stroke: #c98798;

    stroke-width: 0.75;
}


/* =========================
SMALL DECORATIONS
========================= */

.services-deco {
    position: absolute;

    font-family: var(--serif);

    color: #c98798;

    pointer-events: none;

    z-index: 1;

    opacity: 0.35;
}

.services-deco-one {
    top: 17%;
    right: 8%;

    font-size: 1.6rem;

    transform: rotate(12deg);
}

.services-deco-two {
    top: 47%;
    right: 4%;

    font-size: 1.15rem;

    opacity: 0.25;

    transform: rotate(-15deg);
}

.services-deco-three {
    top: 67%;
    left: 6%;

    font-size: 1rem;

    opacity: 0.25;

    transform: rotate(20deg);
}

.services-deco-four {
    bottom: 10%;
    right: 12%;

    font-size: 1.4rem;

    opacity: 0.25;

    transform: rotate(-12deg);
}


/* =========================
MOBILE
========================= */

@media (max-width: 760px) {

    .services-botanical {
        left: -120px;
        top: 150px;

        width: 300px;
        height: 560px;

        opacity: 0.2;
    }

    .services-deco-one {
        top: 10%;
        right: 8%;
    }

    .services-deco-two {
        top: 42%;
        right: 5%;
    }

    .services-deco-three {
        left: 5%;
    }

    .services-deco-four {
        right: 8%;
        bottom: 7%;
    }

}


/* =========================
   SERVICES — EXTRA DECOR
========================= */

.services-botanical-right {
    position: absolute;

    right: -55px;
    top: 180px;

    width: 390px;
    height: 720px;

    pointer-events: none;

    opacity: 0.22;

    z-index: 0;

    transform: rotate(5deg);
}

.services-botanical-right svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}


/* =========================
   LÉA WATERMARK
========================= */

.services-watermark {
    position: absolute;

    
    left: 3%;
    bottom: 30%;

    font-family: var(--serif);

    font-size: clamp(8rem, 18vw, 17rem);

    font-weight: 400;

    line-height: 0.7;

    letter-spacing: -0.08em;

    color: rgba(189, 113, 129, 0.045);

    pointer-events: none;

    z-index: 0;

    user-select: none;
}


/* =========================
   FLOATING DETAILS
========================= */

.services-petal {
    position: absolute;

    font-family: var(--serif);

    color: #c98798;

    pointer-events: none;

    z-index: 1;

    opacity: 0.32;
}

.petal-1 {
    top: 18%;
    left: 42%;

    font-size: 1.1rem;

    transform: rotate(18deg);
}

.petal-2 {
    top: 31%;
    right: 30%;

    font-size: 1.7rem;

    opacity: 0.18;

    transform: rotate(-15deg);
}

.petal-3 {
    top: 53%;
    left: 7%;

    font-size: 1.35rem;

    opacity: 0.2;

    transform: rotate(25deg);
}

.petal-4 {
    top: 62%;
    right: 18%;

    font-size: 0.8rem;

    opacity: 0.28;
}

.petal-5 {
    bottom: 20%;
    left: 47%;

    font-size: 1.3rem;

    opacity: 0.2;

    transform: rotate(-10deg);
}

.petal-6 {
    bottom: 13%;
    right: 8%;

    font-size: 2rem;

    opacity: 0.18;
}


/* =========================
   ORNAMENTAL CURVE
========================= */

.services-ornament {
    position: absolute;

    right: 23%;
    top: 8%;

    width: 240px;
    height: 150px;

    pointer-events: none;

    opacity: 0.2;

    z-index: 0;

    transform: rotate(-12deg);
}

.services-ornament svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.services-ornament path {
    fill: none;

    stroke: #c98798;

    stroke-width: 1;

    stroke-linecap: round;
}


/* =========================
   EXTRA SOFT GLOWS
========================= */




/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .services-botanical-right {
        right: -145px;
        top: 350px;

        width: 300px;
        height: 560px;

        opacity: 0.15;
    }

    .services-watermark {
        left: -5%;

        bottom: 4%;

        font-size: 8rem;
    }

    .services-ornament {
        right: -30px;
        top: 12%;

        width: 180px;

        opacity: 0.12;
    }

    .petal-1 {
        left: 70%;
    }

    .petal-2 {
        right: 8%;
    }

    .petal-3 {
        left: 4%;
    }

    .petal-4 {
        right: 7%;
    }

    .petal-5 {
        left: 65%;
    }

    .petal-6 {
        right: 5%;
    }
}


/* =========================
   SERVICES — LEFT BOTANICAL
========================= */

.services-left-botanical {
    position: absolute;

    left: -75px;
    top: 120px;

    width: 390px;
    height: 850px;

    pointer-events: none;

    z-index: 1;

    opacity: 0.72;

    transform: rotate(-5deg);
}

.services-left-botanical svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}


/* STEM */

.services-left-stem {
    fill: none;

    stroke: #bd7181;

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* LEAVES */

.services-leaf {
    fill: #efc2cb;

    stroke: #bd7181;

    stroke-width: 0.8;

    opacity: 0.75;
}


/* FLOWERS */

.services-left-flower circle {
    fill: #f3ccd5;

    stroke: #bd7181;

    stroke-width: 0.9;
}

.services-left-flower.small {
    opacity: 0.8;
}


/* =========================
   LEFT DECORATIVE PETALS
========================= */

.services-section::after {
    /* zadržavamo postojeći glow,
       ali mu dodajemo mali floralni detalj */
    pointer-events: none;
}


/* sitni elementi oko leve strane */

.services-section {
    --services-deco-color: #bd7181;
}

.services-section .services-deco-three {
    left: 15%;
    top: 32%;

    font-size: 1.7rem;

    opacity: 0.55;

    transform: rotate(-20deg);
}


/* =========================
   EXTRA LEFT DETAILS
========================= */

.services-left-detail {
    position: absolute;

    font-family: var(--serif);

    color: var(--services-deco-color);

    pointer-events: none;

    z-index: 1;
}



.left-detail-1 {
    left: 9%;
    top: 23%;

    font-size: 2rem;

    opacity: 0.6;

    transform: rotate(-15deg);
}

.left-detail-2 {
    left: 18%;
    top: 58%;

    font-size: 1.5rem;

    opacity: 0.45;

    transform: rotate(20deg);
}

.left-detail-3 {
    left: 7%;
    top: 72%;

    font-size: 1.3rem;

    letter-spacing: 8px;

    opacity: 0.35;
}


/* =========================================
   GALLERY
========================================= */

.gallery-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0 120px;

    
}

.gallery-inner {
    position: relative;
    z-index: 2;
}


/* ---------- HEADER ---------- */

.gallery-header {
    max-width: 680px;
    margin: 0 auto 80px;
    text-align: center;
}

.gallery-header .section-label {
    justify-content: center;
    margin-bottom: 22px;
}

.gallery-header h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 400;
    color: #30272a;
}

.gallery-header h2 em {
    display: block;
    color: #b77d89;
    font-style: italic;
}

.gallery-header p {
    max-width: 540px;
    margin: 28px auto 0;
    font-size: 15px;
    line-height: 1.8;
    color: #817477;
}


/* ---------- WATERMARK ---------- */

.gallery-watermark {
    position: absolute;
    top: 90px;
    right: -40px;

    font-family: "Playfair Display", serif;
    font-size: clamp(130px, 18vw, 260px);
    line-height: 1;
    font-style: italic;

    color: rgba(183, 125, 137, 0.055);

    pointer-events: none;
    user-select: none;
}


/* ---------- GRID ---------- */

.gallery-grid {
    display: grid;

    grid-template-columns: 1.35fr 0.85fr 0.85fr;
    grid-template-rows: 330px 330px;

    gap: 26px;

    max-width: 1120px;
    margin: 0 auto;
}


/* ---------- CARDS ---------- */

.gallery-card {
    min-width: 0;
}

.gallery-card-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-card-top {
    grid-column: 2;
    grid-row: 1;
}

.gallery-card-middle {
    grid-column: 3;
    grid-row: 1;
}

.gallery-card-bottom {
    grid-column: 2;
    grid-row: 2;
}

.gallery-card-wide {
    grid-column: 3;
    grid-row: 2;
}


/* ---------- IMAGE ---------- */

.gallery-image {
    position: relative;
    width: 100%;
    height: calc(100% - 45px);

    overflow: hidden;

    background: #f3e9eb;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1),
        filter 0.7s ease;
}


/* elegant hover */

.gallery-card:hover .gallery-image img {
    transform: scale(1.045);
}


/* ---------- META ---------- */

.gallery-meta {
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 3px;

    border-bottom: 1px solid rgba(90, 65, 70, 0.16);
}

.gallery-meta span {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: #ad8b91;
}

.gallery-meta p {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-style: italic;

    color: #4c3c40;
}


/* ---------- BOTTOM NOTE ---------- */

.gallery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-top: 70px;
}

.gallery-note span {
    font-size: 15px;
    color: #c28b96;
}

.gallery-note p {
    margin: 0;

    font-family: var(--serif);

    font-size: 1.05rem;

    font-style: italic;

    line-height: 1.6;

    color: var(--muted);
}


/* ---------- MOBILE ---------- */

@media (max-width: 900px) {

    .gallery-section {
        padding: 110px 0 90px;
    }

    .gallery-header {
        margin-bottom: 55px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .gallery-card-main,
    .gallery-card-top,
    .gallery-card-middle,
    .gallery-card-bottom,
    .gallery-card-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-card-main {
        grid-column: 1 / 3;
    }

    .gallery-image {
        height: 300px;
    }

    .gallery-card-main .gallery-image {
        height: 500px;
    }

    .gallery-watermark {
        top: 80px;
        right: -70px;
    }
}


@media (max-width: 600px) {

    .gallery-section {
        padding: 85px 0 70px;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-header h2 {
        font-size: 42px;
    }

    .gallery-header p {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-card-main {
        grid-column: auto;
    }

    .gallery-image,
    .gallery-card-main .gallery-image {
        height: 390px;
    }

    .gallery-meta {
        height: 42px;
    }

    .gallery-note {
        gap: 12px;
        margin-top: 50px;
    }

    .gallery-note p {
        font-size: 14px;
        text-align: center;
    }

    .gallery-watermark {
        font-size: 120px;
        top: 40px;
        right: -45px;
    }
}





.services-section::before {
    content: "";

    position: absolute;

    width: 110%;
    height: 70%;

    left: -5%;
    top: 10%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(239, 194, 203, 0.80) 0%,
            rgba(249, 225, 230, 0.28) 35%,
            rgba(249, 225, 230, 0.10) 60%,
            transparent 78%
        );

    filter: blur(35px);

    pointer-events: none;

    z-index: 0;
}


.gallery-section::before {
    content: "";

    position: absolute;

    width: 50%;
    height: 50%;

    left: -5%;
    top: 10%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(239, 194, 203, 1) 0%,
            rgba(249, 225, 230, 0.28) 35%,
            rgba(249, 225, 230, 0.10) 60%,
            transparent 78%
        );

    

    pointer-events: none;

    z-index: 0;
}







/* =========================================
   GALLERY DECORATIONS
========================================= */

.gallery-botanical {
    position: absolute;
    z-index: 1;

    pointer-events: none;
    user-select: none;

    opacity: 0.38;
}

.gallery-botanical svg {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-branch-stem {
    fill: none;

    stroke: #b98a92;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-flower {
    fill: none;

    stroke: #b98a92;
    stroke-width: 1.2;
}

.gallery-flower-small {
    opacity: 0.8;
}


/* LEFT */

.gallery-botanical-left {
    width: 260px;
    height: 460px;

    left: -45px;
    top: 120px;

    transform: rotate(-4deg);
}


/* RIGHT */

.gallery-botanical-right {
    width: 220px;
    height: 370px;

    right: -35px;
    bottom: 80px;

    transform: rotate(5deg);
}


/* keep content above decorations */

.gallery-inner {
    position: relative;
    z-index: 3;
}



/* =========================================
   GALLERY BOTANICAL DECORATIONS
========================================= */

.gallery-botanical {
    position: absolute;
    z-index: 1;

    pointer-events: none;
    user-select: none;

    opacity: 0.34;
}

.gallery-botanical svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* STEMS */

.gallery-stem {
    fill: none;
    stroke: #b88791;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* LEAVES */

.gallery-leaf {
    fill: rgba(184, 135, 145, 0.12);
    stroke: #b88791;
    stroke-width: 1.05;
}


/* FLOWERS */

.gallery-flower-large {
    fill: rgba(255, 244, 246, 0.45);
    stroke: #b88791;
    stroke-width: 1.15;
}

.gallery-flower-small {
    fill: none;
    stroke: #b88791;
    stroke-width: 1.1;
}


/* =========================================
   POSITIONS
========================================= */

/* upper left */
.gallery-botanical-left-top {
    width: 300px;
    height: 440px;

    left: -70px;
    top: 60px;

    transform: rotate(-3deg);
}


/* lower left */
.gallery-botanical-left-bottom {
    width: 230px;
    height: 320px;

    left: -25px;
    bottom: 40px;

    transform: rotate(7deg);

    opacity: 0.25;
}


/* upper right */
.gallery-botanical-right-top {
    width: 280px;
    height: 400px;

    right: -65px;
    top: 110px;

    transform: rotate(4deg);

    opacity: 0.28;
}


/* lower right */
.gallery-botanical-right-bottom {
    width: 260px;
    height: 360px;

    right: -45px;
    bottom: 20px;

    transform: rotate(-5deg);

    opacity: 0.32;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gallery-botanical-left-top {
        width: 220px;
        height: 340px;
        left: -80px;
        top: 100px;
    }

    .gallery-botanical-left-bottom {
        display: none;
    }

    .gallery-botanical-right-top {
        width: 210px;
        height: 310px;
        right: -80px;
        top: 180px;
    }

    .gallery-botanical-right-bottom {
        width: 200px;
        height: 280px;
        right: -70px;
        bottom: 30px;
    }
}


@media (max-width: 600px) {

    .gallery-botanical {
        opacity: 0.22;
    }

    .gallery-botanical-left-top {
        width: 170px;
        height: 280px;
        left: -90px;
        top: 80px;
    }

    .gallery-botanical-right-top {
        width: 160px;
        height: 250px;
        right: -80px;
        top: 170px;
    }

    .gallery-botanical-right-bottom {
        width: 160px;
        height: 240px;
        right: -70px;
        bottom: 20px;
    }
}


/* =========================================================
   EXTRA BOTANICAL DECORATIONS
========================================================= */

.gallery-extra-botanical {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.gallery-extra-botanical svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gallery-extra-left {
    width: 520px;
    height: 850px;
    left: -170px;
    top: 120px;
    opacity: .72;
    transform: rotate(-4deg);
}

.gallery-extra-right {
    width: 500px;
    height: 900px;
    right: -175px;
    top: 420px;
    opacity: .68;
    transform: rotate(4deg);
}

.gallery-extra-stem {
    fill: none;
    stroke: rgba(126, 70, 88, .30);
    stroke-width: 2;
    stroke-linecap: round;
}

.gallery-extra-leaf {
    fill: rgba(170, 93, 116, .13);
    stroke: rgba(126, 70, 88, .28);
    stroke-width: 1.5;
}

.gallery-extra-flower {
    fill: rgba(185, 102, 128, .16);
    stroke: rgba(126, 70, 88, .30);
    stroke-width: 1.5;
}

.gallery-extra-flower.large {
    fill: rgba(185, 102, 128, .20);
    stroke: rgba(126, 70, 88, .34);
}


/* FLOATING DETAILS */

.gallery-extra-petal {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    color: rgba(150, 78, 101, .32);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.extra-petal-1 {
    top: 14%;
    left: 12%;
    font-size: 30px;
    transform: rotate(-18deg);
}

.extra-petal-2 {
    top: 22%;
    right: 14%;
    font-size: 22px;
    transform: rotate(25deg);
}

.extra-petal-3 {
    top: 34%;
    left: 7%;
    font-size: 20px;
}

.extra-petal-4 {
    top: 42%;
    right: 8%;
    font-size: 32px;
    transform: rotate(-15deg);
}

.extra-petal-5 {
    top: 58%;
    left: 15%;
    font-size: 18px;
    transform: rotate(20deg);
}

.extra-petal-6 {
    top: 67%;
    right: 13%;
    font-size: 26px;
    transform: rotate(-20deg);
}

.extra-petal-7 {
    top: 76%;
    left: 9%;
    font-size: 34px;
}

.extra-petal-8 {
    top: 84%;
    right: 10%;
    font-size: 21px;
}


/* MAKE SURE CONTENT STAYS ABOVE DECOR */

.gallery-inner,
.gallery-header,
.gallery-grid,
.gallery-note {
    position: relative;
    z-index: 2;
}


/* MOBILE */

@media (max-width: 768px) {

    .gallery-extra-left {
        width: 360px;
        height: 650px;
        left: -220px;
        top: 180px;
        opacity: .45;
    }

    .gallery-extra-right {
        width: 350px;
        height: 650px;
        right: -220px;
        top: 500px;
        opacity: .42;
    }

    .gallery-extra-petal {
        opacity: .55;
    }

}


/* =========================================================
   EXTRA SERVICES DECORATIONS
========================================================= */

.services-extra-botanical,
.services-extra-corner {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.services-extra-top {
    width: 500px;
    height: 360px;
    top: 40px;
    right: -80px;
    opacity: .72;
    transform: rotate(3deg);
}

.services-extra-corner {
    width: 350px;
    height: 500px;
    bottom: 80px;
    left: -100px;
    opacity: .60;
    transform: rotate(-4deg);
}

.services-extra-botanical svg,
.services-extra-corner svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.services-extra-stem {
    fill: none;
    stroke: rgba(126, 70, 88, .30);
    stroke-width: 2;
    stroke-linecap: round;
}

.services-extra-leaf {
    fill: rgba(170, 93, 116, .14);
    stroke: rgba(126, 70, 88, .28);
    stroke-width: 1.4;
}

.services-extra-flower {
    fill: rgba(185, 102, 128, .17);
    stroke: rgba(126, 70, 88, .30);
    stroke-width: 1.4;
}

.services-extra-flower.large {
    fill: rgba(185, 102, 128, .21);
}


/* FLOATING DETAILS */

.services-extra-detail {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    color: rgba(150, 78, 101, .30);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.detail-a {
    top: 12%;
    left: 13%;
    font-size: 28px;
    transform: rotate(-15deg);
}

.detail-b {
    top: 23%;
    right: 17%;
    font-size: 20px;
}

.detail-c {
    top: 41%;
    left: 8%;
    font-size: 27px;
    transform: rotate(15deg);
}

.detail-d {
    top: 61%;
    right: 10%;
    font-size: 31px;
    transform: rotate(-20deg);
}

.detail-e {
    top: 76%;
    right: 23%;
    font-size: 35px;
}


/* CONTENT ABOVE DECORATIONS */

.services-inner,
.services-header,
.services-list,
.services-note {
    position: relative;
    z-index: 2;
}


/* MOBILE */

@media (max-width: 768px) {

    .services-extra-top {
        width: 330px;
        height: 250px;
        right: -150px;
        top: 80px;
        opacity: .40;
    }

    .services-extra-corner {
        width: 280px;
        height: 400px;
        left: -180px;
        bottom: 50px;
        opacity: .35;
    }

    .services-extra-detail {
        opacity: .55;
    }

}


/* =========================================
   EXTRA SERVICES DECORATIONS
========================================= */

/* -----------------------------------------
   LARGE BOTTOM-RIGHT BOTANICAL
----------------------------------------- */

.services-botanical-bottom-right {
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 520px;
    height: 720px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.services-botanical-bottom-right svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}


/* -----------------------------------------
   FLOATING FLOWERS
----------------------------------------- */

.services-floating-flower {
    position: absolute;
    z-index: 2;
    pointer-events: none;

    font-family: "Playfair Display", serif;
    color: rgba(170, 105, 125, 0.22);

    line-height: 1;
}

.services-floating-flower-one {
    top: 16%;
    left: 7%;
    font-size: 58px;
    transform: rotate(-12deg);
}

.services-floating-flower-two {
    top: 48%;
    right: 8%;
    font-size: 42px;
    transform: rotate(18deg);
}

.services-floating-flower-three {
    bottom: 14%;
    left: 18%;
    font-size: 34px;
    transform: rotate(-20deg);
}


/* -----------------------------------------
   PETAL CLUSTER
----------------------------------------- */

.services-petal-cluster {
    position: absolute;
    top: 29%;
    right: 17%;

    display: flex;
    align-items: center;
    gap: 14px;

    z-index: 2;
    pointer-events: none;

    color: rgba(170, 105, 125, 0.24);
    font-family: "Playfair Display", serif;
}

.services-petal-cluster span:nth-child(1) {
    font-size: 12px;
}

.services-petal-cluster span:nth-child(2) {
    font-size: 18px;
    transform: rotate(20deg);
}

.services-petal-cluster span:nth-child(3) {
    font-size: 8px;
}

.services-petal-cluster span:nth-child(4) {
    font-size: 20px;
    transform: rotate(-15deg);
}

.services-petal-cluster span:nth-child(5) {
    font-size: 10px;
}


/* -----------------------------------------
   SMALL TOP BOTANICAL
----------------------------------------- */

.services-mini-botanical {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 230px;
    height: 270px;

    transform: translateX(-50%) rotate(-8deg);

    z-index: 1;
    pointer-events: none;

    opacity: 0.45;
}

.services-mini-botanical svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}


/* -----------------------------------------
   MAKE SURE SVG STYLES MATCH
----------------------------------------- */

.services-botanical-bottom-right .services-branch-stem,
.services-mini-botanical .services-branch-stem {
    fill: none;
    stroke: rgba(145, 92, 110, 0.28);
    stroke-width: 1.5;
    stroke-linecap: round;
}

.services-botanical-bottom-right .services-leaf,
.services-mini-botanical .services-leaf {
    fill: rgba(180, 115, 135, 0.20);
    stroke: rgba(145, 92, 110, 0.18);
    stroke-width: 1;
}

.services-botanical-bottom-right .services-left-flower {
    fill: rgba(190, 120, 145, 0.25);
    stroke: rgba(145, 92, 110, 0.15);
    stroke-width: 1;
}


/* -----------------------------------------
   SUBTLE DEPTH
----------------------------------------- */

.services-botanical-bottom-right::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 65% 35%,
        rgba(225, 180, 195, 0.08),
        transparent 60%
    );

    pointer-events: none;
}


/* -----------------------------------------
   MOBILE
----------------------------------------- */

@media (max-width: 768px) {

    .services-botanical-bottom-right {
        right: -180px;
        bottom: -80px;
        width: 420px;
        opacity: 0.45;
    }

    .services-floating-flower-one {
        left: 3%;
        font-size: 40px;
    }

    .services-floating-flower-two {
        right: 3%;
        font-size: 32px;
    }

    .services-floating-flower-three {
        left: 8%;
        font-size: 28px;
    }

    .services-petal-cluster {
        right: 8%;
        gap: 8px;
        transform: scale(0.8);
    }

    .services-mini-botanical {
        width: 170px;
        height: 210px;
        top: 20px;
    }
}




/* =========================================
   GALLERY NOTE — ORNAMENTAL LINES
========================================= */

.gallery-note {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    margin-top: 80px;
    padding: 35px 20px;
}

/* gornja i donja linija */

.gallery-note::before,
.gallery-note::after {
    content: "";

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: min(460px, 75%);
    height: 1px;

    background: rgba(145, 92, 110, 0.22);
}

.gallery-note::before {
    top: 0;
}

.gallery-note::after {
    bottom: 0;
}


/* tekst */

.gallery-note p {
    margin: 0;

    text-align: center;

    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-style: italic;

    color: rgba(80, 55, 65, 0.75);
}


/* cvetići */

.gallery-note > span {
    color: rgba(170, 105, 125, 0.55);
    font-size: 18px;
}



/* =========================================
   GALLERY → CONTACT — SEAMLESS
========================================= */

.contact-section {
    position: relative;
    overflow: hidden;

    padding: 150px 0 70px;

    /* nema pune pozadine koja bi napravila liniju */
    background: transparent;
}


/* veoma blag glow unutar Contact-a */
.contact-section::before {
    content: "";

    position: absolute;

    left: -15%;
    top: 0;

    width: 130%;
    height: 100%;

    background:
        radial-gradient(
            ellipse 70% 45% at 50% 15%,
            rgba(239, 205, 216, 0.38),
            rgba(239, 205, 216, 0.16) 45%,
            rgba(239, 205, 216, 0) 75%
        );

    pointer-events: none;

    z-index: 0;
}


/* sadržaj ostaje iznad glowa */
.contact-inner {
    position: relative;
    z-index: 5;
}


/* =========================================
   HEADER
========================================= */

.contact-header {
    max-width: 760px;
    margin: 0 auto 75px;
    text-align: center;
}

.contact-header .section-label {
    justify-content: center;
}

.contact-header h2 {
    margin: 22px 0 22px;

    font-family: "Playfair Display", serif;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;

    color: #4d3740;
}

.contact-header h2 em {
    display: block;

    color: #b6788d;
    font-style: italic;
    font-weight: 400;
}

.contact-header p {
    max-width: 590px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(77, 55, 64, 0.65);
}


/* =========================================
   MAIN CONTACT AREA
========================================= */

.contact-main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    gap: 30px;

    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================
   INSTAGRAM CARD
========================================= */

.contact-instagram {
    position: relative;

    display: flex;
    align-items: center;
    gap: 30px;

    min-height: 250px;
    padding: 45px;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.92),
            rgba(250,235,241,0.88)
        );

    border: 1px solid rgba(177, 121, 140, 0.18);
    border-radius: 4px;

    box-shadow:
        0 25px 70px rgba(110, 70, 85, 0.10);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.contact-instagram::before {
    content: "";

    position: absolute;
    width: 240px;
    height: 240px;

    right: -90px;
    top: -110px;

    border-radius: 50%;

    background: rgba(205, 147, 164, 0.12);
}

.contact-instagram::after {
    content: "LÉA";

    position: absolute;

    right: 25px;
    bottom: -15px;

    font-family: "Playfair Display", serif;
    font-size: 110px;
    font-style: italic;

    color: rgba(170, 110, 130, 0.055);

    pointer-events: none;
}

.contact-instagram:hover {
    transform: translateY(-7px);

    box-shadow:
        0 35px 85px rgba(110, 70, 85, 0.15);
}


/* =========================================
   INSTAGRAM ICON
========================================= */

.instagram-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 90px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #d89aaa,
        #b66c86
    );

    box-shadow:
        0 15px 35px rgba(160, 90, 115, 0.22);
}

.instagram-icon span {
    font-size: 48px;
    line-height: 1;
    color: white;
}


/* =========================================
   INSTAGRAM TEXT
========================================= */

.instagram-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.instagram-label {
    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;

    color: rgba(77, 55, 64, 0.48);
}

.instagram-content strong {
    margin-bottom: 16px;

    font-family: "Playfair Display", serif;
    font-size: 31px;
    font-weight: 500;

    color: #4d3740;
}

.instagram-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;

    color: #b06f84;
}

.instagram-link span {
    display: inline-block;
    margin-left: 8px;

    transition: transform 0.3s ease;
}

.contact-instagram:hover .instagram-link span {
    transform: translate(4px, -3px);
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 10px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 22px 10px;

    text-decoration: none;

    border-bottom: 1px solid rgba(145, 92, 110, 0.14);
}

.contact-detail:first-child {
    border-top: 1px solid rgba(145, 92, 110, 0.14);
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border: 1px solid rgba(170, 105, 125, 0.22);
    border-radius: 50%;

    color: #b6788d;
    font-size: 17px;
}

.contact-detail div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail div span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;

    color: rgba(77, 55, 64, 0.45);
}

.contact-detail div strong {
    font-size: 14px;
    font-weight: 500;

    color: #4d3740;
}


/* =========================================
   BOOKING CTA
========================================= */

.contact-booking {
    display: flex;
    align-items: center;
    gap: 35px;

    max-width: 1050px;

    margin: 90px auto 0;
}

.contact-booking-line {
    flex: 1;
    height: 1px;

    background: rgba(145, 92, 110, 0.18);
}

.contact-booking-content {
    display: flex;
    align-items: center;
    gap: 28px;

    white-space: nowrap;
}

.contact-booking-content > span {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-style: italic;

    color: rgba(77, 55, 64, 0.68);
}


/* =========================================
   FINAL NOTE
========================================= */

.contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin-top: 65px;
}

.contact-note p {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-style: italic;

    color: rgba(77, 55, 64, 0.52);
}

.contact-note span {
    font-size: 17px;

    color: rgba(170, 105, 125, 0.45);
}


/* =========================================
   BOTANICAL DECORATIONS
========================================= */

.contact-botanical {
    position: absolute;

    pointer-events: none;

    z-index: 1;
}

.contact-botanical svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.contact-botanical-left {
    left: -80px;
    top: 120px;

    width: 420px;
    height: 700px;

    opacity: 0.55;
}

.contact-botanical-right {
    right: -70px;
    bottom: 0;

    width: 360px;
    height: 600px;

    opacity: 0.48;
}

.contact-stem {
    fill: none;

    stroke: rgba(145, 92, 110, 0.25);

    stroke-width: 1.5;

    stroke-linecap: round;
}

.contact-leaf {
    fill: rgba(180, 115, 135, 0.18);

    stroke: rgba(145, 92, 110, 0.15);

    stroke-width: 1;
}

.contact-flower {
    fill: rgba(190, 120, 145, 0.22);

    stroke: rgba(145, 92, 110, 0.12);

    stroke-width: 1;
}

.contact-flower-small {
    opacity: 0.8;
}


/* =========================================
   FLOATING DECORATIONS
========================================= */

.contact-decoration {
    position: absolute;

    pointer-events: none;

    font-family: "Playfair Display", serif;

    color: rgba(170, 105, 125, 0.22);

    z-index: 2;
}

.contact-decoration-one {
    top: 19%;
    left: 23%;

    font-size: 35px;

    transform: rotate(-15deg);
}

.contact-decoration-two {
    top: 34%;
    right: 23%;

    font-size: 20px;

    transform: rotate(20deg);
}

.contact-decoration-three {
    bottom: 18%;
    left: 28%;

    font-size: 27px;

    transform: rotate(-12deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .contact-main {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .contact-details {
        padding: 10px 0;
    }

    .contact-botanical-left {
        left: -180px;
        opacity: 0.35;
    }

    .contact-botanical-right {
        right: -180px;
        opacity: 0.30;
    }

    .contact-decoration-one {
        left: 8%;
    }

    .contact-decoration-two {
        right: 8%;
    }
}


@media (max-width: 600px) {

    .contact-section {
        padding: 100px 0 50px;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-header h2 {
        font-size: 44px;
    }

    .contact-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-instagram {
        flex-direction: column;
        align-items: flex-start;

        min-height: auto;

        padding: 35px 28px;
        gap: 22px;
    }

    .instagram-icon {
        width: 75px;
        height: 75px;
        flex-basis: 75px;
    }

    .instagram-icon span {
        font-size: 40px;
    }

    .instagram-content strong {
        font-size: 27px;
    }

    .contact-detail {
        padding: 18px 5px;
    }

    .contact-booking {
        flex-direction: column;
        gap: 25px;

        margin-top: 65px;
    }

    .contact-booking-line {
        width: 100%;
    }

    .contact-booking-content {
        flex-direction: column;
        gap: 18px;
    }

    .contact-botanical-left {
        left: -230px;
        top: 200px;
        opacity: 0.25;
    }

    .contact-botanical-right {
        right: -230px;
        opacity: 0.22;
    }

    .contact-decoration-one {
        top: 12%;
        left: 6%;
        font-size: 25px;
    }

    .contact-decoration-two {
        top: 27%;
        right: 7%;
    }

    .contact-decoration-three {
        bottom: 12%;
        left: 10%;
    }
}










/* =========================
   REMOVE SECTION SEAM
========================= */

#gallery {
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

#contact {
    margin-top: 0 !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

/* Kill any pseudo-element creating a horizontal seam */
#gallery::after,
#gallery::before,
#contact::after,
#contact::before {
    border: none !important;
    box-shadow: none !important;
}

/* Force both sections to visually merge */
#gallery {
    position: relative;
    z-index: 1;
}

#contact {
    position: relative;
    z-index: 0;
}

/* Remove tiny gaps caused by inline/positioned elements */
#gallery,
#contact {
    transform: none;
    outline: none !important;
}












/* =========================================
   GALLERY → CONTACT — FINAL SEAMLESS FIX
========================================= */

/* Obe sekcije koriste zajedničku main pozadinu */
.gallery-section,
.contact-section {
    background: transparent !important;
}

/* Ugasi glow koji pravi promenu boje baš na ivici */
.gallery-section::before,
.contact-section::before {
    display: none !important;
}

/* Ne dozvoli ni dodatne ivice/senke */
.gallery-section,
.contact-section {
    border: none !important;
    box-shadow: none !important;
}

/* Kontakt dekoracije ostaju vidljive jer nisu ::before */
.contact-inner {
    position: relative;
    z-index: 5;
}


/* =========================================
   BOOKING SECTION
========================================= */

.booking-section {
    position: relative;
    overflow: hidden;

    padding: 150px 0 90px;

    background: transparent;
}


/* =========================================
   INNER
========================================= */

.booking-inner {
    position: relative;
    z-index: 5;
}


/* =========================================
   HEADER
========================================= */

.booking-header {
    max-width: 760px;

    margin: 0 auto 75px;

    text-align: center;
}

.booking-header .section-label {
    justify-content: center;
}

.booking-header h2 {
    margin: 22px 0;

    font-family: var(--serif);

    font-size:
        clamp(3rem, 6vw, 5.8rem);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -0.04em;

    color: var(--text);
}

.booking-header h2 em {
    display: block;

    color: var(--rose);

    font-style: italic;
}

.booking-header p {
    max-width: 570px;

    margin: 0 auto;

    font-size: 0.9rem;

    line-height: 1.9;

    color: var(--muted);
}


/* =========================================
   MAIN GRID
========================================= */

.booking-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);

    gap: 45px;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================
   FORM CARD
========================================= */

.booking-form-card {
    padding: 45px;

    background:
        rgba(255, 250, 251, 0.78);

    border:
        1px solid
        rgba(177, 121, 140, 0.18);

    box-shadow:
        0 30px 80px
        rgba(110, 70, 85, 0.08);

    backdrop-filter: blur(10px);
}


/* =========================================
   FORM HEADING
========================================= */

.booking-form-heading {
    display: flex;

    align-items: flex-start;

    gap: 22px;

    margin-bottom: 38px;
}

.booking-form-heading > span {
    padding-top: 6px;

    font-family: var(--serif);

    font-size: 0.75rem;

    font-style: italic;

    color: var(--rose);
}

.booking-form-heading h3 {
    font-family: var(--serif);

    font-size: 2rem;

    font-weight: 400;

    color: var(--text);
}

.booking-form-heading p {
    margin-top: 6px;

    font-size: 0.78rem;

    line-height: 1.7;

    color: var(--muted);
}


/* =========================================
   FORM
========================================= */

.booking-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px 20px;
}

.booking-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.booking-field-full {
    grid-column: 1 / -1;
}

.booking-field label {
    font-size: 0.62rem;

    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: var(--rose);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;

    padding: 14px 15px;

    border:
        1px solid
        rgba(177, 121, 140, 0.2);

    border-radius: 0;

    background:
        rgba(255,255,255,0.62);

    color: var(--text);

    font-family: var(--sans);

    font-size: 0.82rem;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.booking-field textarea {
    min-height: 120px;

    resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: rgba(139,111,119,0.62);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color:
        rgba(189,113,129,0.55);

    background:
        rgba(255,255,255,0.9);

    box-shadow:
        0 8px 25px
        rgba(189,113,129,0.07);
}


/* =========================================
   SUBMIT
========================================= */

.booking-submit {
    grid-column: 1 / -1;

    margin-top: 8px;

    min-height: 54px;

    border: none;

    cursor: pointer;
}


/* =========================================
   SIDE
========================================= */

.booking-side {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 25px;
}

.booking-side-card {
    position: relative;

    padding: 35px;

    border-top:
        1px solid
        rgba(189,113,129,0.22);

    border-bottom:
        1px solid
        rgba(189,113,129,0.22);
}

.booking-side-number {
    display: block;

    margin-bottom: 14px;

    font-family: var(--serif);

    font-size: 0.75rem;

    font-style: italic;

    color: var(--rose);
}

.booking-side-card h3 {
    font-family: var(--serif);

    font-size: 2.15rem;

    font-weight: 400;

    line-height: 1.08;

    color: var(--text);
}

.booking-side-card > p {
    max-width: 390px;

    margin-top: 20px;

    font-size: 0.84rem;

    line-height: 1.9;

    color: var(--muted);
}


/* =========================================
   INSTAGRAM HIGHLIGHT
========================================= */

.booking-side-highlight {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 38px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(239,194,203,0.28),
            transparent 55%
        ),
        rgba(255,250,251,0.45);
}

.booking-side-flower {
    margin-bottom: 18px;

    font-family: var(--serif);

    font-size: 1.8rem;

    color: var(--pink);
}

.booking-side-highlight p {
    margin: 0;

    font-family: var(--serif);

    font-size: 1.2rem;

    font-style: italic;

    line-height: 1.6;

    color: var(--text);
}

.booking-instagram-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    color: var(--rose);
}

.booking-instagram-link span {
    transition:
        transform 0.3s ease;
}

.booking-instagram-link:hover span {
    transform:
        translate(3px,-3px);
}


/* =========================================
   NOTE
========================================= */

.booking-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    max-width: 850px;

    margin: 80px auto 0;

    padding:
        30px 20px;

    border-top:
        1px solid
        rgba(189,113,129,0.18);

    border-bottom:
        1px solid
        rgba(189,113,129,0.18);

    text-align: center;
}

.booking-note p {
    margin: 0;

    font-family: var(--serif);

    font-size: 1.05rem;

    font-style: italic;

    line-height: 1.6;

    color: var(--muted);
}

.booking-note span {
    flex-shrink: 0;

    font-size: 1.2rem;

    color: var(--pink);
}


/* =========================================
   BOTANICALS
========================================= */

.booking-botanical {
    position: absolute;

    z-index: 1;

    pointer-events: none;
}

.booking-botanical svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.booking-botanical-left {
    left: -80px;
    top: 110px;

    width: 420px;
    height: 720px;

    opacity: 0.48;
}

.booking-botanical-right {
    right: -85px;
    bottom: -20px;

    width: 360px;
    height: 620px;

    opacity: 0.42;
}

.booking-stem {
    fill: none;

    stroke: #c28c9a;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-leaf {
    fill:
        rgba(220,155,169,0.15);

    stroke:
        rgba(189,113,129,0.28);

    stroke-width: 1;
}

.booking-flower {
    fill:
        rgba(245,213,220,0.55);

    stroke:
        rgba(189,113,129,0.35);

    stroke-width: 1;
}

.booking-flower-small {
    opacity: 0.75;
}


/* =========================================
   FLOATING DECOR
========================================= */

.booking-decoration {
    position: absolute;

    z-index: 2;

    pointer-events: none;

    font-family: var(--serif);

    color:
        rgba(189,113,129,0.28);
}

.booking-decoration-one {
    top: 16%;
    left: 17%;

    font-size: 2rem;

    transform: rotate(-15deg);
}

.booking-decoration-two {
    top: 43%;
    right: 15%;

    font-size: 1.6rem;

    transform: rotate(18deg);
}

.booking-decoration-three {
    bottom: 18%;
    left: 23%;

    font-size: 1.4rem;

    transform: rotate(-12deg);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .booking-grid {
        grid-template-columns: 1fr;

        max-width: 700px;
    }

    .booking-side {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .booking-botanical-left {
        left: -180px;
        opacity: 0.3;
    }

    .booking-botanical-right {
        right: -180px;
        opacity: 0.28;
    }
}


@media (max-width: 650px) {

    .booking-section {
        padding: 100px 0 60px;
    }

    .booking-header {
        margin-bottom: 50px;
    }

    .booking-header h2 {
        font-size:
            clamp(2.8rem, 13vw, 4.5rem);
    }

    .booking-header p {
        font-size: 0.82rem;
    }

    .booking-form-card {
        padding: 30px 22px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-field-full {
        grid-column: auto;
    }

    .booking-submit {
        grid-column: auto;
    }

    .booking-side {
        display: flex;

        gap: 20px;
    }

    .booking-side-card {
        padding: 28px 22px;
    }

    .booking-side-card h3 {
        font-size: 1.85rem;
    }

    .booking-note {
        gap: 12px;

        margin-top: 60px;
    }

    .booking-note p {
        font-size: 0.9rem;
    }

    .booking-botanical-left {
        left: -230px;
        top: 170px;

        opacity: 0.22;
    }

    .booking-botanical-right {
        right: -230px;

        opacity: 0.2;
    }

    .booking-decoration-one {
        left: 7%;
        font-size: 1.5rem;
    }

    .booking-decoration-two {
        right: 7%;
    }
}