:root {
    --lavender: #C3B1E1;
    --lavender-light: #E8DFF5;
    --lavender-deep: #9B8EC4;
    --mint: #A8E6CF;
    --mint-light: #D4F1E4;
    --mint-deep: #7BC8A4;
    --blush: #FFD1DC;
    --blush-light: #FFE8ED;
    --blush-deep: #FFA0B5;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --sage: #B5C9A3;
    --sage-light: #D4E4C6;
    --text-dark: #4A4A5A;
    --text-medium: #6B6B7B;
    --text-light: #8A8A9A;
    --white: #FFFFFF;
    --deep: #3D2E5A;
    --light: #C3B1E1;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Nunito', sans-serif;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Screen-reader only utility — visible to crawlers and assistive tech, hidden visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex: 1 1 auto;
}
.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0;
    animation: preOrb 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.preloader::before {
    width: 320px;
    height: 320px;
    background: var(--lavender-light);
    top: -80px;
    right: -60px;
    animation-delay: 0.2s;
}
.preloader::after {
    width: 280px;
    height: 280px;
    background: var(--mint-light);
    bottom: -80px;
    left: -60px;
    animation-delay: 0.4s;
}
@keyframes preOrb {
    0% { opacity: 0; transform: scale(0.6); }
    100% { opacity: 0.55; transform: scale(1); }
}
.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    position: relative;
    z-index: 1;
}
.preloader-mark {
    opacity: 0;
    transform: scale(0.85) translateY(8px);
    animation: preMark 1.5s 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    margin-bottom: 0.4rem;
}
.preloader-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: preBreathe 4.5s ease-in-out infinite;
    filter: drop-shadow(0 6px 20px rgba(155, 142, 196, 0.25));
}
@keyframes preMark {
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes preBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.preloader-words {
    display: flex;
    gap: 0.45rem;
    align-items: baseline;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    overflow: hidden;
}
.preloader-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: preWord 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.preloader-word:nth-child(1) { animation-delay: 0.55s; }
.preloader-word:nth-child(2) { animation-delay: 0.7s; }
.preloader-word:nth-child(3) { animation-delay: 0.85s; }
.preloader-word-em {
    font-style: italic;
    color: var(--lavender-deep);
}
@keyframes preWord {
    to { opacity: 1; transform: translateY(0); }
}
.preloader-tagline {
    font-family: var(--sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0;
    animation: preFadeIn 1.2s 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes preFadeIn {
    to { opacity: 1; }
}
.preloader-progress {
    width: 60px;
    height: 1.5px;
    background: rgba(155, 142, 196, 0.15);
    border-radius: 2px;
    margin-top: 1.2rem;
    overflow: hidden;
    position: relative;
}
.preloader-progress-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--lavender-deep), var(--mint-deep));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: preProgress 2.6s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes preProgress {
    0% { transform: scaleX(0); }
    60% { transform: scaleX(0.85); }
    100% { transform: scaleX(1); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender), var(--mint), var(--blush));
    z-index: 1001;
    transform: scaleX(0);
    transform-origin: left;
}

/* ===== FLOAT / REVEAL ANIMATION ===== */
.float-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    filter: blur(1.5px);
    transition:
        opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.float-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* FAQ items & about-features: fade-only reveal (no float-up, no blur) */
.faq-item.float-up,
.faq-cta-card.float-up,
.about-feature.float-up {
    transform: none;
    filter: none;
    transition: opacity 0.9s ease;
    will-change: opacity;
}
.faq-item.float-up.visible,
.faq-cta-card.float-up.visible,
.about-feature.float-up.visible {
    transform: none;
    filter: none;
}

/* ===== MAIN LAYOUT ===== */
html {
    height: auto;
    min-height: 100vh;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ensure all major sections expand to fill available space */
main, .main-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* Ensure all section containers expand properly */
.section-container, .about-content, .services, .philosophy, .team, .contact, .faq, .cta-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* Staggered delays — longer and more relaxed for a calm cascade */
.float-up.delay-1 { transition-delay: 0.12s; }
.float-up.delay-2 { transition-delay: 0.24s; }
.float-up.delay-3 { transition-delay: 0.36s; }
.float-up.delay-4 { transition-delay: 0.48s; }
.float-up.delay-5 { transition-delay: 0.6s; }
.float-up.delay-6 { transition-delay: 0.72s; }
.float-up.delay-7 { transition-delay: 0.84s; }

/* ===== HERO WORD-BY-WORD REVEAL ===== */
.hero-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
    padding: 0.05em 0;
}
.hero-word > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero.in-view .hero-word > span { transform: translateY(0); }
.hero.in-view .hero-word:nth-child(1) > span { transition-delay: 0.1s; }
.hero.in-view .hero-word:nth-child(2) > span { transition-delay: 0.18s; }
.hero.in-view .hero-word:nth-child(3) > span { transition-delay: 0.26s; }
.hero.in-view .hero-word:nth-child(4) > span { transition-delay: 0.4s; }
.hero.in-view .hero-word:nth-child(5) > span { transition-delay: 0.48s; }
.hero.in-view .hero-word:nth-child(6) > span { transition-delay: 0.56s; }
.hero.in-view .hero-word:nth-child(7) > span { transition-delay: 0.64s; }

