/* ============================================================
   JAQUELINE'S FLOWERS — Romantic Botanical Editorial
   Palette: Cream, Blush Pink, Sage Green, Warm Brown, Gold
   Fonts: Cormorant Garamond (display) + Libre Baskerville (body)
   ============================================================ */

:root {
    /* Core palette */
    --cream: #fdf9f3;
    --cream-dark: #f5efe6;
    --blush: #dbb6ac;
    --blush-light: #f0ddd7;
    --blush-pale: #f7ece8;
    --sage: #8fa389;
    --sage-dark: #6b8566;
    --sage-light: #c5d4c0;
    --sage-pale: #e8efe6;
    --brown: #3a302a;
    --brown-light: #6b5b52;
    --brown-warm: #8c7567;
    --gold: #ba9b6e;
    --gold-light: #d4c4a0;
    --white: #ffffff;

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Libre Baskerville', 'Georgia', serif;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container-max: 1200px;
    --container-pad: clamp(1.25rem, 4vw, 2rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--brown);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
    background: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(58, 48, 42, 0.08);
    padding: 0.6rem 0;
}
.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.header-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.01em;
}
.logo-j {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sage-dark);
}
.logo-text em {
    font-style: italic;
    font-weight: 300;
    color: var(--blush);
}
.header-nav {
    display: flex;
    gap: 2rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.header-nav a {
    color: var(--brown-light);
    transition: color 0.3s;
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--sage);
    transition: width 0.3s;
}
.header-nav a:hover { color: var(--sage-dark); }
.header-nav a:hover::after { width: 100%; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-dark);
    padding: 0.5rem 1.2rem;
    border: 1.5px solid var(--sage);
    border-radius: 100px;
    transition: all 0.3s;
}
.header-phone:hover {
    background: var(--sage);
    color: var(--white);
}
.header-phone svg { flex-shrink: 0; }

@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-phone span { display: none; }
    .header-phone { padding: 0.5rem; border-radius: 50%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem var(--container-pad) 3rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(219, 182, 172, 0.25), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(143, 163, 137, 0.2), transparent),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(186, 155, 110, 0.08), transparent),
        linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 50%, var(--blush-pale) 100%);
}

/* Botanical line art accents — CSS-only */
.hero-botanical {
    position: absolute;
    width: 300px;
    height: 400px;
    opacity: 0.12;
    pointer-events: none;
}
.hero-botanical--left {
    left: -40px;
    bottom: 10%;
    background:
        radial-gradient(circle at 50% 80%, transparent 30%, var(--sage) 30%, var(--sage) 31%, transparent 31%),
        radial-gradient(circle at 40% 60%, transparent 20%, var(--sage) 20%, var(--sage) 21%, transparent 21%),
        radial-gradient(circle at 60% 40%, transparent 15%, var(--sage) 15%, var(--sage) 16%, transparent 16%);
    transform: rotate(-15deg);
}
.hero-botanical--right {
    right: -60px;
    top: 15%;
    background:
        radial-gradient(circle at 50% 20%, transparent 25%, var(--blush) 25%, var(--blush) 26%, transparent 26%),
        radial-gradient(circle at 40% 50%, transparent 18%, var(--blush) 18%, var(--blush) 19%, transparent 19%);
    transform: rotate(20deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(143, 163, 137, 0.12);
    border: 1px solid rgba(143, 163, 137, 0.25);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1s ease-out;
}
.hero-badge-stars {
    display: flex;
    gap: 3px;
}
.star {
    display: inline-block;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
}
.hero-badge-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}
.hero-title-line {
    display: block;
}
.hero-title-line--1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    animation: heroSlideUp 0.8s ease-out;
}
.hero-title-line--2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-style: italic;
    color: var(--blush);
    animation: heroSlideUp 0.8s ease-out 0.15s both;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--brown-warm);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--brown-warm);
    letter-spacing: 0.02em;
    animation: heroFadeIn 1s ease-out 0.7s both;
}
.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.hero-meta-item svg { opacity: 0.6; }
.hero-meta-divider { opacity: 0.3; }

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--sage-dark);
    color: var(--white);
    border-color: var(--sage-dark);
}
.btn--primary:hover {
    background: var(--brown);
    border-color: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 133, 102, 0.3);
}
.btn--secondary {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown-warm);
}
.btn--secondary:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--sage-dark);
    border-color: var(--sage);
}
.btn--outline:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--large {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}
.btn--pulse {
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(107, 133, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(107, 133, 102, 0); }
}

/* ============================================================
   PHOTO BAND
   ============================================================ */
.photo-band {
    background: var(--sage-pale);
    padding: 0;
    overflow: hidden;
}
.photo-band-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.photo-band-scroll::-webkit-scrollbar { display: none; }
.photo-band-scroll img {
    width: 30vw;
    min-width: 280px;
    height: 22vw;
    min-height: 200px;
    max-height: 360px;
    object-fit: cover;
    scroll-snap-align: start;
    flex-shrink: 0;
    filter: saturate(0.9);
    transition: filter 0.4s;
}
.photo-band-scroll img:hover {
    filter: saturate(1.1);
}

