/* ============================================
   Oolu Studio - Indie Designer Portfolio
   Creative, playful, minimal design
   ============================================ */

/* Custom Properties */
:root {
    /* Brand Colors - From Logo */
    --sage: #8B9A7B;
    --sage-light: #A5B396;
    --sage-lighter: #C5D4B6;
    --sage-dark: #6B7A5E;
    --plum: #9B5D8B;
    --plum-light: #B87AA8;
    --plum-dark: #7D4A70;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
}

.text-sage { color: var(--sage); }
.text-plum { color: var(--plum); }

/* ============================================
   Decorative Doodles
   ============================================ */
.doodles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.doodle {
    position: absolute;
    opacity: 0.12;
    color: var(--sage);
}

.doodle-1 {
    width: 120px;
    top: 15%;
    right: 5%;
    animation: float 20s ease-in-out infinite;
}

.doodle-2 {
    width: 60px;
    top: 40%;
    left: 3%;
    color: var(--plum);
    animation: float 25s ease-in-out infinite reverse;
}

.doodle-3 {
    width: 80px;
    top: 70%;
    right: 8%;
    animation: float 18s ease-in-out infinite;
}

.doodle-4 {
    width: 50px;
    top: 25%;
    left: 8%;
    color: var(--plum);
    animation: float 22s ease-in-out infinite reverse;
}

.doodle-5 {
    width: 100px;
    bottom: 20%;
    left: 5%;
    animation: float 24s ease-in-out infinite;
}

.doodle-6 {
    width: 40px;
    bottom: 30%;
    right: 12%;
    color: var(--plum);
    animation: float 19s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .doodles {
        opacity: 0.5;
    }
    .doodle-1, .doodle-3, .doodle-5 {
        display: none;
    }
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    border-bottom-color: var(--gray-100);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 36px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-links {
    display: none;
    list-style: none;
    gap: var(--space-8);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plum);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
    color: var(--gray-900);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: none;
    align-items: center;
    gap: var(--space-3);
}

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

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--gray-500);
    transition: all var(--duration-fast) var(--ease-out);
}

.nav-social a:hover {
    color: var(--plum);
    background: var(--gray-50);
}

.nav-social svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: 10;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--duration-fast) var(--ease-out);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu > a {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-800);
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-size: 2rem;
    color: var(--gray-600);
    line-height: 1;
}

.mobile-menu-social {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.mobile-menu-social a {
    font-size: 1rem;
    color: var(--gray-500);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-32) 0 var(--space-20);
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 154, 123, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(155, 93, 139, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
        padding-right: 0;
    }
}

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

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 400px;
    margin-bottom: var(--space-8);
    line-height: 1.7;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

@media (min-width: 768px) {
    .hero-description {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s var(--ease-out) 0.4s both;
}

@media (min-width: 768px) {
    .hero-visual {
        justify-content: flex-end;
    }
}

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

@media (min-width: 768px) {
    .hero-logo {
        max-width: 340px;
    }
}

.hero-artwork {
    max-width: 500px;
    width: 100%;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(155, 93, 139, 0.15));
}

@media (min-width: 768px) {
    .hero-artwork {
        max-width: none;
        width: 480px;
    }
}

@media (min-width: 1024px) {
    .hero-artwork {
        width: 580px;
    }
}

@media (min-width: 1280px) {
    .hero-artwork {
        width: 680px;
    }
}

@media (min-width: 1536px) {
    .hero-artwork {
        width: 750px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
}

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.btn-secondary svg {
    color: var(--plum);
}

.btn-sage {
    background: var(--sage);
    color: var(--white);
}

.btn-sage:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(139, 154, 123, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-300);
    animation: fadeIn 1s var(--ease-out) 0.8s both;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

/* ============================================
   About Section
   ============================================ */
.about {
    position: relative;
    z-index: 1;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .about {
        min-height: 700px;
        padding: var(--space-20) 0;
    }
}

/* Mural (full background) */
.about-mural {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.about-mural-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    color: var(--gray-300);
}

.about-mural-placeholder svg {
    width: 80px;
    height: 80px;
}

.about-mural-placeholder span {
    font-size: 0.9375rem;
    font-weight: 500;
}

.about-mural-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay card (positioned right) */
.about .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .about .container {
        justify-content: flex-end;
    }
}

.about-card-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-8) var(--space-6);
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .about-card-overlay {
        padding: var(--space-10) var(--space-8);
    }
}

/* About Header with Avatar */
.about-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-2);
}

.about-header .section-title {
    margin-bottom: 0;
}

