/* ============================================
   CSS CUSTOM PROPERTIES — Watercolor Palette
   ============================================ */
:root {
    /* Watercolor Colors (solid for text/accents) */
    --wc-coral: #FF6B81;
    --wc-coral-deep: #E84566;
    --wc-yellow: #FFD166;
    --wc-teal: #4ECDC4;
    --wc-teal-deep: #36B5AD;
    --wc-lavender: #A78BFA;
    --wc-peach: #FFB088;
    --wc-mint: #88D8B0;

    /* Watercolor Washes (light transparent for backgrounds) */
    --wc-coral-wash: rgba(255, 107, 129, 0.16);
    --wc-yellow-wash: rgba(255, 209, 102, 0.18);
    --wc-teal-wash: rgba(78, 205, 196, 0.14);
    --wc-lavender-wash: rgba(167, 139, 250, 0.14);
    --wc-peach-wash: rgba(255, 176, 136, 0.16);
    --wc-mint-wash: rgba(136, 216, 176, 0.14);

    /* Watercolor Medium (for card backgrounds etc) */
    --wc-coral-med: rgba(255, 107, 129, 0.25);
    --wc-yellow-med: rgba(255, 209, 102, 0.28);
    --wc-teal-med: rgba(78, 205, 196, 0.22);
    --wc-lavender-med: rgba(167, 139, 250, 0.22);
    --wc-peach-med: rgba(255, 176, 136, 0.25);
    --wc-mint-med: rgba(136, 216, 176, 0.22);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFBFF;
    --charcoal: #2D2D3F;
    --charcoal-light: #5A5A6E;
    --grey: #9494A8;
    --light-grey: #EDEDF2;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-width: min(1200px, 90vw);
    --container-narrow: min(800px, 85vw);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

::selection {
    background-color: rgba(167, 139, 250, 0.25);
    color: var(--charcoal);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.loader-splotch {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: loaderSplotchIn 0.8s ease-out forwards;
}

.loader-splotch-1 {
    width: 420px;
    height: 380px;
    background: radial-gradient(ellipse at 45% 50%, rgba(255, 107, 129, 0.18) 0%, rgba(255, 107, 129, 0.05) 50%, transparent 70%);
    top: -80px;
    right: -60px;
    filter: blur(40px);
    animation-delay: 0s;
}

.loader-splotch-2 {
    width: 380px;
    height: 340px;
    background: radial-gradient(ellipse at 55% 45%, rgba(78, 205, 196, 0.16) 0%, rgba(78, 205, 196, 0.04) 55%, transparent 70%);
    bottom: -60px;
    left: -80px;
    filter: blur(45px);
    animation-delay: 0.15s;
}

.loader-splotch-3 {
    width: 300px;
    height: 280px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 209, 102, 0.2) 0%, rgba(255, 209, 102, 0.05) 50%, transparent 70%);
    top: 20%;
    left: 10%;
    filter: blur(40px);
    animation-delay: 0.3s;
}

.loader-splotch-4 {
    width: 350px;
    height: 320px;
    background: radial-gradient(ellipse at 45% 55%, rgba(167, 139, 250, 0.16) 0%, rgba(167, 139, 250, 0.04) 50%, transparent 70%);
    bottom: 15%;
    right: 8%;
    filter: blur(45px);
    animation-delay: 0.2s;
}

.loader-splotch-5 {
    width: 260px;
    height: 240px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 176, 136, 0.18) 0%, rgba(255, 176, 136, 0.05) 50%, transparent 70%);
    top: 55%;
    left: 35%;
    filter: blur(35px);
    animation-delay: 0.1s;
}

@keyframes loaderSplotchIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    opacity: 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(135deg, #FF6B81 0%, #A78BFA 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--charcoal);
    -webkit-text-fill-color: var(--charcoal);
    transition: opacity 0.8s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 40px;
    box-shadow: 0 1px 30px rgba(167, 139, 250, 0.08);
}

.nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FF6B81 0%, #A78BFA 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--charcoal);
    /* fallback */
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--charcoal-light);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--wc-coral), var(--wc-lavender));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    padding: 10px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-lavender));
    color: var(--white) !important;
    transition: all 0.4s ease !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--wc-coral-deep), var(--wc-lavender));
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 107, 129, 0.25);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }

    .nav.scrolled {
        padding: 12px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 60px 40px;
        gap: 28px;
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

/* ============================================
   WATERCOLOR SPLOTCH SYSTEM
   ============================================ */
.wc-splotch {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

/* Hero splotches — vibrant watercolor backdrop (enlarged & centered around logo area) */
.hero .wc-splotch-1 {
    width: 800px;
    height: 700px;
    background: radial-gradient(ellipse at 40% 50%, rgba(255, 107, 129, 0.42) 0%, rgba(255, 107, 129, 0.16) 50%, transparent 70%);
    top: -50px;
    right: -20px;
    filter: blur(30px);
    animation: splotchFloat1 12s ease-in-out infinite;
}

.hero .wc-splotch-2 {
    width: 720px;
    height: 650px;
    background: radial-gradient(ellipse at 60% 40%, rgba(78, 205, 196, 0.38) 0%, rgba(78, 205, 196, 0.14) 55%, transparent 70%);
    bottom: -20px;
    left: -30px;
    filter: blur(35px);
    animation: splotchFloat2 15s ease-in-out infinite;
}

.hero .wc-splotch-3 {
    width: 580px;
    height: 540px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 209, 102, 0.44) 0%, rgba(255, 209, 102, 0.14) 50%, transparent 70%);
    top: 18%;
    left: 12%;
    filter: blur(30px);
    animation: splotchFloat3 10s ease-in-out infinite;
}

.hero .wc-splotch-4 {
    width: 640px;
    height: 580px;
    background: radial-gradient(ellipse at 45% 55%, rgba(167, 139, 250, 0.38) 0%, rgba(167, 139, 250, 0.12) 50%, transparent 70%);
    top: 8%;
    right: 5%;
    filter: blur(35px);
    animation: splotchFloat1 14s ease-in-out infinite reverse;
}

.hero .wc-splotch-5 {
    width: 500px;
    height: 460px;
    background: radial-gradient(ellipse at 50% 50%, rgba(136, 216, 176, 0.38) 0%, rgba(136, 216, 176, 0.12) 50%, transparent 70%);
    bottom: 10%;
    right: 12%;
    filter: blur(28px);
    animation: splotchFloat2 11s ease-in-out infinite;
}

.hero .wc-splotch-6 {
    width: 520px;
    height: 460px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 176, 136, 0.42) 0%, rgba(255, 176, 136, 0.14) 50%, transparent 70%);
    top: 45%;
    left: 15%;
    filter: blur(30px);
    animation: splotchFloat3 13s ease-in-out infinite;
}

/* Additional splotches — enlarged for richer center coverage */
.hero .wc-splotch-7 {
    width: 680px;
    height: 600px;
    background: radial-gradient(ellipse at 55% 45%, rgba(255, 107, 129, 0.32) 0%, rgba(167, 139, 250, 0.16) 45%, transparent 70%);
    top: 5%;
    left: 22%;
    filter: blur(40px);
    animation: splotchFloat2 16s ease-in-out infinite;
}

.hero .wc-splotch-8 {
    width: 600px;
    height: 520px;
    background: radial-gradient(ellipse at 50% 50%, rgba(78, 205, 196, 0.34) 0%, rgba(136, 216, 176, 0.14) 50%, transparent 70%);
    bottom: 3%;
    right: 22%;
    filter: blur(32px);
    animation: splotchFloat3 12s ease-in-out infinite reverse;
}

.hero .wc-splotch-9 {
    width: 460px;
    height: 420px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 209, 102, 0.36) 0%, rgba(255, 176, 136, 0.16) 50%, transparent 70%);
    top: 35%;
    right: 10%;
    filter: blur(28px);
    animation: splotchFloat1 9s ease-in-out infinite;
}

.hero .wc-splotch-10 {
    width: 520px;
    height: 480px;
    background: radial-gradient(ellipse at 40% 60%, rgba(167, 139, 250, 0.34) 0%, rgba(255, 107, 129, 0.12) 50%, transparent 70%);
    bottom: 20%;
    left: -10px;
    filter: blur(34px);
    animation: splotchFloat2 17s ease-in-out infinite;
}

.hero .wc-splotch-11 {
    width: 420px;
    height: 380px;
    background: radial-gradient(ellipse at 50% 50%, rgba(136, 216, 176, 0.34) 0%, rgba(78, 205, 196, 0.14) 50%, transparent 70%);
    top: 8%;
    left: -10px;
    filter: blur(26px);
    animation: splotchFloat3 11s ease-in-out infinite;
}

