/* ═══════════════════════════════════════════════════════════════
   TOUCH OF ELEGANCE — Design System & Styles
   Cherry Blossom Palette · Cormorant Garamond + Montserrat
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Cherry Blossom Palette — muted, sky-inspired tones */
    --petal-blush:       #E8D5DA;   /* very muted blush — subtle bg tints */
    --sakura-muted:      #D4B5BD;   /* dusty mauve-rose — primary accent */
    --deep-rose:         #B8959E;   /* deeper muted rose — hover/emphasis */
    --deep-rose-dark:    #A07E88;   /* darkest rose tone */
    --blossom-white:     #FFF8F9;   /* warm near-white */
    --branch-brown:      #6B4A3A;   /* primary text */
    --bark:              #8C6B58;   /* secondary text */
    --leaf-sage:         #8FA07A;   /* success states */
    --stamen-gold:       #D4A96A;   /* luxury gold accent */
    --stamen-gold-light: #E0BF8A;   /* lighter gold for hover */
    --stamen-gold-dark:  #B8924F;   /* darker gold for hover */

    /* Background Gradients */
    --bg-main: linear-gradient(175deg, #faf6f0 0%, #f5ede0 50%, #ede0cc 100%);
    --bg-card: linear-gradient(160deg, #ede0cc, #e8d4b8);

    /* Typography */
    --font-heading: 'Bellefair', serif;
    --font-body:    'Belleza', sans-serif;

    /* Spacing */
    --section-padding: clamp(5rem, 10vw, 9rem);
    --container-max:   1280px;
    --container-gutter: clamp(1.5rem, 5vw, 4rem);

    /* Transitions */
    --ease-out-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
}


/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--branch-brown);
    background: var(--bg-main);
    min-height: 100vh;
    overflow-x: clip; /* clip instead of hidden allows position: sticky to work */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Lenis Smooth Scroll Recommended CSS ───────────────────── */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}


/* ─── Falling Petals Canvas ─────────────────────────────────── */
#petals-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    #petals-canvas {
        display: none;
    }
}


/* ─── Ambient Glow Blobs ────────────────────────────────────── */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow--top {
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 181, 189, 0.1), transparent 65%);
}

.ambient-glow--bottom {
    bottom: -15%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(232, 213, 218, 0.12), transparent 65%);
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem var(--container-gutter);
    z-index: 1000;
    transition: padding 0.4s var(--ease-out-smooth);
}

/* Background pseudo-element to prevent containment block issues with backdrop-filter */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background 0.5s var(--ease-out-smooth),
                backdrop-filter 0.5s var(--ease-out-smooth),
                -webkit-backdrop-filter 0.5s var(--ease-out-smooth),
                box-shadow 0.4s var(--ease-out-smooth);
    pointer-events: none;
}

/* Scrolled state — filled background on pseudo-element */
.navbar.navbar--scrolled::before {
    background: rgba(250, 246, 240, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 30px rgba(107, 74, 58, 0.06) !important;
}

/* Scroll state padding adjustments on parent */
.navbar.navbar--scrolled {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

/* Mobile menu open — clear background on pseudo-element */
.navbar.navbar--menu-open::before {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}


/* Internal pages default state (dark text, light bg) */
.navbar--internal {
    background: transparent;
}
.navbar--internal .navbar__link {
    color: var(--bark);
}
.navbar--internal .navbar__link:hover {
    color: var(--branch-brown);
}
.navbar--internal .navbar__logo-img {
    filter: brightness(0.95);
}

.navbar--static {
    position: absolute !important;
}


.navbar__logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.navbar__logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s var(--ease-out-smooth),
                filter 0.3s var(--ease-out-smooth);
    /* On hero (transparent bg), the cream logo glows softly */
    filter: brightness(1.1) drop-shadow(0 1px 6px rgba(255, 248, 240, 0.3));
}

.navbar.navbar--scrolled .navbar__logo-img {
    /* On scrolled (cream bg), tone it down slightly so it doesn't wash out */
    filter: brightness(0.95) !important;
    height: 38px !important;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
    position: relative;
    z-index: 10;
}

.navbar__link {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.8);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s var(--ease-out-smooth);
}

.navbar.navbar--scrolled .navbar__link {
    color: var(--bark) !important;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--stamen-gold);
    transition: width 0.35s var(--ease-out-expo);
}

.navbar__link:hover::after,
.navbar__link--active::after {
    width: 100%;
}

.navbar__link:hover {
    color: var(--blossom-white);
}

.navbar.navbar--scrolled .navbar__link:hover {
    color: var(--branch-brown) !important;
}

/* Burger (mobile) */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
    padding: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar__burger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--blossom-white);
    transition: all 0.3s var(--ease-out-smooth);
}

.navbar.navbar--scrolled .navbar__burger span,
.navbar--internal .navbar__burger span,
.navbar.navbar--menu-open .navbar__burger span,
.navbar__burger--open span {
    background-color: var(--branch-brown) !important;
}

.navbar__burger--open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.navbar__burger--open span:nth-child(2) {
    opacity: 0;
}
.navbar__burger--open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    display: none;
}

.hero__content {
    position: absolute;
    left: 50%;
    bottom: 6rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 0 var(--container-gutter);
}

.hero__logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
}

.hero__logo {
    width: clamp(150px, 18vw, 240px);
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.92);
    animation: logoReveal 2s var(--ease-out-expo) 0.4s forwards;
    filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.4)) drop-shadow(0px 0px 25px rgba(220, 180, 120, 0.45)) contrast(1.15) saturate(1.1);
}

.hero__logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 65%);
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: glowFadeIn 2s ease-out 0.8s forwards;
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowFadeIn {
    to {
        opacity: 1;
    }
}

/* ── Hero CTAs ─────────────────────────────────────────────── */
.hero__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeIn 1s var(--ease-out-expo) 1.6s forwards;
}

.hero__cta-group .btn {
    width: 220px;
    text-align: center;
    justify-content: center;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroFadeIn 1s var(--ease-out-expo) 2.2s forwards;
}

