/* ============================================================
   PLANTOORI — Home Page Styles
   ============================================================ */

/* --- Premium Hero --- */
.hero--premium {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-x: clip;
    overflow-y: visible;
    margin-top: calc(var(--header-height) * -1);
    padding: calc(var(--header-height) + 2rem) 0 0;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A4227 0%, #0F5B35 45%, #1A7A4A 100%);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 10s ease-out;
}

.hero__bg--mesh {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(26, 122, 74, 0.45), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(212, 175, 55, 0.12), transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(8, 40, 24, 0.6), transparent 60%),
        linear-gradient(145deg, #0A4227 0%, #0F5B35 40%, #145a38 100%);
    animation: heroMeshShift 18s ease-in-out infinite alternate;
}

.hero__bg--photo {
    background-color: #0A4227;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    animation: none;
    transform: scale(1.06);
}

.hero--has-bg-photo.is-ready .hero__bg--photo {
    transform: scale(1);
}

.hero--has-bg-photo .hero__overlay {
    background:
        linear-gradient(105deg, rgba(8, 45, 28, 0.9) 0%, rgba(8, 45, 28, 0.72) 38%, rgba(8, 45, 28, 0.25) 62%, rgba(8, 45, 28, 0.45) 100%),
        radial-gradient(circle at 88% 25%, rgba(212, 175, 55, 0.1), transparent 42%);
}

.hero--has-bg-photo .hero__frame--secondary {
    width: 48%;
    right: 2%;
    bottom: 6%;
}

@keyframes heroMeshShift {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(8deg) brightness(1.05); }
}

.hero--premium.is-ready .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 45, 28, 0.92) 0%, rgba(8, 45, 28, 0.78) 42%, rgba(8, 45, 28, 0.35) 68%, rgba(8, 45, 28, 0.55) 100%),
        radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.12), transparent 45%);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    flex: 1 1 auto;
    padding: clamp(1rem, 2vw, 2rem) 0 clamp(1.5rem, 3vw, 2.5rem);
    min-height: 0;
}

.hero__copy {
    color: #fff;
    max-width: 640px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary-light);
    margin-bottom: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.1);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero__title em {
    font-style: italic;
    color: var(--color-secondary-light);
}

.hero__lead {
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.75rem;
    max-width: 540px;
}

.hero__lead strong {
    color: #fff;
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.hero__btn-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.hero__btn-outline:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
    color: #fff !important;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-bottom: 1.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero__wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.hero__wa-link i {
    color: #6ee7a0;
    font-size: 1rem;
}

.hero__wa-link:hover {
    color: #fff;
    text-decoration: none;
}

.hero__meta-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero__meta-item i {
    color: var(--color-secondary-light);
    font-size: 0.75rem;
}

.hero__stats {
    display: none;
}