.hero .wc-splotch-12 {
    width: 480px;
    height: 440px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 176, 136, 0.36) 0%, rgba(255, 209, 102, 0.16) 50%, transparent 70%);
    top: 28%;
    right: 20%;
    filter: blur(30px);
    animation: splotchFloat1 13s ease-in-out infinite reverse;
}

@keyframes splotchFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(15px, -10px) scale(1.03);
    }

    50% {
        transform: translate(-10px, 15px) scale(0.97);
    }

    75% {
        transform: translate(8px, 8px) scale(1.02);
    }
}

@keyframes splotchFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-15px, 12px) scale(1.04);
    }

    66% {
        transform: translate(12px, -8px) scale(0.96);
    }
}

@keyframes splotchFloat3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(10px, -15px) rotate(3deg) scale(1.05);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    overflow: hidden;
}

/* Transparent-to-white fade at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--white));
    z-index: 3;
    pointer-events: none;
}

/* The old hero-bg structure is hidden/replaced */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    display: none;
}

.hero-vignette {
    display: none;
}

/* Monoline floral frame — tiled horizontally, vertically centered */
.hero-floral-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background: url('images/floral-frame-white.svg') repeat-x center center;
    background-size: auto 100%;
    /* Adjust vertical position to align with hero content */
    background-position-y: -194px;
}

/* ---- Hero Content (centred) ---- */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-logo-container {
    margin-bottom: 32px;
    position: relative;
}

.hero-logo-container img {
    position: relative;
    z-index: 2;
    max-width: min(320px, 55vw);
    margin: 0 auto;
    filter: drop-shadow(0 2px 20px rgba(167, 139, 250, 0.12));
    mix-blend-mode: multiply;
}

/* ---- Blooming Firework Burst Behind Logo ---- */
.hero-bloom {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2100px;
    height: 2100px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    /* GSAP controls opacity; CSS animation handles the spin */
    animation: bloomSpin 60s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg);
}

@keyframes bloomSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Each petal is an invisible rotation-anchor at the center */
.bloom-petal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

/* The actual visible burst particle */
.bloom-petal::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    border-radius: 50%;
    background: var(--bloom-color);
    filter: blur(20px);
    opacity: 0;
    animation: bloomBurst 16s ease-out infinite;
    animation-delay: var(--bloom-delay);
}

/* Second burst wave — smaller, slightly offset timing for density */
.bloom-petal::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    background: var(--bloom-color);
    filter: blur(14px);
    opacity: 0;
    animation: bloomBurst 16s ease-out infinite;
    animation-delay: calc(var(--bloom-delay) + 8s);
}

/* Petal directions (45° apart) and vibrant single colors */
.bloom-petal-1 {
    transform: rotate(0deg);
    --bloom-color: rgba(255, 107, 129, 0.35);
    --bloom-delay: 0s;
}

.bloom-petal-2 {
    transform: rotate(45deg);
    --bloom-color: rgba(78, 205, 196, 0.35);
    --bloom-delay: 2s;
}

.bloom-petal-3 {
    transform: rotate(90deg);
    --bloom-color: rgba(167, 139, 250, 0.35);
    --bloom-delay: 4s;
}

.bloom-petal-4 {
    transform: rotate(135deg);
    --bloom-color: rgba(255, 209, 102, 0.35);
    --bloom-delay: 6s;
}

.bloom-petal-5 {
    transform: rotate(180deg);
    --bloom-color: rgba(255, 176, 136, 0.35);
    --bloom-delay: 8s;
}

.bloom-petal-6 {
    transform: rotate(225deg);
    --bloom-color: rgba(136, 216, 176, 0.35);
    --bloom-delay: 10s;
}

.bloom-petal-7 {
    transform: rotate(270deg);
    --bloom-color: rgba(232, 69, 102, 0.35);
    --bloom-delay: 12s;
}

.bloom-petal-8 {
    transform: rotate(315deg);
    --bloom-color: rgba(54, 181, 173, 0.35);
    --bloom-delay: 14s;
}

/* The burst: start small at center → expand outward → fade */
@keyframes bloomBurst {
    0% {
        transform: translateX(0px) scale(0.6);
        opacity: 0;
    }

    8% {
        transform: translateX(120px) scale(2.4);
        opacity: 0.6;
    }

    35% {
        transform: translateX(540px) scale(6.6);
        opacity: 0.45;
    }

    65% {
        transform: translateX(960px) scale(9);
        opacity: 0.2;
    }

    100% {
        transform: translateX(1260px) scale(10.5);
        opacity: 0;
    }
}