.hero__scroll-text {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.4);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212, 169, 106, 0.5), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 1;   transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out-smooth);
    position: relative;
    overflow: hidden;
}

/* Gold filled button — hero CTA */
.btn--gold {
    background: var(--stamen-gold);
    color: #fff;
    border: 1.5px solid var(--stamen-gold);
}

.btn--gold:hover {
    background: var(--stamen-gold-dark);
    border-color: var(--stamen-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 169, 106, 0.35);
}

/* Branch Brown button — elegant primary */
.btn--branch {
    background: var(--branch-brown);
    color: var(--blossom-white);
    border: 1.5px solid var(--branch-brown);
}

.btn--branch:hover {
    background: var(--bark);
    border-color: var(--bark);
    color: var(--stamen-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 74, 58, 0.4);
}

/* Gold outline button — hero secondary CTA */
.btn--gold-outline {
    background: rgba(20, 15, 10, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1.5px solid rgba(212, 169, 106, 0.7);
}

.btn--gold-outline:hover {
    background: rgba(20, 15, 10, 0.55);
    border-color: var(--stamen-gold);
    color: var(--stamen-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 169, 106, 0.2);
}

/* Primary button — for non-hero sections */
.btn--primary {
    background: var(--deep-rose);
    color: var(--blossom-white);
    border: 1.5px solid var(--deep-rose);
}

.btn--primary:hover {
    background: var(--deep-rose-dark);
    border-color: var(--deep-rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 149, 158, 0.3);
}

/* Secondary outline button */
.btn--secondary {
    background: transparent;
    color: var(--branch-brown);
    border: 1.5px solid var(--sakura-muted);
}

.btn--secondary:hover {
    background: var(--petal-blush);
    border-color: var(--deep-rose);
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stamen-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--branch-brown);
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */
.services-wrapper {
    position: relative;
    width: 100%;
    overflow: clip; /* Prevent horizontal scrollbar and perfectly clip at screen edge without breaking position: sticky */
}

.services {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) var(--container-gutter);
    max-width: var(--container-max);
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Service Card */
/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    background: none;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.5s var(--ease-out-expo);
    cursor: pointer;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card__image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4.5; /* Tall, arched frame aspect ratio */
    border-radius: 250px 250px 0 0; /* Arched style top */
    box-shadow: 0 15px 35px rgba(107, 74, 58, 0.05);
    border: 1px solid rgba(212, 181, 189, 0.15);
    background-color: var(--petal-blush);
}

.service-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-card__image {
    transform: scale(1.06);
}

.service-card__body {
    padding: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 500;
    color: var(--branch-brown);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.service-card__link {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stamen-gold);
    transition: color 0.3s, gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-card:hover .service-card__link {
    color: var(--stamen-gold-dark);
    gap: 0.6rem;
}

/* Side Decorative Flowers */
.services__decor-container {
    position: absolute; /* absolute to fill the wrapper */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0; /* Behind the content, so it doesn't block clicks */
}

.services__decor {
    position: sticky; /* stick within the absolute container */
    top: 35vh; /* sticking point in the somewhat middle */
    width: clamp(200px, 25vw, 400px); /* slightly larger to feel more prominent on the edges */
    pointer-events: none;
    will-change: transform, opacity;
}

.services__decor--left {
    float: left;
    margin-left: -5%; /* Hug the left edge tightly */
}

.services__decor--right {
    float: right;
    margin-right: -5%; /* Hug the right edge tightly */
}

.services__decor-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(107, 74, 58, 0.04)) saturate(0.25) sepia(0.2) opacity(0.5); /* Mute the vivid pink to a warm, soft dusty rose */
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .navbar__logo {
        z-index: 1001 !important;
    }

    .navbar.navbar--menu-open .navbar__logo-img {
        filter: brightness(0.95) !important;
    }

    .navbar__burger {
        display: flex;
        z-index: 1002 !important;
    }

    .navbar__links {
        position: fixed;
        inset: 0;
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: #FAF6F0 !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease-out-smooth),
                    visibility 0.4s;
    }

    .navbar__links--open {
        opacity: 1;
        visibility: visible;
    }

    .navbar__links--open .navbar__link {
        color: var(--branch-brown);
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero__logo {
        width: clamp(200px, 65vw, 300px);
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ═══════════════════════════════════════════════════════
   FEATURED COLLECTION
   ═══════════════════════════════════════════════════════ */
.featured {
    padding: var(--section-padding) 0;
    max-width: var(--container-max);
    margin: 0 auto;
}

.featured__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 var(--container-gutter);
    margin-bottom: 3rem;
}

.featured__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--branch-brown);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.featured__nav {
    display: flex;
    gap: 1rem;
}

.featured__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    
    /* Liquid Glass Morphism */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branch-brown);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured__arrow--left {
    left: clamp(10px, 2vw, 20px);
}

.featured__arrow--right {
    right: clamp(10px, 2vw, 20px);
}

@media (min-width: 1024px) {
    .featured__arrow--left {
        left: calc(50% - clamp(280px, 35vw, 420px));
    }
    .featured__arrow--right {
        right: calc(50% - clamp(280px, 35vw, 420px));
    }
}

.featured__arrow:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    color: var(--stamen-gold-dark);
}

.featured__slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    align-items: center; 
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 3rem calc(50vw - clamp(140px, 15vw, 200px));
    perspective: 1200px; /* Add 3D perspective to the container */
    transform-style: preserve-3d;
}

.featured__slider::-webkit-scrollbar {
    display: none; 
}