/* Stats bar — full width at hero bottom */
.hero__stats-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.hero__stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.hero__stats-bar-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero__stats-bar-item strong {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.hero__stats-bar-item span {
    font-size: 0.625rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 575.98px) {
    .hero__stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

.hero__stat strong {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.hero__stat span {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Hero visual collage */
.hero__visual {
    position: relative;
    min-height: clamp(280px, 38vw, 420px);
    max-height: 480px;
}

.hero__frame {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__frame img,
.hero__frame .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__frame--main {
    inset: 0 12% 8% 0;
    z-index: 1;
}

.hero__frame--secondary {
    width: 42%;
    aspect-ratio: 4/5;
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero__badge {
    position: absolute;
    top: 8%;
    left: -2%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--color-dark);
    animation: heroFloat 4s ease-in-out infinite;
}

.hero__badge i {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.hero__badge strong {
    display: block;
    font-size: 0.875rem;
    line-height: 1.2;
}

.hero__badge span {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero__scroll {
    display: none;
}

@media (min-width: 992px) {
    .hero--premium {
        min-height: auto;
    }

    .hero__stats-bar {
        margin-top: auto;
    }
}

@keyframes heroBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Mobile stats strip (below hero) */
.stats-strip--mobile {
    padding: 1rem 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.stats-strip--mobile__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    text-align: center;
}

.stats-strip--mobile__item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stats-strip--mobile__item strong {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.stats-strip--mobile__item span {
    font-size: 0.5625rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

@media (max-width: 575.98px) {
    .stats-strip--mobile__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem 0.5rem;
    }
}

/* Before After */
.section-ba {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 91, 53, 0.05), transparent),
        var(--color-bg);
    position: relative;
}

.section-ba::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 91, 53, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
}

.section-ba .container {
    position: relative;
    z-index: 1;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.ba-grid--desktop { display: grid; }
.ba-swiper--mobile { display: none; }

@media (max-width: 991.98px) {
    .ba-grid--desktop { display: none; }

    .ba-swiper--mobile {
        display: block;
        overflow: hidden;
        padding: 0 0 2.25rem;
        margin: 0 -0.25rem;
    }

    .ba-swiper--mobile .swiper-slide {
        height: auto;
    }

    .ba-swiper--mobile .ba-card {
        margin: 0;
    }

    .ba-swiper-pagination {
        bottom: 0 !important;
    }

    .ba-swiper-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        background: rgba(15, 91, 53, 0.25);
        opacity: 1;
    }

    .ba-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--color-primary);
        width: 22px;
        border-radius: 999px;
    }
}

@media (max-width: 1199.98px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ba-card__topbar {
        left: 0.75rem;
        right: 0.75rem;
        top: auto;
        bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ba-card__topbar-start {
        order: 1;
    }

    .ba-card__tag--after {
        order: 2;
    }

    .ba-card__hint {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .ba-card__content {
        padding: 1.15rem 1.25rem 1.35rem;
    }
}

/* Packages page — extra before/after (not same as homepage) */
.section-pkg-showcase {
    background: linear-gradient(180deg, rgba(248, 250, 247, 0.5) 0%, #fff 100%);
}

.ba-grid--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .ba-grid--compact {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .page-hero--photo .page-hero__bg {
        background-position: center center;
    }

    .page-hero--photo .page-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(8, 40, 24, 0.9) 0%,
            rgba(15, 91, 53, 0.82) 100%
        );
    }
}

/* Homepage offer pathways — design vs maintenance */
.section-offers {
    background:
        linear-gradient(180deg, #fff 0%, rgba(248, 250, 247, 0.6) 100%);
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.offer-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    min-height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(15, 91, 53, 0.1);
    box-shadow: 0 8px 32px rgba(15, 91, 53, 0.08);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15, 91, 53, 0.14);
    text-decoration: none;
    color: inherit;
}

.offer-card--reverse {
    grid-template-columns: 1fr 42%;
}

.offer-card--reverse .offer-card__visual { order: 2; }
.offer-card--reverse .offer-card__body { order: 1; }

.offer-card__visual {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.offer-card__visual img,
.offer-card__visual .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.offer-card:hover .offer-card__visual img {
    transform: scale(1.05);
}

.offer-card__visual-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(160deg, #0a4227 0%, var(--color-primary) 55%, #1a6b42 100%);
    color: #fff;
}

.offer-card__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary-light);
    margin-bottom: 0.5rem;
}

.offer-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    color: #fff;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.offer-card__highlight {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(232, 200, 74, 0.95);
    margin: 0 0 0.65rem;
}

.offer-card__desc {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 0.85rem;
}

.offer-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.45;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(232, 200, 74, 0.45);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.offer-card__pill i { color: var(--color-secondary-light); }

.offer-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--color-primary-dark);
    transition: background 0.25s, transform 0.25s;
}

.offer-card:hover .offer-card__cta {
    background: var(--color-secondary-light);
    color: var(--color-dark);
}