.hero-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1s 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero.in-view .hero-fade { opacity: 1; transform: translateY(0); }
.hero-fade-2 { transition-delay: 1s !important; }
.hero-fade-3 { transition-delay: 1.2s !important; }

/* ===== NAV LINK UNDERLINE ANIMATION ===== */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--lavender-deep), var(--mint-deep));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}
.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== COUNTER ANIMATION ===== */
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-variant-numeric: tabular-nums;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-word > span, .hero-fade, .float-up, .preloader, .logo { transform: none !important; opacity: 1 !important; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: rgba(255, 248, 240, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex: 0 0 auto;
}

nav.scrolled {
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    padding: 0.7rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.logo.in-view {
    opacity: 1;
    transform: translateY(0);
}

.logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lavender-deep);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-top: 0.125rem;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.logo-text span {
    color: var(--lavender-deep);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.3rem 0;
}

.nav-links a:hover {
    color: var(--lavender-deep);
}

.nav-cta {
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    color: var(--white) !important;
    padding: 0.6rem 1.6rem !important;
    border-radius: 50px;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.06em !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 142, 196, 0.35);
    color: var(--white) !important;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, var(--cream) 0%, var(--lavender-light) 40%, var(--mint-light) 70%, var(--blush-light) 100%);
    padding-top: 8rem;
    flex: 1 1 auto;
}

/* Section cross-fade transitions for snap scroll */
.about .section-container,
.services .section-container {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-fading-out .section-container {
    opacity: 0;
    transform: translateY(-20px);
}

.section-fading-in .section-container {
    animation: sectionFadeIn 0.6s ease forwards;
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--lavender);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 320px;
    height: 320px;
    background: var(--mint);
    bottom: -5%;
    left: -5%;
    animation-delay: -7s;
}

.hero-shape:nth-child(3) {
    width: 280px;
    height: 280px;
    background: var(--blush);
    top: 40%;
    left: 50%;
    animation-delay: -14s;
}

.hero-shape:nth-child(4) {
    width: 200px;
    height: 200px;
    background: var(--sage);
    top: 20%;
    left: 10%;
    animation-delay: -3s;
    opacity: 0.25;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 850px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--lavender-deep);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(195, 177, 225, 0.3);
    width: fit-content;
    align-self: center;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--mint-deep);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lavender-deep), var(--mint-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(155, 142, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(155, 142, 196, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
    border: 1.5px solid rgba(195, 177, 225, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 6rem 2rem;
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lavender));
}

.section-label::after {
    background: linear-gradient(90deg, var(--lavender), transparent);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(170deg, var(--blush-light) 0%, var(--cream) 30%, var(--lavender-light) 65%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--lavender-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    flex: 1 1 auto;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 200px 200px 100px 100px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.about-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--mint-light) 50%, var(--blush-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-icon {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--mint-light);
    border-radius: 50%;
    z-index: -1;
}

.about-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--mint), var(--mint-deep));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.floating-card-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.floating-card-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content h2 em {
    font-style: italic;
    color: var(--lavender-deep);
}

.about-content > p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--cream);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateX(5px);
}

.about-feature .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .icon svg {
    width: 18px;
    height: 18px;
}

.about-feature span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--lavender-light) 50%, var(--cream) 100%);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 780px;
    margin: 0 auto;
    justify-items: center;
    flex: 1 1 auto;
}

/* When expanded, switch to 3-column layout */
.services-grid.expanded {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}

/* Hide modules 3-6 by default */
.service-card.module-hidden {
    display: none;
}

/* Show them when expanded */
.services-grid.expanded .service-card.module-hidden {
    display: block;
}

/* See More button */
.see-more-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.4rem;
    border: 1.5px solid var(--lavender);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--lavender-deep);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(155, 142, 196, 0.15);
}

.see-more-btn:hover {
    background: linear-gradient(135deg, var(--lavender-light), var(--lavender));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(155, 142, 196, 0.3);
}

.see-more-btn:hover .see-more-icon {
    transform: translateY(2px);
}

.see-more-icon {
    transition: transform 0.3s ease;
}

/* Hide button when expanded */
.services-grid.expanded .see-more-wrapper {
    display: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    transition: height 0.4s ease;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--lavender), var(--lavender-deep)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--mint), var(--mint-deep)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blush), var(--blush-deep)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--sage), #8FB57A); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, var(--lavender), var(--blush)); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, var(--mint), var(--lavender)); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
}

.service-card:hover::before {
    height: 5px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--lavender-light), var(--lavender)); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--mint-light), var(--mint)); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--blush-light), var(--blush)); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--sage-light), var(--sage)); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--blush-light), var(--lavender-light)); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--mint-light), var(--lavender-light)); }

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