.featured-card-wrapper {
    flex: 0 0 auto;
    width: clamp(300px, 35vw, 420px);
    scroll-snap-align: center;
    display: block;
    position: relative;
    /* This transforms in 3D based on JS distance calculations */
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.featured-card {
    width: 100%;
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: scale(1);
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-card__image-wrap {
    aspect-ratio: 4 / 5;
    position: relative;
    background: #EFE4D6; /* Placeholder load color */
}

.featured-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay so text is readable against the image */
/* Removed gradient overlay as text is now underneath */

.featured-card__info {
    position: relative;
    padding: 1.5rem 0 1rem;
    color: var(--obsidian-black);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.featured-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.featured-card__price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
}

/* ═══════════════════════════════════════════════════════
   PETAL CTA — Scroll-animated flower mosaic
   ═══════════════════════════════════════════════════════ */

.petal-cta {
    position: relative;
    z-index: 1;
    overflow: clip;
    /* Restored enough bottom padding so the spinning flower doesn't crash into the section below */
    padding: var(--section-padding) 0 clamp(5rem, 8vw, 8rem);
}

.petal-cta__sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 6vw, 6rem);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
}

/* ── Text column ─────────────────────────────────────── */
.petal-cta__text {
    flex: 0 1 440px;
    z-index: 2;
}

.petal-cta__text .section-label {
    margin-bottom: 1rem;
}

.petal-cta__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400;
    color: var(--branch-brown);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.petal-cta__subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bark);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 380px;
}

/* CTA button — thin-bordered, small caps, matching existing .btn */
.btn--outline-dark {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--branch-brown);
    border: 1px solid var(--branch-brown);
    padding: 0.85rem 2.2rem;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn--outline-dark:hover {
    background: var(--branch-brown);
    color: var(--blossom-white);
}

/* ── Petal mosaic container ──────────────────────────── */
.petal-cta__mosaic {
    position: relative;
    flex: 0 0 clamp(280px, 38vw, 500px);
    aspect-ratio: 1;
}

/* ── Individual petals ──────────────────────────────── */
.petal {
    position: absolute;
    width: 46%;
    aspect-ratio: 1;
    /* No overflow hidden — the gold border extends beyond the photo */
    will-change: transform;
}

/* Leaf shape: 75% radius makes them fuller than 100%, finding the middle ground between square and thin leaf */
/* Pointy ends face the CENTER of the flower */
.petal--1,
.petal--3 {
    border-radius: 0 75% 0 75%;
}

.petal--2,
.petal--4 {
    border-radius: 75% 0 75% 0;
}

/* Gold hairline border overlay — extends OUTSIDE the photo */
.petal__border {
    position: absolute;
    inset: -4px;   /* borders almost touching at the center */
    border-radius: inherit; /* Inherit the exact leaf shape from parent */
    border: 1px solid var(--stamen-gold);
    z-index: 2;
    pointer-events: none;
}

/* Photo fills the petal shape — clips itself via border-radius */
.petal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit; /* Inherit the exact leaf shape from parent */
}

