/* =========================================
   LUSH CRAFTS - HANDMADE ART & GIFTS
   Responsive stylesheet
   ========================================= */

:root {
    --primary-purple: #8B7AA3;
    --purple-light: #C9B8D9;
    --purple-medium: #A88FBF;
    --purple-dark: #6B4E7E;
    --purple-pale: #E8DDF2;

    --botanical-green: #8FAA70;
    --green-light: #A8BF8B;
    --accent-rose: #D4A5C4;
    --accent-gold: #F4D03F;
    --accent-mint: #A8D5BA;

    --neutral-cream: #FAF8F5;
    --neutral-white: #FFFFFF;
    --neutral-light: #F5F2EF;
    --neutral-medium: #D9D5D0;
    --neutral-dark: #5A5550;
    --neutral-charcoal: #3A3632;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    --space-xs: 0.4rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 4rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-soft: 0 4px 20px rgba(139, 122, 163, 0.10);
    --shadow-medium: 0 8px 30px rgba(139, 122, 163, 0.15);
    --shadow-strong: 0 12px 40px rgba(139, 122, 163, 0.20);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

@media (min-width: 768px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 6rem;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--neutral-dark);
    background-color: var(--neutral-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

p, li, h1, h2, h3, h4, a {
    overflow-wrap: break-word;
    word-break: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--purple-dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(1.9rem, 8vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 4vw, 2rem); }

p {
    margin-bottom: var(--space-md);
    max-width: 65ch;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--purple-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 480px)  { .container { padding: 0 1.25rem; } }
@media (min-width: 768px)  { .container { padding: 0 var(--space-lg); } }
@media (min-width: 1024px) { .container { padding: 0 var(--space-xl); } }

/* =========================================
   HEADER & NAV
   ========================================= */

.header {
    background: var(--neutral-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 74px;
    position: relative;
}

.logo-image {
    height: 64px;
    width: auto;
    display: block;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-dark);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: var(--primary-purple);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.active-link::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 4px auto;
    background-color: var(--purple-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--neutral-white);
    box-shadow: var(--shadow-medium);
    border-radius: 14px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 10002;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--neutral-dark);
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: var(--purple-pale);
    color: var(--purple-dark);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 74px;
        left: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: var(--shadow-medium);
        padding: 14px 0 18px;
        z-index: 10000;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .nav-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 1.05rem;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 8px;
        background: transparent;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.95rem;
        background: rgba(201, 184, 217, 0.12);
        margin: 4px 16px;
        border-radius: 10px;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--neutral-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--purple-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--neutral-white);
    color: var(--purple-dark);
}

.btn-light:hover {
    background: var(--purple-pale);
    color: var(--purple-dark);
}

/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(232,221,242,0.5) 0%,
        rgba(250,248,245,0.3) 50%,
        rgba(245,242,239,0.5) 100%
    );
}

.hero-grid {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-content {
    text-align: left;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(168, 143, 191, 0.18);
    border: 1px solid var(--purple-light);
    color: var(--purple-dark);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.12;
    color: #2E2640;
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: italic;
    color: #6B5B8E;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: #A88FBF;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #5a5070;
    max-width: 420px;
    margin-bottom: 2.4rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-visual {
    position: relative;
    display: block;
    width: 100%;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .craft-banner-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
}

/* =========================================
   HERO BANNER IMAGE CARD
   ========================================= */

.craft-banner-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 8px 40px rgba(107, 91, 142, 0.22),
        0 2px 8px rgba(107, 91, 142, 0.12);
    aspect-ratio: 1 / 1;
}

.craft-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.craft-banner-wrap:hover .craft-banner-img {
    transform: scale(1.03);
}

.craft-banner-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 38, 64, 0.45) 0%, transparent 55%);
    pointer-events: none;
}

.banner-badge {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.65rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.banner-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--botanical-green);
    animation: pulse 2s ease-in-out infinite;
}

.banner-badge-text {
    font-size: 0.78rem;
    font-weight: 500;
    color: #2E2640;
    letter-spacing: 0.02em;
}

.banner-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    background: #6B5B8E;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
}

@media (max-width: 767px) {
    .banner-badge {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 0.65rem 0.85rem;
    }

    .banner-badge-text { font-size: 0.72rem; }

    .banner-tag {
        top: 1rem;
        right: 1rem;
        font-size: 0.62rem;
        padding: 0.35rem 0.75rem;
    }
}

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

/* =========================================
   PAGE BACKGROUND (gif version)
   ========================================= */

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.page-bg-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 247, 242, 0.72);
    backdrop-filter: blur(1px);
}

/* Ensure all sections sit above the fixed background */
.hero,
.trust-bar,
.gallery-preview,
.process-strip,
.story-section,
.custom-banner,
.footer {
    position: relative;
    z-index: 1;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-block;
    padding: 0.875rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    min-height: 48px;
    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 359px) {
    .btn { width: 100%; }
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--neutral-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--purple-dark);
    border-color: var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--purple-pale);
    border-color: var(--purple-dark);
}

/* =========================================
   TRUST BAR
   ========================================= */

.trust-bar {
    background: var(--purple-dark);
    padding: var(--space-sm) 0;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--purple-pale);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .trust-item {
        font-size: 0.9rem;
        gap: 10px;
    }
}

/* =========================================
   SECTION TITLES
   ========================================= */

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 5vw, 2.75rem);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--primary-purple);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
}