.service-tag {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card:nth-child(1) .service-tag { background: var(--lavender-light); color: var(--lavender-deep); }
.service-card:nth-child(2) .service-tag { background: var(--mint-light); color: var(--mint-deep); }
.service-card:nth-child(3) .service-tag { background: var(--blush-light); color: var(--blush-deep); }
.service-card:nth-child(4) .service-tag { background: var(--sage-light); color: #6B9B52; }
.service-card:nth-child(5) .service-tag { background: var(--blush-light); color: var(--lavender-deep); }
.service-card:nth-child(6) .service-tag { background: var(--mint-light); color: var(--lavender-deep); }

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
    background: var(--white);
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.philosophy::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: var(--blush-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    text-align: center;
    flex: 1 1 auto;
}

.philosophy-item {
    padding: 2rem;
    position: relative;
}

.philosophy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.15;
}

.philosophy-item:nth-child(1) .philosophy-number { color: var(--lavender-deep); }
.philosophy-item:nth-child(2) .philosophy-number { color: var(--mint-deep); }
.philosophy-item:nth-child(3) .philosophy-number { color: var(--blush-deep); }

.philosophy-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.philosophy-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== TEAM SECTION ===== */
.team {
    background: linear-gradient(180deg, var(--cream) 0%, var(--mint-light) 50%, var(--cream) 100%);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex: 1 1 auto;
}

.team-grid-centered {
    justify-content: center;
}

.team-card {
    text-align: center;
    padding: 2rem;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.85);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.team-avatar-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card:nth-child(1) .team-avatar-bg { background: linear-gradient(135deg, var(--lavender), var(--lavender-deep)); }
.team-card:nth-child(2) .team-avatar-bg { background: linear-gradient(135deg, var(--mint), var(--mint-deep)); }
.team-card:nth-child(3) .team-avatar-bg { background: linear-gradient(135deg, var(--blush), var(--blush-deep)); }

.team-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.team-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--lavender-deep);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.team-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-social:hover {
    background: var(--lavender-light);
    transform: translateY(-2px);
}

.team-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--lavender-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 1 1 auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--mint-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--lavender-light) 100%);
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--mint-light);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    flex: 1 1 auto;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--lavender-deep);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail:nth-child(1) .contact-detail-icon { background: var(--lavender-light); }
.contact-detail:nth-child(2) .contact-detail-icon { background: var(--mint-light); }
.contact-detail:nth-child(3) .contact-detail-icon { background: var(--blush-light); }
.contact-detail:nth-child(4) .contact-detail-icon { background: var(--sage-light); }

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.contact-detail p, .contact-detail a {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--lavender-deep);
}

.contact-hours {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-hours h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.hours-grid {
    display: grid;
    gap: 0.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.hours-row .day {
    color: var(--text-medium);
    font-weight: 500;
}

.hours-row .time {
    color: var(--text-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(195, 177, 225, 0.2);
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lavender);
    box-shadow: 0 0 0 4px rgba(195, 177, 225, 0.15);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(155, 142, 196, 0.4);
}

.form-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-submit:hover::after {
    opacity: 1;
}

/* ===== FAQ SECTION ===== */
.faq {
    position: relative;
    padding: 140px 0 130px;
    background:
        radial-gradient(ellipse at top, rgba(232, 223, 245, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(212, 241, 228, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, #FBF7F2 0%, #FFFDF9 50%, #F8F3FB 100%);
    overflow: hidden;
    flex: 1 1 auto;
}

/* Ambient floating orbs for depth */
.faq-ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.faq-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    will-change: transform;
}
.faq-ambient-orb-1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(195, 177, 225, 0.45), transparent 70%);
    top: -120px; left: -80px;
    animation: faqFloat1 22s ease-in-out infinite;
}
.faq-ambient-orb-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.4), transparent 70%);
    top: 40%; right: -120px;
    animation: faqFloat2 28s ease-in-out infinite;
}
.faq-ambient-orb-3 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 209, 220, 0.35), transparent 70%);
    bottom: -100px; left: 30%;
    animation: faqFloat3 25s ease-in-out infinite;
}
@keyframes faqFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes faqFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-50px, 60px) scale(1.05); }
}
@keyframes faqFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -50px) scale(1.1); }
}

/* Container sits above the orbs */
.faq .section-container {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

/* Refined header */
.faq-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.faq-label {
    color: var(--lavender-deep) !important;
    font-weight: 400;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    margin-bottom: 1.5rem;
}
.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}
.faq-title-line {
    display: block;
}
.faq-title-italic {
    font-style: italic;
    color: var(--lavender-deep);
    font-weight: 300;
}
.faq-subtitle {
    font-size: 1.02rem;
    color: var(--text-medium);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* The list of questions */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
}