/* ── Assembled positions (Centered with tight gaps) ───── */
.petal--1 { bottom: 51%; right: 51%; }
.petal--2 { bottom: 51%; left: 51%; }
.petal--3 { top: 51%; left: 51%; }
.petal--4 { top: 51%; right: 51%; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
    .petal-cta__sticky {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-top: 4rem;
    }

    .petal-cta__text {
        flex: none;
        width: 100%;
    }

    .petal-cta__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .petal-cta__mosaic {
        flex: 0 0 clamp(220px, 70vw, 320px);
    }
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIAL SECTION
   ═══════════════════════════════════════════════════════ */
.testimonial {
    position: relative;
    z-index: 2;
    /* Increased top padding slightly to give the flower breathing room */
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(6rem, 10vw, 10rem);
    /* Start completely transparent so there is ZERO harsh line, then gracefully fade into the warm base */
    background: linear-gradient(to bottom, transparent 0%, #e3ceb0 150%);
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/testimonial-texture.webp');
    background-size: 100% auto;
    background-repeat: repeat;
    background-position: top center;
    mix-blend-mode: soft-light;
    opacity: 0.08; /* Extremely subtle 8% opacity */
    /* Beautifully fade the texture out at the very top and very bottom so it blends seamlessly without a harsh line */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.testimonial__container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(4rem, 8vw, 8rem);
    min-height: 50vh;
}

.testimonial__content-wrapper {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial__slider {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-areas: "slide";
    align-items: center;
}

.testimonial__slide {
    grid-area: slide;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.testimonial__slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.testimonial__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #4A3123; 
    margin-bottom: 2rem;
}

.testimonial__text {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: #4A3123;
}

.testimonial__interaction {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.flower-btn-wrapper {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    width: clamp(50px, 8vw, 75px);
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.flower-btn-wrapper:hover {
    transform: scale(1.1) rotate(10deg);
}

.flower-btn {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: saturate(0.2) sepia(0.2) drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: filter 0.5s ease;
}

.flower-btn-wrapper:hover .flower-btn {
    filter: saturate(0.6) sepia(0.1) drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.flower-btn-ring {
    position: absolute;
    /* Fixed pixel offsets to recreate the exact visual gap from the original giant button */
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    border: 1px dashed rgba(74, 49, 35, 0.25);
    border-radius: 50%;
    z-index: 1;
    animation: spin 30s linear infinite;
    pointer-events: none;
}

.testimonial__image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .testimonial__container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .testimonial__slider {
        margin: 0 auto;
    }
    
    .testimonial__interaction {
        justify-content: center;
    }
    
    .testimonial__image-wrapper {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .testimonial__heading {
        font-size: 2rem;
    }
    .testimonial__text {
        font-size: 1rem;
    }
    .testimonial__container {
        gap: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


/* ═══════════════════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════════════════ */

/* ── Keyframes ────────────────────────────────────────
   Three offset rhythms so no two flowers move together. */
@keyframes flora-a {
    0%, 100% { translate: 0 0px; opacity: 0.08; }
    50%       { translate: 0 -8px; opacity: 0.22; }
}
@keyframes flora-b {
    0%, 100% { translate: 0 0px; opacity: 0.08; }
    30%       { translate: 0 -4px; opacity: 0.20; }
    70%       { translate: 0 -8px; opacity: 0.22; }
}
@keyframes flora-c {
    0%, 100% { translate: 0 0px; opacity: 0.08; }
    20%       { translate: 0 -6px; opacity: 0.22; }
    60%       { translate: 0 -2px; opacity: 0.20; }
}

/* ── Wrapper ────────────────────────────────────────── */
.site-footer {
    position: relative;
    background: #0d0806;
}

.site-footer__grid {
    position: relative;
    z-index: 10;
}

/* ── Botanical flora scattered background ─────────────── */
.site-footer__flora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Shared flower rules */
.flora-img {
    position: absolute;
    /* Subtly transparent so text above it is perfectly readable */
    opacity: 0.08;
    /* Baseline constraints to prevent huge scaling before JS kicks in */
    width: 200px;
    max-width: 300px;
}

/* ── Individual scattered flower placements ───────────── */
/* Note: Positioning, width, and rotation are now handled dynamically in main.js */

.flora-img--01 {
    animation: flora-a 12s ease-in-out infinite;
    animation-delay: 0s;
}

.flora-img--02 {
    animation: flora-b 10s ease-in-out infinite;
    animation-delay: -3.5s;
}

.flora-img--03 {
    animation: flora-c 14s ease-in-out infinite;
    animation-delay: -7s;
}

.flora-img--04 {
    animation: flora-a 11s ease-in-out infinite;
    animation-delay: -2s;
}

.flora-img--05 {
    animation: flora-b 13s ease-in-out infinite;
    animation-delay: -5.5s;
}

.flora-img--06 {
    animation: flora-c 9.5s ease-in-out infinite;
    animation-delay: -1.2s;
}

.flora-img--07 {
    animation: flora-a 15s ease-in-out infinite;
    animation-delay: -8s;
}

/* ── Balanced Flex Layout ───────────────────────────── */
.site-footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 48px 20px;
}

.footer-nav-group {
    display: flex;
    gap: 80px;
    padding-top: 2px;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand__logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: brightness(.95);
    flex-shrink: 0;
}

.footer-brand__tagline {
    font-family: 'Belleza', sans-serif;
    font-size: 12.5px;
    line-height: 1.8;
    color: rgba(232, 213, 188, .75);
    letter-spacing: .03em;
    max-width: 215px;
}

.footer-brand__location {
    font-family: 'Belleza', sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #D4A96A;
    opacity: .55;
}

/* Nav columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-col--connect {
    align-items: flex-end;
    text-align: right;
    padding-top: 2px;
}

.footer-col__heading {
    font-family: 'Bellefair', serif;
    font-size: 24px;
    font-weight: 400;
    background: linear-gradient(135deg, #ffffff 0%, #D4A96A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .02em;
    margin: 0;
}

.footer-col__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col__links a {
    font-family: 'Belleza', sans-serif;
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(226, 213, 188, .75);
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
}

.footer-col__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #D4A96A;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-col__links a:hover {
    color: #D4A96A;
    transform: translateX(5px);
}

.footer-col__links a:hover::after {
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 4px;
}

.footer-socials a {
    color: rgba(226, 213, 188, .75);
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
}

.footer-socials a:hover {
    color: #D4A96A;
    transform: translateY(-4px);
}

/* ── Bottom bar ─────────────────────────────────────── */
.site-footer__bottom {
    border-top: 1px solid rgba(212, 169, 106, .10);
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-footer__copy {
    font-family: 'Belleza', sans-serif;
    font-size: 10px;
    letter-spacing: .07em;
    color: rgba(226, 213, 188, .65);
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 28px;
}

.site-footer__legal a {
    font-family: 'Belleza', sans-serif;
    font-size: 10px;
    letter-spacing: .07em;
    color: rgba(226, 213, 188, .65);
    transition: color .25s;
}

.site-footer__legal a:hover {
    color: var(--stamen-gold);
}

/* ─── FLOATING ACTION BUTTON (FAB) ──────────────────────────── */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.fab-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
    margin-bottom: 1rem;
    pointer-events: none; /* Enabled via JS when open */
}

.fab-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--branch-brown);
    background: rgba(255, 248, 249, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 169, 106, 0.2);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.fab-item:hover {
    background: var(--stamen-gold);
    color: #fff;
    transform: translateX(-5px);
}

.fab-toggle {
    height: 50px;
    padding: 0 1.2rem;
    border-radius: 25px;
    background: var(--sakura-muted);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 181, 189, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
    pointer-events: auto;
}

.fab-toggle-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    white-space: nowrap;
}

.fab-toggle svg {
    width: 20px;
    height: 20px;
}

.fab-toggle:hover {
    background: var(--deep-rose);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 12px;
        right: 12px;
    }
    .fab-toggle {
        height: 45px;
        padding: 0 1rem;
    }
    .fab-toggle-text {
        font-size: 1rem;
    }
    .fab-toggle svg {
        width: 18px;
        height: 18px;
    }
}
/* ═══════════════════════════════════════════════════════
   INTERNAL PAGES: BESPOKE
   ═══════════════════════════════════════════════════════ */
.bespoke-main {
    padding-top: 100px; /* offset for fixed header */
    background: transparent;
}

/* ── Intro ── */
.bespoke-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    border-bottom: 1px solid rgba(107, 74, 58, 0.1);
}

.bespoke-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-padding) clamp(2rem, 8vw, 6rem);
}

.bespoke-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 400; /* FIX FAUX BOLD BUG */
    line-height: 1.1;
    color: var(--branch-brown);
    margin-bottom: 2rem;
}

.bespoke-intro__desc {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: var(--bark);
    max-width: 500px;
}