/* Services — uniform grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.services-grid .card-luxury--service {
    grid-column: auto !important;
    background: var(--color-bg-alt) !important;
}

@media (max-width: 991.98px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .offer-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-card,
    .offer-card--reverse {
        grid-template-columns: 1fr;
    }

    .offer-card--reverse .offer-card__visual,
    .offer-card--reverse .offer-card__body {
        order: unset;
    }

    .offer-card__visual {
        min-height: 180px;
        aspect-ratio: 16 / 10;
    }

    .offer-card__body {
        padding: 1.25rem 1.15rem 1.35rem;
    }

    .offer-card__title {
        font-size: 1.35rem;
    }

    .offer-card__pill {
        font-size: 0.625rem;
        padding: 0.4rem 0.7rem;
    }

    .offer-card__cta {
        width: 100%;
        justify-content: center;
    }

    /* Mobile homepage — tighter sections, stronger headers */
    .page-home .section {
        padding-top: clamp(2.25rem, 5.5vw, 3rem);
        padding-bottom: clamp(2.25rem, 5.5vw, 3rem);
    }

    .page-home .section-header {
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .page-home .section-header--center {
        text-align: left;
    }

    .page-home .section-header--center .section-header__desc {
        margin-left: 0;
        margin-right: 0;
    }

    .page-home .section-header__label {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.75rem;
        border-radius: var(--radius-full);
        background: rgba(212, 175, 55, 0.14);
        border: 1px solid rgba(212, 175, 55, 0.28);
        margin-bottom: 0.65rem;
    }

    .page-home .section-header__title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    .page-home .section-ba,
    .page-home .section-offers {
        border-top: 1px solid rgba(15, 91, 53, 0.06);
        border-bottom: 1px solid rgba(15, 91, 53, 0.06);
    }

    .page-home .section-offers {
        background: linear-gradient(180deg, #fff 0%, rgba(15, 91, 53, 0.03) 100%);
    }

    /* Mobile: no hero photo — copy-first, premium & airy */
    .hero--premium {
        margin-top: 0;
        padding: calc(var(--header-height-mobile) + 2.25rem + env(safe-area-inset-top, 0px)) 0 0;
        min-height: auto;
        justify-content: flex-start;
    }

    .hero__bg {
        opacity: 0.35;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(8, 45, 28, 0.88) 0%, rgba(8, 45, 28, 0.94) 55%, rgba(8, 45, 28, 0.98) 100%),
            radial-gradient(circle at 70% 15%, rgba(212, 175, 55, 0.08), transparent 45%);
    }

    .hero--has-bg-photo .hero__bg--photo {
        opacity: 1;
    }

    .hero--has-bg-photo .hero__overlay {
        background:
            linear-gradient(180deg, rgba(8, 45, 28, 0.82) 0%, rgba(8, 45, 28, 0.88) 50%, rgba(8, 45, 28, 0.92) 100%),
            radial-gradient(circle at 70% 15%, rgba(212, 175, 55, 0.08), transparent 45%);
    }

    .hero--has-bg-photo .hero__visual {
        display: block !important;
        margin-top: 1.5rem;
        aspect-ratio: 4 / 5;
        max-width: 280px;
        margin-left: auto;
        margin-right: 0;
    }

    .hero--has-bg-photo .hero__frame--secondary {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        right: auto;
        bottom: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 2rem;
    }

    /* Mobile: show main hero photo below copy */
    .hero__visual {
        display: block !important;
        position: relative;
        min-height: 0;
        max-height: none;
        margin-top: 1.75rem;
        aspect-ratio: 16 / 10;
    }

    .hero__frame--main {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero__frame--secondary,
    .hero__badge {
        display: none;
    }

    .hero__copy {
        max-width: none;
        text-align: left;
        padding-top: 0.5rem;
    }

    .hero__eyebrow {
        font-size: 0.5625rem;
        letter-spacing: 0.08em;
        padding: 0.45rem 0.85rem;
        margin-bottom: 1.35rem;
    }

    .hero__title {
        font-size: clamp(1.7rem, 6.8vw, 2.25rem);
        margin-bottom: 1.15rem;
        line-height: 1.15;
    }

    .hero__lead {
        font-size: 0.875rem;
        line-height: 1.75;
        margin-bottom: 1.75rem;
        max-width: 36ch;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero__actions .btn-luxury--lg {
        padding: 0.85rem 1.35rem;
        font-size: 0.9rem;
    }

    /* Trust line — light, not boxed */
    .hero__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        margin-bottom: 0.25rem;
        padding-bottom: 0.5rem;
    }

    .hero__wa-link,
    .hero__meta-divider {
        display: none;
    }

    .hero__meta-item {
        flex: none;
        padding: 0;
        background: none;
        border: none;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.72);
    }

    /* Stats move below hero on mobile — less stuffed */
    .hero__stats {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .hero__stats-bar {
        padding: 1.35rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
        margin-top: 0.5rem;
    }

    .hero__stats-bar-grid {
        gap: 1rem 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .services-grid { grid-template-columns: 1fr; }

    .hero__title {
        font-size: clamp(1.55rem, 7vw, 1.95rem);
    }

    .hero__stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 380px) {
    .hero__stats {
        grid-template-columns: 1fr 1fr;
    }

    .nav-btn--mobile .nav-btn__text {
        display: none;
    }

    .nav-btn--mobile {
        width: 34px;
        height: 34px;
        padding: 0;
        justify-content: center;
    }
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(15, 91, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--color-primary);
}

.why-card__title { font-size: 1.0625rem; margin-bottom: 0.4rem; }
.why-card__desc { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }

/* CTA Banner */
.cta-banner {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.cta-banner h2 { color: #fff; font-size: clamp(1.375rem, 3vw, 2rem); margin-bottom: 0.65rem; }
.cta-banner p { opacity: 0.88; margin-bottom: 1.25rem; max-width: 480px; }

/* Gallery Masonry */
.gallery-masonry { columns: 4 220px; column-gap: 0.85rem; }

.gallery-masonry__item {
    break-inside: avoid;
    margin-bottom: 0.85rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: block;
}

.gallery-masonry__item img {
    width: 100%;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.gallery-masonry__item:hover img { transform: scale(1.04); }

.gallery-masonry__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 91, 53, 0.75), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 0.85rem;
}

.gallery-masonry__item:hover .gallery-masonry__overlay { opacity: 1; }
.gallery-masonry__overlay span { color: #fff; font-size: 0.8125rem; font-weight: 500; }

/* Testimonials */
.testimonial-swiper { padding: 0.5rem 0 2.5rem; }
.testimonial-swiper .swiper-wrapper { align-items: stretch; }
.testimonial-swiper .swiper-slide { height: auto; display: flex; }
.testimonial-swiper .swiper-slide .card-luxury { width: 100%; }

/* Instagram */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.65rem;
}

.insta-grid__item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    display: block;
}

.insta-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.insta-grid__item:hover img { transform: scale(1.06); }

.insta-grid__item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    inset: 0;
    background: rgba(15, 91, 53, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition);
}

.insta-grid__item:hover::after { opacity: 1; }

/* Upload CTA */
.upload-cta {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.upload-cta h2 { font-size: clamp(1.375rem, 3vw, 2rem); }

.upload-cta__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.upload-cta__visual--ba {
    aspect-ratio: auto;
    min-height: 0;
}

.upload-cta__visual--ba .ba-card {
    margin: 0;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.upload-cta__visual--ba .ba-card__content {
    display: none;
}

.upload-cta__visual--ba .ba-card__slider {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
}

.upload-cta__visual img,
.upload-cta__visual .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(15, 91, 53, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--color-primary);
}

/* ============================================================
   SERVICES PAGE — decorative blocks
   ============================================================ */
.service-showcase {
    padding-top: clamp(2rem, 5vw, 3rem);
}

.service-block {
    position: relative;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    background: var(--color-bg-alt);
    border: 1px solid rgba(15, 91, 53, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
    border-radius: 4px 0 0 4px;
}

.service-block__num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: rgba(15, 91, 53, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.service-block__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-md);
}

.service-block__visual img,
.service-block__visual .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.service-block:hover .service-block__visual img {
    transform: scale(1.03);
}

.service-block__visual-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.service-block__content {
    padding: 0.25rem 0;
}

.service-block__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(15, 91, 53, 0.1), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(15, 91, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-block__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.service-block__chips {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem 0.85rem;
}

.service-block__chips li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.45;
    padding: 0.55rem 0.7rem;
    background: rgba(15, 91, 53, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 91, 53, 0.06);
}

.service-block__chips li i {
    color: var(--color-primary);
    font-size: 0.65rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-block__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

@media (max-width: 767.98px) {
    .service-block {
        padding: 1.25rem 1.15rem 1.35rem;
    }

    .service-block__num {
        top: 0.75rem;
        right: 0.85rem;
        font-size: 2.25rem;
    }

    .service-block__chips {
        grid-template-columns: 1fr;
    }

    .service-block__actions {
        flex-direction: column;
    }

    .service-block__actions .btn-luxury {
        width: 100%;
        justify-content: center;
    }
}

/* Plant care services grid (12 services — Lovable-style) */
.care-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

.care-service-card {
    position: relative;
    padding: 1.35rem 1.15rem 1.25rem;
    background: var(--color-bg);
    border: 1px solid rgba(15, 91, 53, 0.08);
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.care-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 91, 53, 0.14);
}

.care-service-card__num {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(15, 91, 53, 0.22);
}

.care-service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(15, 91, 53, 0.09), rgba(212, 175, 55, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
}

.care-service-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.care-service-card__desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.care-services-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.care-services-grid--maint .care-service-card {
    background: var(--color-bg-alt);
}

@media (max-width: 1199.98px) {
    .care-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .care-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .care-services-grid {
        grid-template-columns: 1fr;
    }

    .care-services-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .care-services-cta .btn-luxury {
        width: 100%;
        justify-content: center;
    }
}

.card-luxury__area {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0.35rem 0 0;
}

.card-luxury__tier {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.card-luxury--featured .card-luxury__tier {
    color: var(--color-secondary);
}

.card-luxury__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 1rem;
    line-height: 1.5;
}

/* Package comparison table */
.pkg-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 91, 53, 0.08);
    box-shadow: var(--shadow-sm);
}