/* Each question card */
.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(195, 177, 225, 0.22);
    border-radius: 18px;
    overflow: hidden;
    transition:
        background 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 2px 8px rgba(74, 74, 90, 0.04);
}
.faq-item::before {
    /* Soft gradient sheen on hover */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.0), rgba(212, 241, 228, 0.0));
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(195, 177, 225, 0.4);
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 12px 30px rgba(74, 74, 90, 0.08),
        0 4px 10px rgba(74, 74, 90, 0.04);
}
.faq-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.35), rgba(212, 241, 228, 0.25));
}
.faq-item[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(155, 142, 196, 0.45);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 16px 40px rgba(74, 74, 90, 0.10),
        0 6px 14px rgba(74, 74, 90, 0.05);
}
.faq-item[aria-expanded="true"]::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.5), rgba(212, 241, 228, 0.35));
}

/* The trigger button (question) */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.4s ease;
}
.faq-question:focus-visible {
    outline: 2px solid var(--lavender-deep);
    outline-offset: -2px;
    border-radius: 18px;
}

/* Numbered marker on the left */
.faq-question-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    width: 36px;
}
.faq-question-number {
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--lavender-deep);
    transition: color 0.4s ease;
}
.faq-question-line {
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, var(--lavender-deep), transparent);
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[aria-expanded="true"] .faq-question-line {
    height: 18px;
}

/* The question text */
.faq-question-text {
    flex: 1;
    min-width: 0;
    transition: color 0.4s ease, letter-spacing 0.4s ease;
}
.faq-item:hover .faq-question-text {
    letter-spacing: 0.005em;
}
.faq-item[aria-expanded="true"] .faq-question-text {
    color: var(--lavender-deep);
    font-weight: 500;
}

/* Plus / minus icon */
.faq-question-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 177, 225, 0.18);
    color: var(--lavender-deep);
    transition:
        background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.5s ease;
}
.faq-question-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item:hover .faq-question-icon {
    background: rgba(195, 177, 225, 0.32);
    transform: rotate(90deg);
}
.faq-item[aria-expanded="true"] .faq-question-icon {
    background: var(--lavender-deep);
    color: #fff;
    transform: rotate(180deg);
}
.faq-item[aria-expanded="true"] .faq-icon-vertical {
    /* Hide the vertical bar to form a minus */
    transform-origin: center;
    transform: scaleY(0);
}

/* The answer panel — uses max-height for smooth animation (most reliable) */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-panel-inner {
    /* Inner is just a wrapper for the answer content */
}
.faq-item[aria-expanded="true"] .faq-panel {
    max-height: 600px;
}

.faq-answer {
    padding: 0 28px 26px 82px;
    color: var(--text-medium);
    line-height: 1.85;
    font-size: 0.96rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.5s ease 0.15s,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.faq-item[aria-expanded="true"] .faq-answer {
    opacity: 1;
    transform: translateY(0);
}
.faq-answer p {
    margin: 0;
}
.faq-answer em {
    color: var(--lavender-deep);
    font-style: italic;
}
.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Refined "Ask AI" call-to-action card */
.faq-cta-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 3.5rem;
    padding: 32px 36px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(232, 223, 245, 0.55) 50%,
        rgba(212, 241, 228, 0.5) 100%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    backdrop-filter: blur(20px) saturate(170%);
    border: 1px solid rgba(195, 177, 225, 0.3);
    border-radius: 24px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 10px 30px rgba(74, 74, 90, 0.07),
        0 3px 10px rgba(74, 74, 90, 0.04);
    overflow: hidden;
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Soft animated glow that drifts behind the card */
.faq-cta-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at center,
        rgba(195, 177, 225, 0.45) 0%,
        transparent 60%);
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 1.2s ease;
    will-change: transform, opacity;
}

.faq-cta-card:hover {
    transform: translateY(-3px);
    border-color: rgba(155, 142, 196, 0.5);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 40px rgba(74, 74, 90, 0.12),
        0 6px 16px rgba(74, 74, 90, 0.06),
        0 0 0 1px rgba(155, 142, 196, 0.15);
}
.faq-cta-card:hover .faq-cta-glow {
    opacity: 0.9;
    transform: translateX(80px) scale(1.15);
}

/* Chat icon on the left */
.faq-cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    color: #fff;
    box-shadow:
        0 6px 18px rgba(155, 142, 196, 0.4),
        0 2px 6px rgba(155, 142, 196, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-cta-icon svg {
    width: 26px;
    height: 26px;
}
.faq-cta-card:hover .faq-cta-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* Centered text content */
.faq-cta-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.faq-cta-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    margin: 0 0 6px;
    opacity: 0.85;
}
.faq-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 4px;
    line-height: 1.25;
    font-style: italic;
}
.faq-cta-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* Action button */
.faq-cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--text-dark);
    color: #fff;
    border: 0;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition:
        background 0.4s ease,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
    box-shadow: 0 4px 14px rgba(74, 74, 90, 0.18);
}
.faq-cta-button svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-cta-button:hover {
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(155, 142, 196, 0.4);
}
.faq-cta-button:hover svg {
    transform: translateX(3px);
}
.faq-cta-button:focus-visible {
    outline: 2px solid var(--lavender-deep);
    outline-offset: 3px;
}