.bespoke-intro__image-desktop {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bespoke-intro__image-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bespoke-intro__image-mobile {
    display: none;
    margin-top: 3rem;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.bespoke-intro__image-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ── The Process (Bespoke Journey) ── */
.bespoke-journey-scene {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 8rem var(--container-gutter);
    overflow: hidden; /* Hide horizontal overflow of nodes */
}

.journey-container {
    position: relative;
    height: 2200px; /* Provides scrolling space */
    max-width: 1000px;
    margin: 0 auto;
}

.journey-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    z-index: 1;
}

.journey-line-bg {
    fill: none;
    stroke: rgba(212, 169, 106, 0.15); /* Faint gold */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-line-draw {
    fill: none;
    stroke: var(--stamen-gold); /* Bright gold */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.journey-node {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 2;
}

.journey-node--left {
    flex-direction: row;
}

.journey-node--right {
    flex-direction: row;
}

.journey-node__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-node--left .journey-node__content {
    text-align: center;
    padding-right: 3rem;
    align-items: center;
}

.journey-node--right .journey-node__content {
    text-align: center;
    padding-left: 3rem;
    align-items: center;
}

.journey-node__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px rgba(107, 74, 58, 0.1);
    transform: translateY(30px);
    opacity: 0;
}

.journey-node__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-node__num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--stamen-gold);
    margin-bottom: 1rem;
    display: block;
}

.journey-node__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--branch-brown);
    margin-bottom: 1.5rem;
}

.journey-node__desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--bark);
    text-align: center;
    align-self: center;
    max-width: 400px;
}

@media (max-width: 768px) {
    .journey-svg {
        left: 0;
        width: 40px;
        transform: none;
    }

    .journey-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 6rem;
    }
    
    .journey-node {
        position: relative !important;
        top: auto !important;
        flex-direction: column !important;
        gap: 2rem;
        padding-left: 50px;
    }
    
    .journey-node__content, 
    .journey-node--left .journey-node__content, 
    .journey-node--right .journey-node__content {
        text-align: left;
        padding: 0;
        align-items: flex-start;
    }

    .journey-node__desc {
        text-align: left;
    }

    /* Force image to be above content on mobile for consistency */
    .journey-node__image {
        order: -1;
        width: 100%;
        transform: none !important;
    }
}

/* ── Bloom CTA ── */
.bloom-cta {
    position: relative;
    text-align: center;
    padding: 10rem var(--container-gutter);
    z-index: 10;
    overflow: hidden; /* Prevent petals from expanding page width */
}

.bloom-cta__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bloom-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 400; /* FIX FAUX BOLD BUG */
    color: var(--branch-brown);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.bloom-cta__title .line {
    overflow: hidden;
}

.bloom-cta__title .word {
    display: inline-block;
    margin-right: 0.16em;
}

.bloom-cta__title .word:last-child {
    margin-right: 0;
}

.bloom-cta__desc {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: var(--bark);
    line-height: 1.6;
    margin-bottom: 5rem;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.bloom-cta__desc .line {
    overflow: hidden;
}

/* Blooming Flower Wrapper */
.bloom-flower-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Buffer for petals expanding */
    padding: 2rem;
}

.bloom-petal {
    position: absolute;
    width: 150px;
    height: auto;
    opacity: 0.9;
    will-change: transform;
    /* Let GSAP handle the rotation and translation */
}

/* Base button styles */
.bloom-btn {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    
    /* Elegant Glassmorphism */
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 169, 106, 0.4);
    box-shadow: 0 15px 45px rgba(107, 74, 58, 0.12);
    
    color: var(--branch-brown);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bloom-btn::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(212, 169, 106, 0.25);
    border-radius: 50%;
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.15); opacity: 0; }
}

.bloom-btn:hover {
    background: var(--stamen-gold);
    color: #fff;
    border-color: var(--stamen-gold);
    box-shadow: 0 20px 50px rgba(212, 169, 106, 0.3);
}

.bloom-btn .btn-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.15;
    pointer-events: none;
    margin-bottom: 0.8rem;
}

.bloom-btn .btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(107, 74, 58, 0.06);
    transition: background 0.4s ease, transform 0.4s ease;
}

.bloom-btn:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.bloom-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

.bloom-btn:hover svg {
    transform: translateX(2px);
}

@media (max-width: 900px) {
    .bespoke-intro {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .bespoke-intro__image-desktop {
        display: none;
    }
    .bespoke-intro__image-mobile {
        display: block;
    }
    .bespoke-intro__content {
        padding-top: calc(var(--section-padding) + 40px);
    }
    .bloom-cta {
        padding: 5rem var(--container-gutter);
    }
    .bloom-flower-wrapper {
        width: 240px;
        height: 240px;
    }
    .bloom-btn {
        width: 180px;
        height: 180px;
    }
    .bloom-btn .btn-text {
        font-size: 1.2rem;
    }
    .stack-card__inner {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    .stack-card__image {
        aspect-ratio: 1/1;
    }
}
/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
    .site-footer__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 44px 40px;
        padding: 48px 32px 44px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .site-footer__flora { height: 160px; }
    .flora-img--03,
    .flora-img--04 { display: none; }
    .site-footer__bottom { padding: 20px 32px; }
}

@media (max-width: 580px) {
    .site-footer__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 24px 36px;
    }
    .footer-nav-group {
        flex-direction: column;
        gap: 28px;
    }
    .site-footer__flora { height: 130px; }
    .flora-img--02,
    .flora-img--04,
    .flora-img--05 { display: none; }
    .flora-img--01 { width: 200px; }
    .flora-img--06 { width: 210px; }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 24px;
        gap: 14px;
    }
    .site-footer__legal { gap: 20px; }
}

/* Accessibility — no animation if user prefers it */
@media (prefers-reduced-motion: reduce) {
    .flora-img { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT US (EDITORIAL SPLIT)
   ═══════════════════════════════════════════════════════ */
.about-editorial {
    position: relative;
    width: 100%;
    /* Start completely transparent so there is ZERO harsh line, then gracefully fade into the warm base */
    background: linear-gradient(to bottom, transparent 0%, #e3ceb0 150%);
    padding: 10rem 0;
    overflow: hidden;
    z-index: 1;
}

.about-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/testimonial-texture.webp');
    background-size: 100% auto;
    background-repeat: repeat;
    background-position: top center;
    mix-blend-mode: soft-light;
    opacity: 0.08; /* Extremely subtle 8% opacity */
    /* Beautifully fade the texture out at the very top and very bottom so it blends seamlessly without a harsh line */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.about-editorial__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-editorial__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* --- Left Column: Typography --- */
.about-editorial__text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.about-editorial__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.about-editorial__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-editorial__desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 3rem;
}

/* --- Magnetic Button with Icon --- */
.about-editorial__btn-wrap {
    position: relative;
    display: inline-block;
}

.magnetic-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    border-radius: 4rem;
    text-decoration: none;
    will-change: transform;
}

.magnetic-btn .btn-text {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.05em;
    will-change: transform;
    color: var(--color-dark);
}

.magnetic-btn .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    color: var(--color-dark);
}