.section-lead {
    text-align: center;
    font-size: 0.95rem;
    color: var(--neutral-dark);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* =========================================
   CATEGORIES
   ========================================= */

.categories-section {
    padding: var(--space-2xl) 0;
    background: var(--neutral-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.category-card {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
    border-top: 4px solid transparent;
}

.category-quilled { border-top-color: var(--primary-purple); }
.category-gifts   { border-top-color: var(--accent-rose); }
.category-woven   { border-top-color: var(--botanical-green); }

.category-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.category-woven .category-icon-wrap { background: #EFF5E8; }
.category-gifts .category-icon-wrap { background: #FDF0F5; }

.category-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 100%;
}

.category-items {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.category-items li {
    font-size: 0.87rem;
    color: var(--neutral-dark);
    padding: 6px 0;
    border-bottom: 1px solid var(--neutral-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-items li::before {
    content: '✦';
    font-size: 0.52rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.category-gifts .category-items li::before { color: var(--accent-rose); }
.category-woven .category-items li::before { color: var(--botanical-green); }

.category-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =========================================
   GALLERY
   ========================================= */

.gallery-preview {
    padding: var(--space-2xl) 0;
    background: var(--neutral-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
    background: var(--neutral-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.product-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 220px;
    background: #f3eff7;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
}

.product-card-inner {
    padding: var(--space-md);
}

.product-craft-tag {
    display: inline-block;
    background: var(--purple-pale);
    color: var(--purple-dark);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xs);
}

.product-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: var(--purple-dark);
    margin-bottom: var(--space-xs);
}

.product-card p {
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 100%;
}

.section-cta {
    text-align: center;
}

/* =========================================
   PROCESS
   ========================================= */

.process-strip {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--purple-pale) 0%, var(--neutral-cream) 60%, #EFF5E8 100%);
}

.process-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
}

.tab-btn {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 9px var(--space-md);
    border: 2px solid var(--purple-light);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--neutral-dark);
    cursor: pointer;
    min-height: 44px;
}

.tab-btn.tab-active {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 480px) {
    .tab-content-active { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .tab-content-active { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
    text-align: center;
}

.step-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto var(--space-md);
    background: var(--neutral-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    font-size: 1.4rem;
}

.step-number-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: 6px;
}

.step-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: var(--purple-dark);
    margin-bottom: var(--space-xs);
}

.step-desc {
    font-size: 0.87rem;
    line-height: 1.6;
    color: var(--neutral-dark);
    max-width: 220px;
    margin: 0 auto;
}

/* =========================================
   STORY
   ========================================= */

.story-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--neutral-white) 0%, var(--purple-pale) 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid { grid-template-columns: 1fr 1fr; }
}

.story-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: var(--space-sm);
}

.story-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.story-text {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 100%;
}

.story-highlights {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1;
}

.highlight-label {
    font-size: 0.77rem;
    color: var(--neutral-dark);
}

.text-link {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.story-visual {
    height: 280px;
    position: relative;
}

@media (min-width: 480px) { .story-visual { height: 340px; } }
@media (min-width: 768px) { .story-visual { height: 420px; } }

.crafting-visual {
    width: 100%;
    height: 100%;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
}

.element-1 {
    width: 70px;
    height: 70px;
    background: var(--purple-light);
    opacity: 0.3;
    top: 10%;
    left: 10%;
}

.element-2 {
    width: 55px;
    height: 55px;
    background: var(--botanical-green);
    opacity: 0.3;
    bottom: 15%;
    right: 15%;
}

.element-3 {
    width: 45px;
    height: 45px;
    background: var(--accent-rose);
    opacity: 0.3;
    top: 50%;
    right: 10%;
}

.story-mandala-svg {
    width: 72%;
    height: 72%;
    position: relative;
    z-index: 2;
}

/* =========================================
   CUSTOM ORDER BANNER
   ========================================= */

.custom-banner {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--primary-purple) 60%, #9A6B8E 100%);
}

.custom-banner-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .custom-banner-inner {
        grid-template-columns: 1fr auto;
        text-align: left;
    }
}

.custom-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple-pale);
    margin-bottom: var(--space-sm);
}

.custom-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 5vw, 2.5rem);
    color: var(--neutral-white);
    margin-bottom: var(--space-md);
}

.custom-text {
    font-size: 0.95rem;
    color: var(--purple-pale);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .custom-text {
        margin-left: 0;
        margin-right: 0;
    }
}

.custom-banner .btn-primary {
    background: white;
    color: var(--purple-dark);
}

.custom-banner .btn-primary:hover {
    background: var(--purple-pale);
    color: var(--purple-dark);
}

.custom-banner-visual {
    opacity: 0.7;
    display: none;
}

@media (min-width: 768px) {
    .custom-banner-visual { display: block; }
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--primary-purple) 100%);
    color: var(--neutral-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (max-width: 359px) {
    .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: var(--space-2xl);
    }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--purple-pale);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 220px;
}

.footer-title {
    font-size: 0.95rem;
    color: var(--neutral-white);
    margin-bottom: var(--space-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--purple-pale);
    font-size: 0.87rem;
    display: inline-block;
    min-height: 36px;
    line-height: 36px;
}

.footer-links a:hover {
    color: var(--neutral-white);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: 0.78rem;
    color: var(--purple-pale);
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* =========================================
   ACCESSIBILITY & UTILITIES
   ========================================= */

*:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 4px;
}

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