/* FAQ responsive */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0 70px;
    }
    .faq .section-container {
        padding: 0 20px;
    }
    .faq-header {
        margin-bottom: 2.5rem;
    }
    .faq-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    .faq-subtitle {
        font-size: 0.95rem;
        padding: 0 8px;
    }
    .faq-question {
        padding: 16px 18px;
        gap: 12px;
        font-size: 1.05rem;
    }
    .faq-question-marker {
        width: 28px;
        gap: 4px;
    }
    .faq-question-number {
        font-size: 0.62rem;
    }
    .faq-question-line {
        /* Shorter line on tablet */
        height: 0;
    }
    .faq-item[aria-expanded="true"] .faq-question-line {
        height: 12px;
    }
    .faq-question-icon {
        width: 32px;
        height: 32px;
    }
    .faq-question-icon svg {
        width: 15px;
        height: 15px;
    }
    .faq-answer {
        padding: 0 18px 20px 58px;
        font-size: 0.92rem;
        line-height: 1.75;
    }
    .faq-cta-card {
        gap: 20px;
        padding: 28px 24px;
    }
    .faq-cta-icon {
        width: 48px;
        height: 48px;
    }
    .faq-cta-icon svg {
        width: 22px;
        height: 22px;
    }
    .faq-cta-title {
        font-size: 1.3rem;
    }
    .faq-cta-subtitle {
        font-size: 0.88rem;
    }
    .faq-cta-button {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
    /* Shrink ambient orbs on tablet */
    .faq-ambient-orb-1 {
        width: 260px; height: 260px;
    }
    .faq-ambient-orb-2 {
        width: 300px; height: 300px;
    }
    .faq-ambient-orb-3 {
        width: 220px; height: 220px;
    }
}
@media (max-width: 480px) {
    .faq {
        padding: 56px 0 48px;
    }
    .faq .section-container {
        padding: 0 16px;
    }
    .faq-header {
        margin-bottom: 2rem;
    }
    .faq-label {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    .faq-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }
    .faq-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .faq-list {
        gap: 10px;
    }
    .faq-item {
        border-radius: 14px;
    }
    .faq-question {
        padding: 16px 18px;
        gap: 12px;
        font-size: 0.95rem;
        line-height: 1.35;
    }
    /* Hide the numbered marker on very small screens —
       the number adds clutter without enough space */
    .faq-question-marker {
        display: none;
    }
    .faq-question-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    .faq-question-icon svg {
        width: 15px;
        height: 15px;
    }
    .faq-question-text {
        line-height: 1.4;
    }
    .faq-answer {
        /* No left offset needed since marker is hidden */
        padding: 0 18px 20px;
        font-size: 0.88rem;
        line-height: 1.7;
    }
    .faq-item[aria-expanded="true"] {
        border-radius: 14px;
    }
    .faq-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
        margin-top: 2rem;
        border-radius: 18px;
    }
    .faq-cta-icon {
        width: 44px;
        height: 44px;
    }
    .faq-cta-icon svg {
        width: 20px;
        height: 20px;
    }
    .faq-cta-title {
        font-size: 1.2rem;
    }
    .faq-cta-subtitle {
        font-size: 0.82rem;
    }
    .faq-cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    /* Further shrink ambient orbs on mobile */
    .faq-ambient-orb-1 {
        width: 200px; height: 200px;
        top: -60px; left: -40px;
    }
    .faq-ambient-orb-2 {
        width: 240px; height: 240px;
        right: -80px;
    }
    .faq-ambient-orb-3 {
        width: 180px; height: 180px;
        bottom: -60px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .faq-ambient-orb {
        animation: none;
    }
    .faq-item,
    .faq-panel,
    .faq-answer,
    .faq-question-icon,
    .faq-question-icon svg,
    .faq-question-text,
    .faq-question-line {
        transition: none !important;
    }
    .faq-item[aria-expanded="true"] .faq-question-icon {
        transform: rotate(45deg);
    }
}

/* ===== AI QUESTION BOX WIDGET ===== */
.ai-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    flex: 1 1 auto;
}

.ai-widget-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ai-widget-hidden-below {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Bubble (closed state) */
.ai-widget-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(155, 142, 196, 0.4),
                0 0 0 0 rgba(155, 142, 196, 0.3);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    animation: ai-widget-pulse 3s ease-in-out infinite;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ai-widget-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(155, 142, 196, 0.5),
                0 0 0 0 rgba(155, 142, 196, 0.3);
}

.ai-widget-bubble-hidden {
    display: none;
}

.ai-widget-bubble svg {
    flex-shrink: 0;
}

.ai-widget-bubble-label {
    white-space: nowrap;
}

@keyframes ai-widget-pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(155, 142, 196, 0.4), 0 0 0 0 rgba(155, 142, 196, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(155, 142, 196, 0.4), 0 0 0 8px rgba(155, 142, 196, 0); }
}

/* Panel (open state) */
.ai-widget-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(155, 142, 196, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    flex: 1 1 auto;
}

.ai-widget-panel-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.ai-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--lavender-light), var(--lavender));
    border-bottom: 1px solid rgba(155, 142, 196, 0.2);
}

.ai-widget-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-widget-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lavender-deep);
}