.magnetic-btn:hover .btn-icon {
    transform: scale(1.1);
    background-color: var(--color-dark);
    color: var(--color-light);
}

/* --- Right Column: Parallax Images --- */
.about-editorial__image-col {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .about-editorial__image-col {
        height: auto;
        aspect-ratio: 1 / 1;
        min-height: 350px;
        margin-top: 2rem;
    }
}

/* Double-Bezel nested architecture */
.about-editorial__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    will-change: transform;
}

.about-editorial__card .card-inner {
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.about-editorial__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning the overlapping cards */
.about-editorial__card--back {
    width: 60%;
    height: 70%;
    right: 0;
    top: 5%;
    z-index: 1;
}

.about-editorial__card--front {
    width: 55%;
    height: 65%;
    left: 0;
    bottom: 5%;
    z-index: 2;
}

@media (max-width: 900px) {
    .about-editorial__card--back {
        width: 70%;
        height: 80%;
        top: 0;
    }
    .about-editorial__card--front {
        width: 65%;
        height: 75%;
        bottom: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   GALLERY PIN
   ═══════════════════════════════════════════════════════ */
.gallery-pin {
    position: relative;
    background-color: var(--color-light);
    color: var(--color-dark);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.gallery-header {
    padding: 0 5%;
    margin-bottom: 2rem;
}

.gallery-track-container {
    width: 100%;
}

.gallery-track {
    display: flex;
    width: max-content;
    padding: 0 5%;
    gap: 2rem;
    will-change: transform;
}

@media (max-width: 767px) {
    .gallery-wrapper {
        height: auto;
        padding: 4rem 0;
    }
    .gallery-track-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 1rem;
    }
    .gallery-track-container::-webkit-scrollbar {
        display: none;
    }
    .gallery-slide {
        scroll-snap-align: center;
    }
    .gallery-track {
        padding: 0 7.5vw;
        gap: 1.5rem;
    }
}

.gallery-slide {
    width: clamp(280px, 85vw, 800px);
    aspect-ratio: 4 / 3;
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.gallery-cta-card {
    text-align: center;
    padding: 2rem;
}

.gallery-cta-card__title {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-cta-card__desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════
   LUXURY EVENT HIRE PAGE
   ═══════════════════════════════════════════════════════ */

.hire-main {
    padding-top: 120px; /* clear the navbar */
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
}

/* Hero Section */
.hire-hero {
    display: flex;
    gap: 4rem;
    min-height: 70vh;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hire-hero__content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    z-index: 10;
}

.hire-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stamen-gold);
    font-weight: bold;
}

.hire-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--branch-brown);
    margin: 0;
}

.hire-hero__desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    color: var(--bark);
    max-width: 520px;
}

.hire-hero__visual {
    flex: 0.9;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hire-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hire-hero__visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 169, 106, 0.15) 0%, rgba(212, 169, 106, 0) 70%);
    pointer-events: none;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   STICKY STACKING PROCESS SECTION (HIRE PAGE)
   ═══════════════════════════════════════════════════════ */
.stacking-process-section {
    padding: 10rem 0; /* Huge premium padding */
    position: relative;
    background: var(--bg-main);
}

.stacking-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.stacking-left {
    position: sticky;
    top: 15vh;
    width: 45%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stacking-image-frame {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 300px 300px 20px 20px; /* Elegant arched frame */
    background: linear-gradient(180deg, rgba(232,213,218,0.4) 0%, rgba(232,213,218,0) 100%);
    border: 1px solid rgba(212, 169, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Important for the zoom effect */
}

.stacking-flower {
    width: 120%;
    height: 120%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(107, 74, 58, 0.3));
    will-change: transform;
    /* Transformation handled by GSAP */
}

/* The Cards Container */
.stacking-right {
    width: 50%;
}

.stacking-cards-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Normal gap between cards */
    padding-bottom: 10vh;
}

/* Completely remove all stacking/sticky behavior. Cards will scroll normally. */
.stack-card {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
}

.s-card-inner {
    background: var(--blossom-white);
    border: 1px solid rgba(107, 74, 58, 0.05);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    will-change: transform;
}

/* Base z-indexes so they overlap correctly when pinned */
#card-1 { z-index: 10; }
#card-2 { z-index: 20; }
#card-3 { z-index: 30; }

.s-card-num {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--blossom-white);
    background: var(--stamen-gold);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.s-card-title {
    font-family: var(--font-heading);
    color: var(--branch-brown);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.s-card-desc {
    color: var(--bark);
    line-height: 1.8;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .stacking-container {
        flex-direction: column;
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .stacking-left, .stacking-right {
        width: 100%;
    }

    .stacking-left {
        position: relative;
        top: 0;
        height: 60vh;
    }
    
    .stacking-right {
        padding-bottom: 5vh;
    }
    
    .stack-card {
        position: relative;
        top: 0 !important;
        margin-bottom: 2rem;
    }
}

/* End of winding process section */


/* Catalog Section */
.catalog-section {
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.catalog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(140, 107, 88, 0.3);
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--branch-brown);
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.4s var(--ease-out-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--stamen-gold);
    border-color: var(--stamen-gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 169, 106, 0.2);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.catalog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 169, 106, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out-smooth), box-shadow 0.5s var(--ease-out-smooth);
    will-change: transform;
}

.catalog-card.hidden {
    display: none;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 74, 58, 0.08);
}

.catalog-card__image-wrap {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.catalog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.catalog-card:hover .catalog-card__image {
    transform: scale(1.06);
}

.catalog-card__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--branch-brown);
    border: 1px solid rgba(212, 169, 106, 0.3);
}