.pkg-compare {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--color-bg-alt);
    font-size: 0.8125rem;
}

.pkg-compare th,
.pkg-compare td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(15, 91, 53, 0.08);
}

.pkg-compare thead th {
    background: var(--color-primary-dark);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
}

.pkg-compare__label-col {
    text-align: left !important;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: rgba(15, 91, 53, 0.04);
    min-width: 160px;
}

.pkg-compare__featured {
    background: rgba(212, 175, 55, 0.08);
}

.pkg-compare__check {
    color: var(--color-primary);
}

.pkg-compare tbody tr:last-child td,
.pkg-compare tbody tr:last-child th {
    border-bottom: none;
}

.footer-logo--color {
    filter: none !important;
    opacity: 1 !important;
    max-height: 42px;
    width: auto;
}

@media (max-width: 767.98px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-masonry { columns: 2 150px; }

    .upload-cta {
        grid-template-columns: 1fr;
        padding: 1.35rem;
        gap: 1.35rem;
    }

    .upload-cta__visual {
        order: -1;
        width: 100%;
        max-height: none;
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-radius: var(--radius-lg);
    }

    .upload-cta__visual--ba .ba-card__slider {
        aspect-ratio: 16 / 10;
        min-height: 200px;
    }

    .upload-cta__visual img,
    .upload-cta__visual .img-placeholder {
        width: 100% !important;
        height: 100% !important;
        min-height: 200px;
        object-fit: cover;
        display: block;
        border-radius: inherit;
    }

    .upload-cta h2 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .upload-cta .d-flex.flex-wrap {
        flex-direction: column;
    }

    .upload-cta .d-flex.flex-wrap .btn-luxury {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   PROCESS FLOW — portrait mobile · landscape desktop
   ============================================================ */
.section-process {
    position: relative;
    overflow: hidden;
}

.section-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(15, 91, 53, 0.06), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.05), transparent 40%);
    pointer-events: none;
}