.ai-widget-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ai-widget-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ai-widget-close:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
}

/* Messages */
.ai-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
    max-height: 320px;
    scroll-behavior: smooth;
}

.ai-widget-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    animation: ai-widget-msg-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ai-widget-msg-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-widget-msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(195, 177, 225, 0.55), rgba(155, 142, 196, 0.5));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(155, 142, 196, 0.5);
    box-shadow:
        0 8px 24px -8px rgba(107, 90, 160, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #2d1f4a;
    border-bottom-right-radius: 4px;
}

/* Suppress slide-in for assistant messages — word-fade handles the reveal */
.ai-widget-msg-assistant {
    animation: none;
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(255, 240, 246, 0.6), rgba(255, 222, 234, 0.5));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 190, 210, 0.4);
    box-shadow:
        0 8px 24px -10px rgba(255, 140, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

/* Markdown styles inside assistant messages */
.ai-widget-msg-assistant p {
    margin: 0 0 6px;
}
.ai-widget-msg-assistant p:last-child {
    margin-bottom: 0;
}
.ai-widget-msg-assistant strong {
    font-weight: 600;
    color: var(--text-dark);
}
.ai-widget-msg-assistant em {
    font-style: italic;
}
.ai-widget-msg-assistant del {
    opacity: 0.6;
}
.ai-widget-msg-assistant a {
    color: var(--lavender-deep, #7c6da7);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(155, 142, 196, 0.5);
    transition: color 0.2s, text-decoration-color 0.2s;
}
.ai-widget-msg-assistant a:hover {
    color: var(--blush-deep, #FFA0B5);
    text-decoration-color: var(--blush-deep, #FFA0B5);
}
/* Links inside word-fade spans should inherit the fade animation */
.ai-widget-msg-assistant .ai-word-fade a,
.ai-widget-msg-assistant a.ai-word-fade {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ai-widget-msg-assistant .ai-word-fade.ai-word-visible a,
.ai-widget-msg-assistant a.ai-word-fade.ai-word-visible {
    color: var(--lavender-deep, #7c6da7);
}
.ai-widget-msg-assistant .ai-word-fade.ai-word-visible a:hover,
.ai-widget-msg-assistant a.ai-word-fade.ai-word-visible:hover {
    color: var(--blush-deep, #FFA0B5);
}
.ai-widget-msg-assistant ul {
    margin: 6px 0;
    padding-left: 18px;
    list-style: disc;
}
.ai-widget-msg-assistant ol {
    margin: 6px 0;
    padding-left: 18px;
    list-style: decimal;
}
.ai-widget-msg-assistant li {
    margin: 2px 0;
}

/* Provider tag — shown when Google AI (Gemini) is used */
.ai-provider-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.4;
    opacity: 0;
    animation: ai-provider-tag-in 0.6s ease-out 0.3s forwards;
}
.ai-provider-tag-google {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
    box-shadow: 0 1px 4px rgba(46, 125, 50, 0.12);
}
@keyframes ai-provider-tag-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ai-widget-msg-assistant .ai-md-code {
    background: rgba(124, 109, 167, 0.1);
    padding: 1px 5px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.82rem;
}
.ai-widget-msg-assistant .ai-md-code-block {
    background: rgba(30, 20, 50, 0.06);
    padding: 10px 12px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
}
.ai-widget-msg-assistant .ai-md-code-block code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.82rem;
    line-height: 1.5;
}
.ai-widget-msg-assistant .ai-md-h {
    font-size: 0.92rem;
    font-weight: 700;
    margin: 8px 0 4px;
    color: var(--text-dark);
}
.ai-widget-msg-assistant .ai-md-hr {
    border: none;
    border-top: 1px solid rgba(155, 142, 196, 0.2);
    margin: 8px 0;
}

/* Word-fade animation for AI responses */
.ai-word-fade {
    display: none;
}
.ai-word-fade.ai-word-visible {
    display: inline;
    opacity: 0;
    filter: blur(2px);
    transform: translateY(3px);
    animation: ai-word-reveal 0.8s ease-out forwards;
}
@keyframes ai-word-reveal {
    0%   { opacity: 0; filter: blur(2px); transform: translateY(3px); }
    30%  { opacity: 0.4; filter: blur(1px); }
    60%  { opacity: 0.8; filter: blur(0); transform: translateY(0); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Typing indicator */
.ai-widget-typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    align-self: flex-start;
}

.ai-widget-typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lavender);
    animation: ai-widget-typing-bounce 1.4s ease-in-out infinite;
}

.ai-widget-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-widget-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes ai-widget-typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* CTA */
.ai-widget-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    margin: 0 16px 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mint), var(--mint-deep));
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ai-widget-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 200, 164, 0.4);
}

/* Input area */
.ai-widget-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(155, 142, 196, 0.15);
    background: rgba(255, 255, 255, 0.5);
    flex: 0 0 auto;
}