/* --- Hero Headline --- */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    opacity: 0;
}

.hero-headline .text-gradient {
    background: linear-gradient(135deg, var(--wc-coral) 0%, var(--wc-lavender) 50%, var(--wc-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 0.01em;
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

/* --- Hero Buttons --- */
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 16px 40px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Primary — watercolor gradient fill */
.hero-btn-primary {
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-lavender));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 129, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 129, 0.35);
}

/* Secondary — outlined with gradient border */
.hero-btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--light-grey);
    box-shadow: none;
}

.hero-btn-secondary:hover {
    border-color: var(--wc-teal);
    color: var(--wc-teal-deep);
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.15);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--grey);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--wc-lavender), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.6;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 1;
    }
}

/* ---- Hero responsive ---- */
@media (max-width: 768px) {
    .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-tagline br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btn {
        width: 240px;
        text-align: center;
    }

    .hero-logo-container img {
        max-width: min(260px, 65vw);
    }

    .hero .wc-splotch {
        transform: scale(0.6);
    }

    .hero-bloom {
        width: 420px;
        height: 420px;
    }

    .bloom-petal::after {
        width: 60px;
        height: 60px;
        margin: -30px 0 0 -30px;
        filter: blur(14px);
    }

    .bloom-petal::before {
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px;
        filter: blur(10px);
    }
}

/* ============================================
   SECTION TITLES (shared)
   ============================================ */
.section-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wc-teal);
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 16px;
    background: var(--wc-teal-wash);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    color: var(--grey);
    line-height: 1.8;
    max-width: 600px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   WATERCOLOR DIVIDER (replaces floral divider)
   ============================================ */
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    position: relative;
    height: 120px;
    overflow: hidden;
    background: var(--white);
}

.floral-divider svg {
    display: none;
}

.wc-divider-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    margin: 0 auto;
}

/* Watercolor wash strip behind the divider */
.wc-divider-wash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--wc-coral-wash) 15%,
            var(--wc-yellow-wash) 30%,
            var(--wc-teal-wash) 50%,
            var(--wc-lavender-wash) 70%,
            var(--wc-peach-wash) 85%,
            transparent 100%);
    filter: blur(20px);
    border-radius: 100px;
}

/* Monoline floral SVG overlay */
.wc-divider-floral {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-divider-floral img {
    display: block;
    width: min(600px, 80vw);
    height: auto;
}

/* ============================================
   FEATURED WORK
   ============================================ */
.featured {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.featured-header {
    text-align: center;
    margin-bottom: 80px;
}

.featured-header .section-subtitle {
    margin: 0 auto;
}

.featured-grid {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.featured-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card-bg {
    transform: scale(1.05);
}

/* White monoline floral overlay on cards */
.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.35;
    background-image: url("images/featured-card-floral.svg");
    background-size: cover;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.featured-card:hover::before {
    opacity: 0.55;
}

.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 45, 63, 0.55) 0%, rgba(45, 45, 63, 0.05) 50%, transparent 100%);
    transition: background 0.5s ease;
    z-index: 3;
}

.featured-card:hover .featured-card-overlay {
    background: linear-gradient(to top, rgba(45, 45, 63, 0.7) 0%, rgba(45, 45, 63, 0.15) 60%, transparent 100%);
}

.featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 4;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card-content {
    transform: translateY(0);
    opacity: 1;
}

.featured-card-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.featured-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 90vw;
    }

    .featured-card {
        aspect-ratio: 4/5;
    }

    .featured-card-content {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   QUOTE / DIVIDER SECTION
   ============================================ */
.quote-section {
    padding: clamp(80px, 10vw, 140px) 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Watercolor wash background for quote */
.quote-section::before {
    content: '';
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(ellipse 35% 60% at 15% 50%, rgba(255, 107, 129, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 30% 50% at 40% 40%, rgba(255, 209, 102, 0.10) 0%, transparent 100%),
        radial-gradient(ellipse 35% 55% at 60% 60%, rgba(78, 205, 196, 0.10) 0%, transparent 100%),
        radial-gradient(ellipse 30% 50% at 85% 50%, rgba(167, 139, 250, 0.12) 0%, transparent 100%);
    filter: blur(30px);
    z-index: 0;
}

/* Tessellated peony pattern over rainbow gradient in quote */
.quote-section::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1.5px solid rgba(45, 45, 63, 0.06);
    border-radius: 30px;
    background-image: url("images/peony-pattern1-white.svg");
    background-repeat: repeat;
    background-size: 450px;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.quote-attr {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    position: relative;
}

/* Subtle watercolor accents in background */
.services::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at 50% 50%, var(--wc-mint-wash) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse at 50% 50%, var(--wc-peach-wash) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid var(--light-grey);
    border-radius: 20px;
    background: var(--white);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Watercolor accent top bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wc-coral), var(--wc-yellow), var(--wc-teal));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.1);
    border-color: transparent;
}