@media (max-width: 768px) {
    .photo-band-scroll {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        padding: 4px;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .photo-band-scroll img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        min-width: unset;
        min-height: unset;
        max-height: unset;
        scroll-snap-align: unset;
        flex-shrink: unset;
    }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
    position: relative;
}
.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--sage-light);
    vertical-align: middle;
    margin: 0 0.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1rem;
    color: var(--brown-warm);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(143, 163, 137, 0.07), transparent),
        radial-gradient(ellipse 40% 30% at 100% 0%, rgba(219, 182, 172, 0.06), transparent),
        var(--cream);
    position: relative;
}
/* Decorative top border */
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border: 1px solid rgba(143, 163, 137, 0.15);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--blush);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(58, 48, 42, 0.08);
    border-color: rgba(143, 163, 137, 0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--sage-pale);
    border-radius: 50%;
    margin-bottom: 1.2rem;
    color: var(--sage-dark);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--brown);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--brown-warm);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURED TESTIMONIAL
   ============================================================ */
.featured-testimonial {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(175deg, var(--sage-pale) 0%, var(--cream) 40%, var(--blush-pale) 100%);
    position: relative;
}
.ft-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.ft-quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 0.6;
    margin-bottom: 0.5rem;
}
.ft-quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--brown);
    margin-bottom: 1.5rem;
}
.ft-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-style: normal;
}
.ft-author-stars {
    display: flex;
    gap: 4px;
}
.ft-author-stars .star {
    width: 10px; height: 10px;
}
.ft-author-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.gallery-item--tall {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item--tall {
        grid-row: span 1;
    }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(219, 182, 172, 0.1), transparent),
        var(--sage-pale);
    position: relative;
}
/* Organic curve separator at top */
.reviews::before {
    content: '';
    position: absolute;
    top: -40px; left: 0; right: 0;
    height: 80px;
    background: var(--sage-pale);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(143, 163, 137, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(58, 48, 42, 0.06);
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}
.review-stars .star {
    width: 10px; height: 10px;
}
.review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--brown);
    margin-bottom: 1rem;
    font-style: italic;
}
.review-author {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sage-dark);
    font-style: normal;
}
.reviews-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews::before { top: -20px; height: 40px; }
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse 40% 50% at 0% 0%, rgba(219, 182, 172, 0.1), transparent),
        var(--cream);
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-us-text .section-label {
    text-align: left;
}
.why-us-text .section-label::before { display: none; }
.why-us-text .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}
.why-us-text p {
    font-size: 1rem;
    color: var(--brown-warm);
    line-height: 1.8;
}
.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.why-feature {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(143, 163, 137, 0.15);
}
.why-feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--sage-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.why-feature-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown-warm);
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-us-text .section-title,
    .why-us-text .section-label { text-align: center; }
    .why-us-text .section-label::before { display: inline-block; }
    .why-us-text p { text-align: center; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(143, 163, 137, 0.08), transparent),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info .section-label { text-align: left; }
.contact-info .section-label::before { display: none; }
.contact-info .section-title {
    text-align: left;
    margin-bottom: 0.8rem;
}
.contact-info > p {
    color: var(--brown-warm);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--sage);
}
.contact-detail a {
    color: var(--brown);
    transition: color 0.3s;
}
.contact-detail a:hover { color: var(--sage-dark); }

.contact-access {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--sage-pale);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--sage-dark);
}
.access-badge svg { flex-shrink: 0; }

.contact-cta-card {
    position: sticky;
    top: 100px;
}
.cta-card-inner {
    background: var(--white);
    border: 1px solid rgba(143, 163, 137, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(58, 48, 42, 0.06);
}
.cta-card-inner h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 0.8rem;
}
.cta-card-inner p {
    color: var(--brown-warm);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.cta-card-inner .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.8rem;
}
.cta-card-inner .btn:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cta-card { position: static; }
    .contact-info .section-title,
    .contact-info .section-label { text-align: center; }
    .contact-info .section-label::before { display: inline-block; }
    .contact-info > p { text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--brown);
    color: rgba(253, 249, 243, 0.7);
    padding: 4rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(253, 249, 243, 0.1);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.8rem;
    display: block;
}
.footer-logo em {
    font-style: italic;
    font-weight: 300;
    color: var(--blush);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 360px;
}
.footer-links {
    display: flex;
    gap: 3rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.footer-col a {
    font-size: 0.9rem;
    color: rgba(253, 249, 243, 0.6);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--blush-light); }

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { gap: 2rem; }
}

/* ============================================================
   FLOATING CTA (Mobile)
   ============================================================ */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    transition: opacity 0.3s, transform 0.3s;
}
.floating-cta.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: var(--sage-dark);
    color: var(--white);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(107, 133, 102, 0.4);
    transition: all 0.3s;
    animation: pulse 2.5s ease-in-out infinite;
}
.floating-cta-btn:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(58, 48, 42, 0.3);
}

@media (min-width: 769px) {
    .floating-cta-btn span { display: inline; }
}
@media (max-width: 768px) {
    .floating-cta { bottom: 1rem; right: 1rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   CUSTOM SCROLLBAR (Desktop)
   ============================================================ */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--cream);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--sage-light);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--sage);
    }
}