.ai-widget-input-area input {
    flex: 1;
    border: 1px solid rgba(155, 142, 196, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.ai-widget-input-area input:focus {
    border-color: var(--lavender);
}

.ai-widget-input-area input::placeholder {
    color: var(--text-light);
}

.ai-widget-input-area input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-widget-send {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ai-widget-send:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(155, 142, 196, 0.4);
}

.ai-widget-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== AI WIDGET RESPONSIVE ===== */
@media (max-width: 768px) {
    /* AI Widget mobile */
    .ai-widget {
        bottom: 16px;
        right: 12px;
        left: 12px;
    }

    .ai-widget-bubble {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .ai-widget-panel {
        width: 100%;
        max-height: 70vh;
        border-radius: 16px;
    }

    .ai-widget-messages {
        max-height: 50vh;
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .ai-widget {
        bottom: 12px;
        right: 8px;
        left: 8px;
    }

    .ai-widget-panel {
        width: 100%;
        max-height: 75vh;
        border-radius: 14px;
    }

    .ai-widget-messages {
        max-height: 55vh;
        min-height: 100px;
    }

    .ai-widget-bubble-label {
        display: none;
    }

    .ai-widget-bubble {
        padding: 12px;
        border-radius: 50%;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 3rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lavender), var(--mint), var(--blush), var(--sage), var(--lavender));
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-brand .logo-subtitle {
    font-size: 0.8rem;
    margin-top: 0.125rem;
    line-height: 1.2;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--lavender);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: var(--lavender);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--lavender), var(--lavender-deep));
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 142, 196, 0.4);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--lavender);
}