/* Color-specific hover glow per card */
.service-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(255, 107, 129, 0.12);
}

.service-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.12);
}

.service-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Watercolor blob behind icon */
.service-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    filter: blur(8px);
    z-index: 0;
}

.service-card:nth-child(1) .service-icon::before {
    background: var(--wc-coral-wash);
}

.service-card:nth-child(2) .service-icon::before {
    background: var(--wc-teal-wash);
}

.service-card:nth-child(3) .service-icon::before {
    background: var(--wc-lavender-wash);
}

.service-icon img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--grey);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 90vw;
    }
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 960px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid var(--light-grey);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(167, 139, 250, 0.1);
}

/* Watercolor accent in top-right corner */
.review-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.review-card:nth-child(6n+1)::before {
    background: var(--wc-coral-wash);
}

.review-card:nth-child(6n+2)::before {
    background: var(--wc-teal-wash);
}

.review-card:nth-child(6n+3)::before {
    background: var(--wc-lavender-wash);
}

.review-card:nth-child(6n+4)::before {
    background: var(--wc-yellow-wash);
}

.review-card:nth-child(6n+5)::before {
    background: var(--wc-peach-wash);
}

.review-card:nth-child(6n+6)::before {
    background: var(--wc-mint-wash);
}

.review-card:hover::before {
    opacity: 0.8;
}

.review-stars {
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--wc-coral), var(--wc-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 24px;
}

.review-author {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--charcoal);
}

.review-date {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--grey);
    margin-top: 4px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background watercolor accents */
.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at 50% 50%, var(--wc-lavender-wash) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.about-container {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Watercolor paint-stroke accent instead of border */
.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    background: radial-gradient(ellipse at 50% 50%, var(--wc-coral-med) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    z-index: -1;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text h3 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-signature {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        width: 90vw;
    }

    .about-image {
        order: -1;
    }

    .about-image-wrapper img {
        height: 400px;
    }
}

/* ============================================
   CONTACT / START YOUR VISION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Watercolor accent background */
.contact::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(ellipse at 40% 40%, rgba(255, 209, 102, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 60%, rgba(167, 139, 250, 0.08) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.contact-container {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-top: 20px;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.contact-detail:nth-child(1) .contact-detail-icon {
    background: var(--wc-coral-wash);
}

.contact-detail:nth-child(2) .contact-detail-icon {
    background: var(--wc-teal-wash);
}

.contact-detail:nth-child(3) .contact-detail-icon {
    background: var(--wc-lavender-wash);
}

.contact-detail-icon img {
    width: 18px;
    height: 18px;
}

.contact-detail-text {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.contact-detail-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3px;
}

/* ---- Contact Form ---- */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--light-grey);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--light-grey);
    border-radius: 12px;
    background: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--wc-lavender);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-lavender));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(255, 107, 129, 0.2);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 129, 0.35);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 90vw;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 24px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Watercolor accents bleed into footer top */
.footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 10%;
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 129, 0.06) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: -30px;
    right: 15%;
    width: 250px;
    height: 180px;
    background: radial-gradient(ellipse at 50% 50%, rgba(78, 205, 196, 0.06) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.footer-top {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--wc-coral), var(--wc-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--wc-coral);
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 50px 0 0 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
    border-color: var(--wc-lavender);
}

.footer-newsletter-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--wc-coral), var(--wc-lavender));
    border: none;
    border-radius: 0 50px 50px 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer-newsletter-form button:hover {
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(255, 107, 129, 0.2), rgba(167, 139, 250, 0.2));
}

.footer-social a img {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-social a:hover img {
    opacity: 1;
}

.footer-bottom {
    width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 90vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        width: 90vw;
    }
}

/* ============================================
   REVEAL ANIMATIONS (initial states)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* ============================================
   MAGNETIC BUTTON EFFECT
   ============================================ */
.magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}