/* Avatar Speech Bubble */
.avatar-bubble {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.avatar-bubble::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.avatar-bubble::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -12px;
    width: 9px;
    height: 9px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.about-text em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--plum);
}

.about-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4) var(--space-6);
    margin-top: var(--space-8);
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--duration-fast) var(--ease-out);
}

.about-link:hover {
    color: var(--plum);
}

.about-link svg {
    color: var(--sage);
    flex-shrink: 0;
}

/* About Card */
.about-visual {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-visual {
        justify-content: flex-end;
    }
}

.about-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: var(--space-8);
    max-width: 280px;
    width: 100%;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(155, 93, 139, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--plum);
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
}

.about-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--gray-800);
}

.about-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.about-card-list li {
    font-size: 0.9375rem;
    color: var(--gray-500);
    padding-left: var(--space-4);
    position: relative;
}

.about-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-light);
}

/* ============================================
   Coming Soon Section
   ============================================ */
.coming-soon {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    z-index: 1;
}

.coming-soon .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .coming-soon .container {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-16);
    }
}

.coming-soon-content {
    text-align: center;
}

@media (min-width: 768px) {
    .coming-soon-content {
        text-align: left;
    }
}

.coming-soon-text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 500px;
}

@media (max-width: 767px) {
    .coming-soon-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.early-access-form {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: var(--space-8);
    max-width: 480px;
}

@media (max-width: 767px) {
    .early-access-form {
        margin-left: auto;
        margin-right: auto;
    }
}

.early-access-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-2);
}

.early-access-form > p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: var(--space-6);
}

.signup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

@media (min-width: 480px) {
    .signup-form .form-group {
        flex-direction: row;
    }
}

.signup-form input[type="email"] {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    outline: none;
    transition: border-color var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
}

.signup-form input[type="email"]:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(155, 93, 139, 0.1);
}

.signup-form input[type="email"]::placeholder {
    color: var(--gray-400);
}

.signup-form button {
    white-space: nowrap;
}

.signup-form button svg {
    transition: transform var(--duration-fast) var(--ease-out);
}

.signup-form button:hover svg {
    transform: translateX(3px);
}

.form-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: var(--space-3);
    text-align: center;
}

/* Coming Soon Visual */
.coming-soon-visual {
    display: flex;
    justify-content: center;
}

.app-preview-image {
    max-width: 320px;
    width: 100%;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(155, 93, 139, 0.15));
}

@media (min-width: 768px) {
    .app-preview-image {
        max-width: 380px;
    }
}

/* MailerLite embedded form */
.ml-embedded {
    margin-bottom: var(--space-4);
}

/* ============================================
   Works Section
   ============================================ */
.works {
    padding: var(--space-24) 0;
    background: var(--gray-50);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.work-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid var(--gray-100);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.work-card-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-card-placeholder {
    color: var(--gray-300);
}

.work-card-placeholder svg {
    width: 64px;
    height: 64px;
}

.work-card:nth-child(1) .work-card-image {
    background: linear-gradient(135deg, rgba(139, 154, 123, 0.15) 0%, rgba(139, 154, 123, 0.05) 100%);
}

.work-card:nth-child(1) .work-card-placeholder {
    color: var(--sage);
}

.work-card:nth-child(2) .work-card-image {
    background: linear-gradient(135deg, rgba(155, 93, 139, 0.15) 0%, rgba(155, 93, 139, 0.05) 100%);
}

.work-card:nth-child(2) .work-card-placeholder {
    color: var(--plum);
}

.work-card:nth-child(3) .work-card-image {
    background: linear-gradient(135deg, rgba(139, 154, 123, 0.15) 0%, rgba(139, 154, 123, 0.05) 100%);
}

.work-card:nth-child(3) .work-card-placeholder {
    color: var(--sage);
}

.work-card-tag {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
}

.work-card-content {
    padding: var(--space-6);
}

.work-card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--gray-800);
}

.work-card-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.works-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.works-cta p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: var(--space-6);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-12) 0 var(--space-8);
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-6);
    padding-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9375rem;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-divider {
    color: var(--gray-300);
}

.footer-bottom {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.8125rem;
}

.footer-bottom a {
    color: var(--gray-400);
    text-decoration: underline;
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-bottom a:hover {
    color: var(--gray-600);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.hidden { display: none; }

/* Smooth page transitions */
.page-transition {
    animation: fadeIn 0.4s var(--ease-out);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(155, 93, 139, 0.2);
    color: var(--gray-900);
}

/* Scrollbar styling (Webkit) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}