.catalog-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--branch-brown);
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.catalog-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--bark);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.catalog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(140, 107, 88, 0.1);
    padding-top: 1.5rem;
    margin-top: auto;
}

.catalog-card__price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--branch-brown);
}

.catalog-card__price small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--bark);
}

/* Floating Cart FAB */
.fab-container--cart {
    z-index: 999;
    bottom: 100px;
}

.fab-toggle--cart {
    background: var(--branch-brown);
    color: #fff;
    border: 1px solid var(--stamen-gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(107, 74, 58, 0.3);
}

.fab-toggle--cart:hover {
    background: #000;
    border-color: var(--stamen-gold-light);
}

.fab-cart-count {
    background: var(--stamen-gold);
    color: #fff;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    margin-left: -0.3rem;
}

/* Side Drawer (Quote Cart) */
.quote-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 8, 6, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.quote-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100vh;
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(24px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1001;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.5s var(--ease-out-expo);
}

.quote-drawer.active {
    transform: translateX(0);
}

.quote-drawer__header {
    padding: 2.5rem;
    border-bottom: 1px solid rgba(140, 107, 88, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.quote-drawer__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--branch-brown);
    margin: 0;
    font-weight: 400;
}

.quote-drawer__close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--branch-brown);
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.quote-drawer__close:hover {
    opacity: 1;
}

.quote-drawer__items-container {
    flex-grow: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-drawer__empty-state {
    text-align: center;
    color: var(--bark);
    font-family: var(--font-body);
    margin: auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Quote Item Row */
.quote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(140, 107, 88, 0.1);
    padding: 1.2rem;
    border-radius: 8px;
    gap: 1rem;
}

.quote-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.quote-item__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--branch-brown);
    font-weight: 400;
}

.quote-item__price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--stamen-gold-dark);
}

.quote-item__remove {
    background: transparent;
    border: none;
    color: #c94a4a;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.quote-item__remove:hover {
    opacity: 0.7;
}

/* Quote Drawer Footer & Form */
.quote-drawer__footer {
    padding: 2.5rem;
    background: rgba(255, 251, 245, 0.98);
    border-top: 1px solid rgba(140, 107, 88, 0.15);
}

.quote-drawer__total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--branch-brown);
    margin-bottom: 2rem;
}

#drawer-total-val {
    color: var(--stamen-gold-dark);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form__label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--branch-brown);
}

.quote-form__input {
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(140, 107, 88, 0.3);
    background: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--branch-brown);
    outline: none;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.quote-form__input:focus {
    border-color: var(--stamen-gold);
    background: #fff;
}

.quote-form__input--textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.quote-form__hint {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--bark);
    opacity: 0.8;
}

.w-100 {
    width: 100%;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 8, 6, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal {
    background: #fff;
    border: 1px solid var(--stamen-gold);
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-out-expo);
}

.success-modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-modal__icon {
    width: 64px;
    height: 64px;
    background: var(--petal-blush);
    color: var(--branch-brown);
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-modal__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--branch-brown);
    margin-bottom: 1rem;
    font-weight: 400;
}

.success-modal__message {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bark);
    margin-bottom: 2.5rem;
}

/* Responsiveness for Hire Page */
@media (max-width: 992px) {
    .hire-hero {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding-top: 1rem;
    }
    
    .hire-hero__content {
        align-items: center;
    }
    
    .hire-hero__visual {
        width: 100%;
        max-width: 450px;
        aspect-ratio: 1;
    }
}

@media (max-width: 600px) {
    .quote-drawer {
        width: 100%;
    }
    
    .quote-drawer__header, .quote-drawer__items-container, .quote-drawer__footer {
        padding: 1.8rem;
    }
    
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US PAGE - ADVANCED GSAP INTERACTIONS
   ═══════════════════════════════════════════════════════════════ */

/* --- 1. Archway Dive (Zoom Through) --- */
.zoom-scene {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
}

.about-scroll-prompt {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: var(--blossom-white);
}

.about-scroll-prompt__text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: pulseText 2s infinite ease-in-out;
}

.about-scroll-prompt__line {
    width: 2px;
    height: 60px;
    background: rgba(255, 248, 249, 0.3);
    position: relative;
    overflow: hidden;
}

.about-scroll-prompt__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--stamen-gold);
    transform: translateY(-100%);
    animation: scrollLine 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.zoom-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    will-change: transform, opacity;
}

/* Layer 1 & 2 are the floral archways with transparent radial holes */
.zoom-layer-1 {
    background: radial-gradient(circle transparent 12%, var(--sakura-muted) 12.5%);
    background-image: url('assets/images/footer/flower-02.webp'), radial-gradient(circle transparent 12%, var(--sakura-muted) 12.5%);
    background-blend-mode: overlay;
    background-size: 50%, 100%;
    z-index: 3;
}

.zoom-layer-2 {
    background: radial-gradient(circle transparent 22%, var(--deep-rose-dark) 22.5%);
    z-index: 2;
}

.zoom-layer-3 {
    /* The final revealed image */
    background: url('assets/images/about_archway_bg.webp') center/cover;
    z-index: 1;
}

.zoom-text-overlay {
    position: absolute;
    z-index: 4;
    text-align: center;
    opacity: 0;
    color: var(--blossom-white);
    font-family: var(--font-body);
}

.zoom-text-overlay h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.zoom-text-overlay p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-family: var(--font-body);
}

/* --- 2. The Golden Stem (Scrollytelling SVG) --- */
.scrollytelling-container {
    position: relative;
    width: 100%;
    height: 300vh; /* Scroll length */
    background: var(--blossom-white);
}

.path-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

svg.golden-stem {
    width: 100%;
    height: 100%;
    max-width: 600px;
    overflow: visible;
}