.footer-login-link {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.footer-login-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .philosophy-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.2rem;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-cta {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.9rem !important;
    }

    .hamburger {
        display: flex;
        gap: 4px;
        padding: 4px;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-image {
        aspect-ratio: 1/1;
    }

    .about-floating-card {
        left: 10px;
        bottom: 10px;
        padding: 1rem 1.4rem;
    }

    .floating-card-text h4 {
        font-size: 0.95rem;
    }

    .floating-card-text p {
        font-size: 0.75rem;
    }

    .about-content h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .about-content > p {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-feature {
        padding: 0.7rem 0.9rem;
    }

    .about-feature span {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .services-grid.expanded {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .see-more-btn {
        padding: 0.75rem 2rem;
        font-size: 0.82rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-number {
        font-size: 3rem;
    }

    .philosophy-item h3 {
        font-size: 1.3rem;
    }

    .philosophy-item p {
        font-size: 0.9rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
        gap: 2rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 110px;
        height: 110px;
    }

    .team-avatar-bg {
        font-size: 2rem;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .team-card p {
        font-size: 0.88rem;
    }

    .team-socials {
        gap: 0.6rem;
    }

    .team-social {
        width: 32px;
        height: 32px;
    }

    .team-social svg {
        width: 14px;
        height: 14px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1.2rem;
    }

    .contact-detail {
        gap: 1rem;
    }

    .contact-detail-icon {
        width: 42px;
        height: 42px;
    }

    .contact-detail h4 {
        font-size: 0.9rem;
    }

    .contact-detail p, .contact-detail a {
        font-size: 0.85rem;
    }

    .contact-hours {
        padding: 1.2rem;
        margin-top: 2rem;
    }

    .contact-hours h4 {
        font-size: 1.1rem;
    }

    .hours-row {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 1.8rem;
        border-radius: 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.4rem;
    }

    .contact-form-wrapper > p {
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-submit {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo-text {
        font-size: 1.4rem;
    }

    .footer-brand p {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col ul li a {
        font-size: 0.88rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        text-align: center;
    }

    .footer-col ul li {
        margin-bottom: 0.5rem;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-newsletter p {
        font-size: 0.88rem;
        margin-bottom: 0.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }

    .newsletter-form input {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }

    .newsletter-form button {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 1rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    section {
        padding: 4rem 1.2rem;
    }

    .section-container {
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
        max-width: 450px;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .section-label::before,
    .section-label::after {
        width: 20px;
    }

    .hero {
        padding: 8rem 1rem 4rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 450px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-scroll {
        bottom: 1.5rem;
        font-size: 0.7rem;
    }

    .scroll-line {
        height: 30px;
    }
}

/* ===== DOWNLOAD PILL — a single quiet line at the bottom ===== */
/* Minimal, holistic: one serif sentence, a breathing dot, two inline actions. */
/* No card, no border, no shadow — just a gentle presence.                    */

.download-pill {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 12px);
    z-index: 1100;

    display: none; /* Hidden for now — set to inline-flex to re-enable */
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;

    color: var(--text-medium);
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: normal;

    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.7s ease;
}
.download-pill[aria-hidden="false"] {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
    animation: downloadPillSettle 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes downloadPillSettle {
    0%   { transform: translate(-50%, 18px); opacity: 0; }
    60%  { transform: translate(-50%, -2px); opacity: 1; }
    100% { transform: translate(-50%, 0);    opacity: 1; }
}

/* Breathing lavender dot — the only ornament */
.download-pill-breath {
    flex-shrink: 0;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(155, 142, 196, 0.45);
    transform-origin: center;
    animation: downloadPillBreath 6s ease-in-out infinite;
}
@keyframes downloadPillBreath {
    0%, 100% {
        transform: scale(0.85);
        background: rgba(155, 142, 196, 0.30);
    }
    50% {
        transform: scale(1.35);
        background: rgba(155, 142, 196, 0.70);
    }
}

/* The single sentence */
.download-pill-line {
    margin: 0;
    line-height: 1.3;
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 8px;
    row-gap: 4px;
}

.download-pill-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.02rem;
    color: var(--text-dark);
    letter-spacing: 0.005em;
    line-height: 1.2;
}

.download-pill-sep {
    color: var(--text-light);
    opacity: 0.4;
    user-select: none;
    font-size: 0.9rem;
}

/* Primary action — underline on hover */
.download-pill-cta {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--lavender-deep);
    text-decoration: none;
    padding: 2px 0;
    background-image: linear-gradient(90deg, var(--lavender-deep), var(--lavender-deep));
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: 0 100%;
    transition:
        background-size 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.4s ease;
}
.download-pill-cta:hover,
.download-pill-cta:focus-visible {
    background-size: 100% 1px;
    color: var(--lavender-deep);
    outline: none;
}

/* Soft exit — italic serif */
.download-pill-later {
    appearance: none;
    background: none;
    border: 0;
    padding: 2px 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: color 0.4s ease;
}
.download-pill-later:hover,
.download-pill-later:focus-visible {
    color: var(--text-medium);
    outline: none;
}

@media (max-width: 600px) {
    .download-pill {
        bottom: 18px;
        max-width: calc(100vw - 24px);
    }
    .download-pill-line {
        column-gap: 6px;
    }
    .download-pill-title {
        font-size: 0.98rem;
    }
    .download-pill-cta {
        font-size: 0.82rem;
    }
    .download-pill-later {
        font-size: 0.9rem;
    }
}

@media (max-width: 420px) {
    .download-pill {
        bottom: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .download-pill,
    .download-pill[aria-hidden="false"] {
        transition: opacity 0.3s ease;
        transform: translate(-50%, 0);
        animation: none;
    }
    .download-pill-breath {
        animation: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 620px) {
    .download-pill {
        bottom: 18px;
        width: calc(100vw - 32px);
        max-width: 360px;
        padding: 18px 24px 16px;
        gap: 14px;
    }
        width: 80%;
        gap: 18px;
        padding-top: 12px;
    }
    .download-pill-cta { font-size: 0.72rem; letter-spacing: 0.16em; }
    .download-pill-later { font-size: 0.85rem; }

@media (max-width: 380px) {
    .download-pill {
        padding: 16px 20px 14px;
    }

@media (prefers-reduced-motion: reduce) {
    .download-pill,
    .download-pill[aria-hidden="false"] {
        transition: opacity 0.3s ease;
        transform: translate(-50%, 0);
        animation: none;
    }

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        justify-content: center;
        text-align: center;
    }

    .service-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .team-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-hours {
        max-width: 300px;
        margin: 0 auto;
    }

    .hours-grid {
        gap: 0.3rem;
    }

    .hours-row {
        font-size: 0.8rem;
    }

    .footer-brand {
        padding: 0 1rem;
    }

    .footer-socials {
        justify-content: center;
        gap: 0.6rem;
    }

    .footer-social {
        width: 36px;
        height: 36px;
    }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .nav-links {
        width: 90%;
    }

    /* AI Widget mobile */
    .ai-widget {
        bottom: 16px;
        right: 16px;
    }

    .ai-widget-bubble {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .ai-widget-bubble svg {
        width: 20px;
        height: 20px;
    }

    .ai-widget-panel {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 70vh;
        border-radius: 20px 20px 0 0;
    }

    .ai-widget-messages {
        max-height: 45vh;
    }

    .ai-widget-msg-assistant .ai-md-code-block {
        font-size: 0.78rem;
        padding: 8px 10px;
    }
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        justify-content: center;
        text-align: center;
    }

    .service-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .team-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-hours {
        max-width: 300px;
        margin: 0 auto;
    }

    .hours-grid {
        gap: 0.3rem;
    }

    .hours-row {
        font-size: 0.8rem;
    }

    .footer-brand {
        padding: 0 1rem;
    }

    .footer-socials {
        justify-content: center;
        gap: 0.6rem;
    }

    .footer-social {
        width: 36px;
        height: 36px;
    }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .nav-links {
        width: 90%;
    }

    /* AI Widget mobile */
    .ai-widget {
        bottom: 16px;
        right: 16px;
    }

    .ai-widget-bubble {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .ai-widget-bubble svg {
        width: 20px;
        height: 20px;
    }

    .ai-widget-panel {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 70vh;
        border-radius: 20px 20px 0 0;
    }

    .ai-widget-messages {
        max-height: 45vh;
    }

    .ai-widget-msg-assistant .ai-md-code-block {
        font-size: 0.78rem;
        padding: 8px 10px;
    }
}