.section-process .container {
    position: relative;
    z-index: 1;
}

.process-flow {
    position: relative;
    margin-top: 0.5rem;
}

.process-flow__track {
    display: none;
}

.process-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* --- Mobile / tablet portrait --- */
.process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: start;
    position: relative;
    padding-bottom: 1.75rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(15, 91, 53, 0.35), rgba(201, 162, 39, 0.25));
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-flow.is-visible .process-step::before {
    transform: scaleY(1);
}

.process-step:last-child::before {
    display: none;
}

.process-step__node {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #f4f9f6);
    border: 2px solid rgba(15, 91, 53, 0.15);
    box-shadow:
        0 4px 16px rgba(15, 91, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 2;
    opacity: 0;
    transform: scale(0.6);
}

.process-step__num {
    position: absolute;
    top: -6px;
    right: -4px;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-secondary);
    background: #fff;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius-full);
    padding: 0.15rem 0.35rem;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.2);
}

.process-step__icon {
    font-size: 1.125rem;
    color: var(--color-primary);
    line-height: 1;
}

.process-step__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(15, 91, 53, 0.25);
    opacity: 0;
    animation: processPulse 2.4s ease-out infinite;
}

.process-step:nth-child(1) .process-step__pulse { animation-delay: 0s; }
.process-step:nth-child(3) .process-step__pulse { animation-delay: 0.8s; }
.process-step:nth-child(5) .process-step__pulse { animation-delay: 1.6s; }

