@charset "utf-8";
/* CSS Document */

.florist-services {
    --floral-green: #365748;
    --floral-green-dark: #263f34;
    --floral-sage: #e8eee9;
    --floral-cream: #f8f6f1;
    --floral-warm: #f1ebe3;
    --floral-text: #29332e;
    --floral-muted: #66716b;
    --floral-border: #dce2dd;
    --floral-white: #ffffff;

    color: var(--floral-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    max-width: 1600px;
    margin: 0 auto;
}

.florist-services *,
.florist-services *::before,
.florist-services *::after {
    box-sizing: border-box;
}

.florist-services h1,
.florist-services h2,
.florist-services h3,
.florist-services p {
    margin-top: 0;
}

.florist-services a {
    color: var(--floral-green);
    text-decoration: none;
}

.florist-services a:hover {
    text-decoration: underline;
}

.florist-hero {
    min-height: 500px;
    margin: 0 0 80px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(
            90deg,
            rgba(27, 47, 38, .88) 0%,
            rgba(27, 47, 38, .65) 42%,
            rgba(27, 47, 38, .12) 80%
        ),
        url("gifs/florist-at-work.jpg") left bottom / cover no-repeat;
}

.florist-hero-content {
    width: 100%;
    max-width: 700px;
    padding: 70px 60px;
    color: #fff;
}

.florist-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .9;
}

.florist-hero h1 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 4.7rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
	color:#fff;
}

.florist-hero p {
    max-width: 580px;
    margin-bottom: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,.92);
}


.florist-intro {
    padding: 0 40px 80px;
}

.florist-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 70px;
    align-items: start;
}

.florist-intro h2,
.pos-section h2,
.responsive-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--floral-green-dark);
}

.florist-intro h2 {
    margin-bottom: 25px;
}

.florist-intro p {
    color: var(--floral-muted);
    font-size: 1.05rem;
}

.florist-feature-card {
    padding: 35px;
    background: var(--floral-cream);
    border: 1px solid var(--floral-border);
    border-radius: 18px;
}

.florist-feature-card h3 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--floral-green-dark);
}

.florist-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.florist-feature-list li {
    position: relative;
    padding: 13px 0 13px 32px;
    border-bottom: 1px solid var(--floral-border);
    color: var(--floral-muted);
}

.florist-feature-list li:last-child {
    border-bottom: 0;
}

.florist-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--floral-green);
    font-weight: 700;
}


.florist-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 22px;
    border: 1px solid var(--floral-green);
    border-radius: 18px;
    color: var(--floral-green) !important;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: all .25s ease;
}

.florist-link::after {
    content: "→";
    font-size: 1.1rem;
    transition: transform .25s ease;
}

.florist-link a:hover { text-decoration:none; }

.florist-link:hover {
    background: var(--floral-green);
    color: #fff !important;
    text-decoration: none;
}

.florist-link:hover::after {
    transform: translateX(4px);
}


.pos-section {
    margin: 0 0px 30px;
    padding: 55px;
    background: var(--floral-sage);
    border-radius: 18px;
}

.pos-grid {
    display: grid;
    /*grid-template-columns: 330px minmax(0, 1fr);*/
	grid-template-columns: 40% minmax(0, 1fr);
    gap: 55px;
    align-items: center;
}

.pos-image-wrap {
    overflow: hidden;
    border-radius: 0px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(30, 50, 40, .10);
	max-width:400px;
}

.pos-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .4s ease;
}

.pos-image-wrap:hover .pos-image {
    transform: scale(1.03);
}

.pos-info { text-align:center; }

.pos-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.pos-section p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--floral-muted);
}


.pricing-section {
    margin: 0 0 80px;
    padding: 75px 55px;
    border-radius: 18px;
    background: var(--floral-green-dark);
    color: #fff;
    text-align: center;
}

.pricing-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

.pricing-section h2 {
    max-width: 750px;
    margin: 0 auto 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
}

.pricing-intro {
    max-width: 720px;
    margin: 0 auto 45px;
    color: rgba(255,255,255,.78);
}

.pricing-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    color: var(--floral-text);
    text-align: left;
}

.price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px 30px;
    background: var(--floral-warm);
    color: var(--floral-green-dark);
    text-align: center;
}

.price-main {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    line-height: 1;
}

.price-period {
    margin-top: 8px;
    font-size: .9rem;
    color: var(--floral-muted);
}

.price-order {
    margin-top: 18px;
    padding-top: 18px;
    width: 100%;
    border-top: 1px solid #d9d2ca;
    font-size: .95rem;
    color: var(--floral-muted);
}

.price-order strong {
    color: var(--floral-green-dark);
}

.pricing-copy {
    padding: 45px;
}

.pricing-copy h3 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.3;
}

.pricing-copy p {
    margin: 0;
    color: var(--floral-muted);
}

.pricing-link {
    color: #fff !important;
    border-color: rgba(255,255,255,.5);
}

.pricing-link:hover {
    background: #fff;
    color: var(--floral-green-dark) !important;
}


.responsive-section {
    padding: 0 40px 90px;
}

.responsive-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.responsive-image-wrap {
    position: relative;
}

.responsive-image-wrap::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    left: -25px;
    bottom: -25px;
    z-index: -1;
    border-radius: 18px;
    background: var(--floral-sage);
}

.responsive-mockup {
    display: block;
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(25,40,32,.16);
}

.responsive-section h2 {
    margin-bottom: 25px;
}

.responsive-section p {
    color: var(--floral-muted);
    font-size: 1.05rem;
}



.florist-divider {
    width: 70px;
    height: 2px;
    margin: 0 auto 70px;
    background: var(--floral-green);
}


@media (max-width: 850px) {

    .florist-hero {
        min-height: 460px;
        margin-bottom: 60px;
        border-radius: 0 0 20px 20px;
    }

    .florist-hero-content {
        padding: 50px 35px;
    }

    .florist-intro-grid,
    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .florist-intro {
        padding: 0 25px 65px;
    }

    .pos-section {
        margin: 0 25px 65px;
        padding: 40px;
    }

    .pos-grid {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 35px;
    }

    .pricing-section {
        margin-bottom: 65px;
        padding: 60px 35px;
        border-radius: 22px;
    }

    .responsive-section {
        padding: 0 25px 70px;
    }
}


@media (max-width: 600px) {

    .florist-hero {
        min-height: 500px;
        align-items: flex-end;
        background-position: 55% center;
    }

    .florist-hero-content {
        padding: 40px 25px;
    }

    .florist-hero h1 {
        font-size: 2.55rem;
    }

    .florist-hero p {
        font-size: 1rem;
    }

    .florist-intro {
        padding: 0 18px 55px;
    }

    .florist-feature-card {
        padding: 28px 24px;
    }

    .pos-section {
        margin: 0 18px 55px;
        padding: 28px 22px;
    }

    .pos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pos-image-wrap {
        max-width: 330px;
        margin: 0 auto;
    }

    .pricing-section {
        margin-bottom: 55px;
        padding: 50px 20px;
        border-radius: 18px;
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .price {
        padding: 35px 25px;
    }

    .pricing-copy {
        padding: 30px 25px;
    }

    .responsive-section {
        padding: 0 18px 60px;
    }

    .responsive-image-wrap::before {
        left: -10px;
        bottom: -10px;
    }

    .florist-link {
        font-size: .85rem;
    }
}