.stem-track {
    fill: none;
    stroke: rgba(212, 169, 106, 0.15); /* Faint gold */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stem-fill {
    fill: none;
    stroke: var(--stamen-gold); /* Bright gold */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Story Nodes that bloom out from the stem */
.story-node {
    position: absolute;
    width: 40%;
    max-width: 400px;
    opacity: 0;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(107, 74, 58, 0.05);
}

.story-node--left {
    left: 5%;
    text-align: left;
}

.story-node--right {
    right: 5%;
    text-align: left;
}

@media (max-width: 900px) {
    .story-node {
        width: 90%;
        max-width: none;
        left: 5% !important;
        right: 5% !important;
        text-align: center;
        padding: 2rem;
    }
    .story-node h3 {
        text-align: center;
    }
}

.story-node h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--branch-brown);
    margin-bottom: 1.5rem;
}

.story-node p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--bark);
}

/* --- 3. Moody Immersion (Scale-to-Theme Shift) --- */
.theme-shift-scene {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* Body bg handles the transition */
}

.moody-image-container {
    width: 25vw;
    height: 40vh;
    background: url('assets/images/about_moody_portrait.webp') center/cover;
    border-radius: 20px;
    will-change: width, height, border-radius;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.moody-overlay-text {
    color: var(--blossom-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(3rem, 8vw, 7rem);
    opacity: 0;
    text-align: center;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2;
}

/* Post-Theme Shift Content (CTA) */
.post-shift-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--stamen-gold);
    padding: 5rem;
    opacity: 0; /* Revealed by GSAP */
}

.post-shift-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.post-shift-content h2 {
    font-family: var(--font-body);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--blossom-white);
}

.post-shift-content p {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 248, 249, 0.8);
    font-weight: 300;
}

.post-shift-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--stamen-gold);
    border: 1px solid var(--stamen-gold);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    overflow: hidden;
}

.post-shift-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--stamen-gold);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 0;
}

.post-shift-btn:hover::before {
    transform: translateY(0);
}

.post-shift-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.post-shift-btn:hover span {
    color: var(--branch-brown);
}




/* ============================================================
   PREMIUM GALLERY PAGE OVERHAUL (AWWWARDS STYLE)
   ============================================================ */

.gallery-main {
    background-color: var(--bg-main);
    color: var(--branch-brown);
    min-height: 100vh;
}

/* 1. Hero Section */
.gallery-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height, 100px) + 2rem) 2rem 2rem 2rem; /* Reduced top padding */
    position: relative;
    background: radial-gradient(circle at center, #FFFDF9, #FAF6F0);
}

.gallery-hero__content {
    max-width: 800px;
}

.gallery-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Slightly smaller */
    font-weight: 400; /* FIX FAUX BOLD BUG */
    color: var(--branch-brown);
    margin: 0.5rem 0;
    line-height: 1.1;
}

.gallery-hero__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--bark);
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Interactive Filter Menu & Layout - Premium Redesign */
.gallery-layout {
    display: flex;
    flex-direction: column;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    gap: 3rem;
}

.gallery-filters-wrapper {
    position: sticky;
    top: calc(var(--nav-height, 100px));
    z-index: 50;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 169, 106, 0.15);
    padding: 1rem 0;
    width: 100%;
}

.gallery-filters {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1023px) {
    .gallery-filters-wrapper {
        -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
        mask-image: linear-gradient(to right, #000 85%, transparent 100%);
    }
    .gallery-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem var(--container-gutter) 0.5rem var(--container-gutter);
        gap: 1.5rem;
    }
    .gallery-filters::-webkit-scrollbar {
        display: none;
    }
    .gallery-filter {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .gallery-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .gallery-filters-wrapper {
        top: calc(var(--nav-height, 100px) + 2rem);
        flex: 0 0 250px;
        padding: 0;
        border-bottom: none;
        background: transparent;
        backdrop-filter: none;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .gallery-grid-section {
        flex: 1;
        width: 100%;
    }
}

.gallery-filter {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.75rem; 
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em; 
    color: rgba(107, 74, 58, 0.5); /* Faded bark */
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.4s var(--ease-out-smooth);
}

.gallery-filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--stamen-gold);
    transition: width 0.4s var(--ease-out-expo);
}

.gallery-filter:hover {
    color: var(--branch-brown);
}

.gallery-filter.is-active {
    color: var(--branch-brown);
}

.gallery-filter.is-active::after {
    width: 100%;
}

/* 3. Unified Masonry Grid */
.gallery-grid-section {
    padding-bottom: 6rem;
}

.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    cursor: none; /* Custom cursor */
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item__inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transform: translateZ(0); /* Force GPU */
}

.gallery-item__inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease-out-smooth);
    will-change: transform;
}

.gallery-item__inner:hover img {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(107, 74, 58, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-item__inner:hover .gallery-item__overlay {
    opacity: 1;
}

/* 4. Custom Cursor (Magnetic "View") */
.gallery-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--stamen-gold);
    color: var(--blossom-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo);
    mix-blend-mode: normal;
}

.gallery-cursor.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-cursor::after {
    content: 'View';
}

/* 5. Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox__close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--branch-brown);
    cursor: pointer;
    padding: 1rem;
}

.gallery-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(107, 74, 58, 0.15);
    transform: translateY(20px);
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-lightbox.is-open .gallery-lightbox__img {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════════ */

body.is-loading {
    overflow: hidden;
    height: 100vh;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--blossom-white, #FFFDF9);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preloader .lottie-container {
    width: 120px;
    height: 120px;
}

#preloader .preloader-text {
    margin-top: 1.5rem;
    font-family: var(--font-body, 'Belleza', sans-serif);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--stamen-gold, #D4A96A);
    opacity: 0.7;
}

/* Prevent GSAP flash-of-unstyled-content */
.gsap-hidden {
    visibility: hidden;
}

/* Preloader skip states to prevent layout shifts & flashes */
.preloader-skipped #preloader {
    display: none !important;
}
.preloader-skipped body.is-loading {
    overflow: visible !important;
    height: auto !important;
}

/* Hide bespoke page elements initially to prevent GSAP FOUC flash */
.bespoke-intro__content > * {
    opacity: 0;
    transform: translateY(30px);
}
.bespoke-intro__image-desktop img,
.bespoke-intro__image-mobile img {
    opacity: 0;
    transform: scale(1.05);
}