@keyframes processPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.45); opacity: 0; }
}

.process-step__card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 91, 53, 0.1);
    border-radius: 1rem;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 8px 28px rgba(15, 91, 53, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    transform: translateY(16px);
}

.process-step__card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 14px 36px rgba(15, 91, 53, 0.12);
}

.process-step__label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-secondary);
    margin-bottom: 0.35rem;
}

.process-step__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    line-height: 1.3;
    color: var(--color-text);
}

.process-step__desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Desktop landscape --- */
@media (min-width: 992px) {
    .process-flow__track {
        display: block;
        position: absolute;
        top: 28px;
        left: 8%;
        right: 8%;
        height: 4px;
        z-index: 0;
    }

    .process-flow__line {
        position: absolute;
        inset: 0;
        background: rgba(15, 91, 53, 0.1);
        border-radius: var(--radius-full);
    }

    .process-flow__progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        border-radius: var(--radius-full);
        box-shadow: 0 0 12px rgba(201, 162, 39, 0.45);
    }

    .process-flow__steps {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0.75rem;
        align-items: start;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 0;
        grid-template-columns: unset;
        gap: 0;
    }

    .process-step::before {
        display: none;
    }

    .process-step__node {
        width: 58px;
        height: 58px;
        margin-bottom: 1.15rem;
    }

    .process-step__icon {
        font-size: 1.2rem;
    }

    .process-step__card {
        width: 100%;
        padding: 1.1rem 0.85rem;
        min-height: 148px;
    }

    .process-step__title {
        font-size: 0.9375rem;
    }

    .process-step__desc {
        font-size: 0.75rem;
        line-height: 1.55;
    }
}

@media (min-width: 1200px) {
    .process-flow__track {
        left: 6%;
        right: 6%;
    }

    .process-flow__steps {
        gap: 1rem;
    }

    .process-step__card {
        padding: 1.25rem 1rem;
        min-height: 160px;
    }

    .process-step__title {
        font-size: 1rem;
    }

    .process-step__desc {
        font-size: 0.8125rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .process-step__pulse { animation: none; }
    .process-step__node,
    .process-step__card,
    .process-step::before {
        opacity: 1 !important;
        transform: none !important;
    }
}
