/* ========================================
   Designer Portfolio - Main Styles
   ======================================== */

/* CSS Variables - Nature Inspired Palette */
:root {
    /* Earth & Nature Colors */
    --color-bg: #faf9f7;
    --color-bg-warm: #f5f0e8;
    --color-text: #2c3e2d;
    --color-text-secondary: #5a6b5c;
    --color-text-muted: #8a9a8c;
    
    /* Nature Accents */
    --color-accent: #2d6a4f;
    --color-accent-hover: #1b4332;
    --color-ocean: #40916c;
    --color-sunset: #e07a5f;
    --color-sand: #e9c46a;
    --color-sky: #87ceeb;
    --color-forest: #52b788;
    --color-earth: #8b5a2b;
    
    /* Neutrals */
    --color-border: #e8e4dc;
    --color-card: #fffefc;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-breeze: cubic-bezier(0.37, 0, 0.63, 1);
    --ease-flow: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Shadows - Soft like natural light */
    --shadow-sm: 0 2px 4px rgba(44, 62, 45, 0.06);
    --shadow-md: 0 8px 16px rgba(44, 62, 45, 0.08);
    --shadow-lg: 0 16px 32px rgba(44, 62, 45, 0.1);
    --shadow-glow: 0 0 40px rgba(64, 145, 108, 0.15);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

/* Safari fallback - use solid background when backdrop-filter not supported */
@supports not (backdrop-filter: blur(20px)) {
    .nav {
        background: rgba(250, 250, 250, 0.98);
    }
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 4px;
    background-color: transparent;
    mix-blend-mode: multiply;
}

/* Alternative: If logo has white/bright background, use darken blend */
@supports not (mix-blend-mode: multiply) {
    .logo-img {
        background: transparent;
        filter: drop-shadow(0 0 0 transparent);
    }
}

/* For dark/light mode compatibility */
.logo-img {
    background-blend-mode: overlay;
    isolation: isolate;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 2rem 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-greeting {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-role {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-text-secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
    transform: translateY(-2px);
}

/* Calendly Schedule Button - Warm Human-Friendly Peach */
.btn-accent {
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 162, 97, 0.4);
}

/* Contact Section Calendly Button */
.btn-calendly {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #52b788 0%, #40916c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-calendly::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-calendly:hover::before {
    left: 100%;
}

.btn-calendly:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(82, 183, 136, 0.3);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-text-secondary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

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

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

/* ========================================
   Section Common Styles
   ======================================== */
.section-header {
    max-width: 640px;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   Work/Case Studies Section
   ======================================== */
.work {
    padding: 100px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-study {
    background: var(--color-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.case-study:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-study-link {
    display: block;
}

.case-study-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.case-study-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.case-study:hover .case-study-placeholder {
    transform: scale(1.05);
}

.case-study-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Safari fallback for case-study-tag */
@supports not (backdrop-filter: blur(10px)) {
    .case-study-tag {
        background: rgba(255, 255, 255, 1);
    }
}

.case-study-content {
    padding: 1.75rem;
}

.case-study-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.case-study-excerpt {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.case-study-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.case-study-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.case-study-arrow {
    font-size: 1.25rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.case-study:hover .case-study-arrow {
    transform: translateX(4px);
}

/* ========================================
   Energetic Case Studies - Nature Vibes
   ======================================== */
.work-energetic {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(250, 249, 247, 1) 0%, 
        rgba(245, 250, 245, 0.95) 30%,
        rgba(250, 247, 245, 0.9) 70%,
        rgba(250, 249, 247, 1) 100%
    );
}

/* Energy Particles */
.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.energy-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatEnergy 8s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 25%; left: 85%; animation-delay: 1.5s; }
.particle-3 { top: 60%; left: 5%; animation-delay: 3s; }
.particle-4 { top: 70%; left: 90%; animation-delay: 4.5s; }
.particle-5 { top: 40%; left: 50%; animation-delay: 6s; }

@keyframes floatEnergy {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-30px) scale(1.2); 
        opacity: 0.8;
    }
}

/* Nature Vines */
.work-vine {
    position: absolute;
    width: 120px;
    height: 300px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.work-vine::before {
    content: '🌿';
    font-size: 80px;
    position: absolute;
    animation: vineSway 6s ease-in-out infinite;
}

.vine-left {
    top: 10%;
    left: -20px;
    transform: rotate(-15deg);
}

.vine-right {
    top: 40%;
    right: -20px;
    transform: rotate(15deg) scaleX(-1);
}

@keyframes vineSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Floating Nature Items */
.floating-nature-item {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    z-index: 1;
    animation: natureFloat 10s ease-in-out infinite;
}

.nature-butterfly {
    top: 20%;
    left: 8%;
    animation: butterflyFly 12s ease-in-out infinite;
}

.nature-leaf-1 {
    top: 50%;
    right: 10%;
    font-size: 1.5rem;
    animation: leafDrift 15s ease-in-out infinite;
}

.nature-flower {
    top: 75%;
    left: 15%;
    font-size: 1.8rem;
    animation: flowerPulse 8s ease-in-out infinite;
}

.nature-sparkle {
    top: 35%;
    right: 20%;
    font-size: 1.2rem;
    animation: sparkleTwinkle 3s ease-in-out infinite;
}

@keyframes natureFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes butterflyFly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(15deg); }
    50% { transform: translate(40px, -10px) rotate(-5deg); }
    75% { transform: translate(20px, -40px) rotate(20deg); }
}

@keyframes leafDrift {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(-30px) rotate(15deg); }
}

@keyframes flowerPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Energetic Header */
.section-header-energetic {
    position: relative;
    z-index: 2;
}

.pulse-label {
    display: inline-block;
    animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(82, 183, 136, 0.5); }
}

.section-title-energetic {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
    justify-content: center;
}

.title-word {
    display: inline-block;
    animation: wordBounce 4s ease-in-out infinite;
}

.title-word:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes wordBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nature-highlight {
    background: linear-gradient(135deg, #52b788 0%, #2d6a4f 50%, #40916c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nature-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #52b788, #e9c46a, #e07a5f);
    border-radius: 2px;
    animation: underlineGrow 3s ease-in-out infinite;
}

@keyframes underlineGrow {
    0%, 100% { transform: scaleX(0.7); }
    50% { transform: scaleX(1); }
}

.section-desc-energetic {
    position: relative;
}

.highlight-grow {
    color: var(--color-forest);
    font-weight: 600;
    position: relative;
    display: inline-block;
    animation: growPulse 2s ease-in-out infinite;
}

@keyframes growPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Energetic Grid */
.work-grid-energetic {
    position: relative;
    z-index: 2;
}

.work-grid-energetic .case-study {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.work-grid-energetic .case-study:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(44, 62, 45, 0.12),
        0 0 60px rgba(82, 183, 136, 0.1);
}

.work-grid-energetic .case-study:hover .case-study-arrow {
    transform: translateX(8px);
    color: var(--color-forest);
}

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

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--color-card);
}

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

.about-content {
    max-width: 560px;
}

.about-text {
    margin: 2rem 0;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 300px;
    height: 300px;
    opacity: 0.1;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--color-card);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.process-number {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.process-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 80px 0;
    background: var(--color-text);
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.contact-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact .section-label {
    color: var(--color-accent);
    opacity: 0.9;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-bg);
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
}

.contact-link:hover {
    color: var(--color-bg);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-bg);
    transition: var(--transition);
}

.contact-link:hover::after {
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 2rem 0;
    background: var(--color-text);
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-text {
    font-size: 0.875rem;
}

.back-to-top {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--color-bg);
    transform: translateY(-4px);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Security - Asset Protection
   ======================================== */

/* Prevent image selection and dragging */
.case-study-image,
.case-study-placeholder,
.about-placeholder {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

/* Re-enable pointer events for the container link */
.case-study-link {
    pointer-events: auto;
}

/* Prevent text selection on sensitive elements */
.hero-name,
.case-study-title,
.process-title {
    user-select: text;
}

/* Security notice styling */
.security-notice {
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -40%); }
    10% { opacity: 1; transform: translate(-50%, -50%); }
    90% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -60%); }
}

/* ========================================
   Nature-Inspired Design Elements
   ======================================== */

/* Organic Blob Shapes */
.organic-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(0px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(64, 145, 108, 0.15) 0%, rgba(82, 183, 136, 0.1) 100%);
    top: -200px;
    right: -100px;
    animation: morphBlob 15s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, rgba(233, 196, 106, 0.08) 100%);
    bottom: 100px;
    left: -150px;
    animation: morphBlob 20s ease-in-out infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.12) 0%, rgba(64, 145, 108, 0.08) 100%);
    top: 50%;
    left: 50%;
    animation: floatBlob 25s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.05);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
        transform: rotate(180deg) scale(1);
    }
    75% {
        border-radius: 60% 40% 60% 30% / 70% 50% 40% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes floatBlob {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Wave Separator SVG */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-separator .shape-fill {
    fill: var(--color-bg-warm);
}

/* Leaf Pattern Overlay */
.leaf-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-5 10-15 15-20 25s5 20 15 20c10 0 20-10 20-20S35 15 30 5z' fill='%232d6a4f' fill-opacity='0.4'/%3E%3C/svg%3E");
}

/* Organic Card Borders */
.card-organic {
    border-radius: 20px 40px 30px 50px / 40px 30px 50px 30px;
}

/* Nature Gradient Text */
.gradient-nature {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-forest) 50%, var(--color-ocean) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-sunset {
    background: linear-gradient(135deg, var(--color-sunset) 0%, var(--color-sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gentle Breeze Animation for Elements */
.breeze {
    animation: gentleBreeze 8s ease-in-out infinite;
}

@keyframes gentleBreeze {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(5px) rotate(1deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
}

/* Growing Animation for Hover */
.grow-hover {
    transition: transform 0.4s var(--ease-breeze);
}

.grow-hover:hover {
    transform: scale(1.03);
}

/* Nature Button Styles */
.btn-nature {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-ocean) 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-nature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-nature:hover::before {
    left: 100%;
}

/* Organic Shadow on Hover */
.shadow-nature {
    transition: box-shadow 0.4s var(--ease-breeze), transform 0.4s var(--ease-breeze);
}

.shadow-nature:hover {
    box-shadow: 
        0 20px 40px rgba(64, 145, 108, 0.15),
        0 0 0 1px rgba(64, 145, 108, 0.1);
    transform: translateY(-4px);
}

/* Water Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.ripple:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Section with Nature Background */
.section-nature {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
    position: relative;
}

/* Organic Divider */
.divider-organic {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(64, 145, 108, 0.3) 20%, 
        rgba(64, 145, 108, 0.5) 50%, 
        rgba(64, 145, 108, 0.3) 80%, 
        transparent 100%
    );
    border: none;
    margin: 3rem 0;
}

/* Floating Animation for Decorative Elements */
.float-gentle {
    animation: floatGentle 6s ease-in-out infinite;
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Moss/Earth Texture */
.texture-earth {
    background-color: var(--color-bg-warm);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(64, 145, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 196, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(224, 122, 95, 0.02) 0%, transparent 50%);
}

/* Branch/Tree Decorative Lines */
.branch-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, var(--color-forest) 0%, transparent 100%);
    border-radius: 2px;
    opacity: 0.5;
}

/* Nature-inspired Underline */
.underline-nature {
    position: relative;
    display: inline-block;
}

.underline-nature::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-forest), var(--color-sand));
    border-radius: 3px;
    opacity: 0.7;
}

/* Seasonal Color Accents for Case Studies */
.case-spring { --case-accent: #52b788; }
.case-summer { --case-accent: #e07a5f; }
.case-autumn { --case-accent: #e9c46a; }
.case-winter { --case-accent: #87ceeb; }

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Color - Nature Theme */
::selection {
    background: rgba(82, 183, 136, 0.3);
    color: var(--color-text);
}

::-moz-selection {
    background: rgba(82, 183, 136, 0.3);
    color: var(--color-text);
}

/* Focus Styles - Nature Glow */
:focus-visible {
    outline: 2px solid var(--color-forest);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-warm);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-forest), var(--color-ocean));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ========================================
   Responsive Design - No Horizontal Scroll
   ======================================== */

/* Base responsive settings */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, video, svg {
    max-width: 100%;
    height: auto;
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo-img {
        height: 32px;
        max-width: 100px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        height: 60px;
    }
    
    .logo-img {
        height: 28px;
        max-width: 80px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
}

/* ========================================
   Energetic Hero - Nature Vibes
   ======================================== */
.hero-energetic {
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(250, 249, 247, 1) 0%, 
        rgba(245, 250, 245, 0.98) 50%,
        rgba(250, 247, 245, 0.95) 100%
    );
}

/* Nature Energy Field */
.nature-energy-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.energy-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.4) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 { width: 60px; height: 60px; top: 20%; left: 10%; animation-delay: 0s; }
.orb-2 { width: 40px; height: 40px; top: 60%; left: 85%; animation-delay: 2s; }
.orb-3 { width: 80px; height: 80px; top: 40%; left: 75%; animation-delay: 4s; }
.orb-4 { width: 30px; height: 30px; top: 15%; left: 70%; animation-delay: 1s; }
.orb-5 { width: 50px; height: 50px; top: 70%; left: 20%; animation-delay: 3s; }
.orb-6 { width: 35px; height: 35px; top: 30%; left: 25%; animation-delay: 5s; }

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translate(20px, -30px) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: translate(-10px, -50px) scale(1.2); 
        opacity: 0.4;
    }
    75% { 
        transform: translate(30px, -20px) scale(1.1); 
        opacity: 0.5;
    }
}

/* Floating Emojis */
.floating-emoji {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    z-index: 1;
    animation: emojiFloat 12s ease-in-out infinite;
}

.emoji-butterfly {
    top: 15%;
    left: 5%;
    font-size: 1.8rem;
    animation: butterflyPath 15s ease-in-out infinite;
}

.emoji-bird {
    top: 25%;
    right: 8%;
    font-size: 1.6rem;
    animation: birdFly 18s ease-in-out infinite;
}

.emoji-leaf {
    top: 65%;
    left: 8%;
    font-size: 1.5rem;
    animation: leafFlutter 10s ease-in-out infinite;
}

.emoji-flower {
    top: 45%;
    right: 12%;
    font-size: 1.8rem;
    animation: flowerBob 8s ease-in-out infinite;
}

.emoji-sun {
    top: 8%;
    right: 20%;
    font-size: 2.2rem;
    animation: sunPulse 6s ease-in-out infinite;
}

.emoji-sparkle {
    top: 35%;
    left: 15%;
    font-size: 1.2rem;
    animation: sparkleBlink 4s ease-in-out infinite;
}

.emoji-sprout {
    top: 75%;
    right: 5%;
    font-size: 1.4rem;
    animation: sproutGrow 7s ease-in-out infinite;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

@keyframes butterflyPath {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(20deg); }
    50% { transform: translate(60px, -20px) rotate(-10deg); }
    75% { transform: translate(30px, -50px) rotate(25deg); }
}

@keyframes birdFly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -30px) rotate(-10deg); }
    50% { transform: translate(-40px, -15px) rotate(5deg); }
    75% { transform: translate(-20px, -35px) rotate(-15deg); }
}

@keyframes leafFlutter {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    33% { transform: translateX(15px) rotate(20deg); }
    66% { transform: translateX(-10px) rotate(-10deg); }
}

@keyframes flowerBob {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-15px) scale(1.1) rotate(10deg); }
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.15); filter: brightness(1.2); }
}

@keyframes sparkleBlink {
    0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

@keyframes sproutGrow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

/* Nature Particles Trail */
.nature-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.trail-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(82, 183, 136, 0.5);
    border-radius: 50%;
    animation: trailMove 20s linear infinite;
}

.trail-particle:nth-child(1) { top: 30%; left: 20%; animation-delay: 0s; }
.trail-particle:nth-child(2) { top: 50%; left: 60%; animation-delay: 2.5s; }
.trail-particle:nth-child(3) { top: 20%; left: 80%; animation-delay: 5s; }
.trail-particle:nth-child(4) { top: 70%; left: 40%; animation-delay: 7.5s; }
.trail-particle:nth-child(5) { top: 40%; left: 30%; animation-delay: 10s; }
.trail-particle:nth-child(6) { top: 60%; left: 70%; animation-delay: 12.5s; }
.trail-particle:nth-child(7) { top: 25%; left: 50%; animation-delay: 15s; }
.trail-particle:nth-child(8) { top: 80%; left: 15%; animation-delay: 17.5s; }

@keyframes trailMove {
    0% { transform: translateX(-100px) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100px)) translateY(-50px); opacity: 0; }
}

/* Animated Vines */
.hero-vine {
    position: absolute;
    font-size: 4rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    animation: vineDance 8s ease-in-out infinite;
}

.vine-left {
    top: 10%;
    left: -30px;
    transform: rotate(-20deg);
}

.vine-right {
    bottom: 20%;
    right: -30px;
    transform: rotate(20deg) scaleX(-1);
    animation-delay: 2s;
}

@keyframes vineDance {
    0%, 100% { transform: rotate(-20deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.05); }
}

.vine-right {
    animation-name: vineDanceRight;
}

@keyframes vineDanceRight {
    0%, 100% { transform: rotate(20deg) scaleX(-1) scale(1); }
    50% { transform: rotate(10deg) scaleX(-1) scale(1.05); }
}

/* Wind Lines */
.wind-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(82, 183, 136, 0.2), transparent);
    pointer-events: none;
    z-index: 0;
    animation: windBlow 12s ease-in-out infinite;
}

.wind-1 {
    top: 35%;
    left: 0;
    width: 200px;
    animation-delay: 0s;
}

.wind-2 {
    top: 55%;
    right: 0;
    width: 150px;
    animation-delay: 4s;
}

.wind-3 {
    top: 75%;
    left: 10%;
    width: 180px;
    animation-delay: 8s;
}

@keyframes windBlow {
    0%, 100% { transform: translateX(0); opacity: 0.2; }
    50% { transform: translateX(30px); opacity: 0.4; }
}

/* Energetic Hero Content */
.hero-content-energetic {
    position: relative;
    z-index: 2;
}

.hero-greeting-energetic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.greeting-wave {
    display: inline-block;
    font-size: 1.5rem;
    animation: waveHand 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes waveHand {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-10deg); }
}

.name-animate {
    display: inline-block;
    animation: nameGlow 4s ease-in-out infinite;
}

@keyframes nameGlow {
    0%, 100% { 
        text-shadow: 0 0 0 transparent;
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(82, 183, 136, 0.3);
        filter: brightness(1.05);
    }
}

.role-animate {
    display: inline-block;
    animation: roleFade 5s ease-in-out infinite;
}

@keyframes roleFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-desc-energetic {
    position: relative;
}

.nature-word {
    color: var(--color-forest);
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.nature-word:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(82, 183, 136, 0.3);
}

.growing-dots {
    display: inline-block;
    color: var(--color-forest);
    animation: dotsPulse 2s ease-in-out infinite;
}

@keyframes dotsPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Energetic Buttons */
.hero-cta-energetic .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-pulse {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(82, 183, 136, 0); }
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(82, 183, 136, 0.3);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-pulse:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-float {
    animation: btnFloat 4s ease-in-out infinite;
}

@keyframes btnFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-float:hover {
    animation: none;
    transform: translateY(-4px);
}

.btn-emoji {
    font-size: 1.2rem;
    animation: emojiWiggle 2s ease-in-out infinite;
}

@keyframes emojiWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Professional Elements */
.professional-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d6a4f;
}

.status-badge.available {
    background: rgba(82, 183, 136, 0.15);
    border-color: rgba(82, 183, 136, 0.4);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #52b788;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.exp-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(224, 122, 95, 0.1);
    border: 1px solid rgba(224, 122, 95, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #c75146;
}

.skills-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid rgba(45, 106, 79, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d6a4f;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(82, 183, 136, 0.1);
    border-color: rgba(82, 183, 136, 0.3);
    transform: translateY(-2px);
}

/* Scroll Indicator Animation */
.scroll-bounce {
    animation: scrollBounce 2s infinite, scrollGlow 3s ease-in-out infinite;
}

@keyframes scrollGlow {
    0%, 100% { border-color: var(--color-border); }
    50% { border-color: rgba(82, 183, 136, 0.5); }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 1.5rem 60px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .floating-emoji {
        font-size: 1.2rem;
    }
    
    .emoji-butterfly, .emoji-bird {
        display: none;
    }
    
    .hero-vine {
        font-size: 2.5rem;
    }
    
    .organic-blob {
        opacity: 0.3 !important;
    }
    
    .blob-1 {
        width: 300px;
        height: 300px;
    }
    
    .blob-2 {
        width: 200px;
        height: 200px;
    }
    
    .blob-3 {
        width: 150px;
        height: 150px;
    }
}

/* Work Grid Responsive */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study {
        max-width: 100%;
    }
}

/* Process Steps Responsive */
@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}

/* About Section Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-link {
        display: block;
        text-align: center;
        padding: 0.75rem;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
    }
}

/* Container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Professional Elements Responsive */
@media (max-width: 768px) {
    .professional-badges {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .status-badge,
    .exp-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .skills-tags {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .skills-tags {
        justify-content: center;
    }
}

/* Prevent overflow on all sections */
section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Organic blobs positioning for mobile */
@media (max-width: 768px) {
    .organic-blob.blob-1 {
        top: -100px;
        right: -50px;
    }
    
    .organic-blob.blob-2 {
        bottom: 50px;
        left: -75px;
    }
}

/* Ensure images don't cause overflow */
.case-study-image,
.case-study-placeholder,
.about-image,
.about-placeholder {
    max-width: 100%;
    overflow: hidden;
}

/* ========================================
   Botanical Nature Elements
   ======================================== */

/* Botanical Flowers */
.botanical-flower {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.flower-1 {
    top: 15%;
    right: 15%;
    animation: gentleSway 8s ease-in-out infinite;
}

.flower-2 {
    bottom: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation: gentleSway 10s ease-in-out infinite reverse;
}

@keyframes gentleSway {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.05);
    }
}

/* Floating Leaves */
.floating-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 1;
}

.leaf-1 {
    top: 60%;
    right: 25%;
    animation: floatAndRotate 12s ease-in-out infinite;
}

.leaf-2 {
    top: 30%;
    left: 20%;
    animation: floatAndRotate 15s ease-in-out infinite reverse;
}

@keyframes floatAndRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(45deg);
    }
    50% {
        transform: translateY(-5px) rotate(90deg);
    }
    75% {
        transform: translateY(-20px) rotate(135deg);
    }
}

/* Tree Branches */
.tree-branch {
    position: absolute;
    width: 150px;
    height: 225px;
    pointer-events: none;
    z-index: 0;
}

.branch-left {
    left: -50px;
    bottom: 10%;
    opacity: 0.6;
}

.branch-right {
    right: -50px;
    bottom: 20%;
    opacity: 0.6;
    transform: scaleX(-1);
}

/* Falling Petals Animation */
.falling-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.petal {
    position: absolute;
    top: -20px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.6) 0%, transparent 70%);
    border-radius: 50% 0 50% 50%;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%) rotate(360deg);
        opacity: 0;
    }
}

/* Nature Vines Decoration */
.nature-vine {
    position: absolute;
    width: 100px;
    height: 200px;
    pointer-events: none;
}

.vine-left {
    left: 0;
    top: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 0 Q30 50 50 100 Q70 150 50 200' stroke='%2352b788' stroke-width='2' fill='none' opacity='0.2'/%3E%3Ccircle cx='50' cy='30' r='5' fill='%2340916c' opacity='0.3'/%3E%3Ccircle cx='35' cy='70' r='4' fill='%2374c69d' opacity='0.25'/%3E%3Ccircle cx='65' cy='110' r='6' fill='%2352b788' opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.6;
}

/* Flower Garden Pattern */
.flower-garden {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40'%3E%3Cg opacity='0.15'%3E%3Cpath d='M60 25 Q55 15 60 5 Q65 15 60 25' fill='%2352b788'/%3E%3Cpath d='M60 25 Q70 20 75 30 Q65 30 60 25' fill='%23e07a5f'/%3E%3Cpath d='M60 25 Q50 20 45 30 Q55 30 60 25' fill='%23e9c46a'/%3E%3Ccircle cx='60' cy='20' r='3' fill='%232d6a4f'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 120px 40px;
    pointer-events: none;
}

/* Botanical Button Accents */
.btn-botanical {
    position: relative;
    overflow: visible;
}

.btn-botanical::before,
.btn-botanical::after {
    content: '🌿';
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-botanical::before {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-botanical::after {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-botanical:hover::before,
.btn-botanical:hover::after {
    opacity: 0.6;
}

/* Organic Card with Floral Border */
.card-floral {
    position: relative;
}

.card-floral::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(82, 183, 136, 0.3) 0%, 
        rgba(224, 122, 95, 0.2) 50%, 
        rgba(233, 196, 106, 0.3) 100%
    );
    border-radius: 22px 42px 32px 52px / 42px 32px 52px 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-floral:hover::before {
    opacity: 1;
}

/* Case Study Illustrations */
.case-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    opacity: 0.9;
    transition: all 0.4s var(--ease-breeze);
}

.case-study:hover .case-illustration {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.case-study-placeholder {
    position: relative;
    overflow: hidden;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Extra Large Screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

/* Large Screens (1200px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Medium Screens (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        gap: 1rem;
    }
    
    .timeline-step {
        padding: 1rem;
    }
    
    .timeline-step h4 {
        font-size: 0.9rem;
    }
    
    .timeline-step p {
        font-size: 0.75rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.5rem;
    }
    
    .container {
        max-width: 720px;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-role {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .skills-tags {
        gap: 0.4rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Work Grid */
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Process Timeline - Vertical */
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-step {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .timeline-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Wireframe Grid */
    .wireframe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .wireframe-card {
        padding: 1rem;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Section Adjustments */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Case Study Specific */
    .case-study-hero h1 {
        font-size: 2.25rem;
    }
    
    .case-study-hero .lead {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    /* Organic Blobs */
    .organic-blob {
        opacity: 0.3 !important;
        transform: scale(0.7);
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Navigation - Mobile Menu */
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-logo a {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-role {
        font-size: 1rem;
    }
    
    .hero-greeting {
        font-size: 1rem;
    }
    
    /* CTA Buttons */
    .hero-cta .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Work Cards */
    .work-card {
        min-height: 300px;
    }
    
    .work-card-title {
        font-size: 1.25rem;
    }
    
    .work-card-description {
        font-size: 0.875rem;
    }
    
    /* Wireframe Grid */
    .wireframe-grid {
        grid-template-columns: 1fr;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-item {
        padding: 1.5rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-links {
        gap: 1rem;
    }
    
    .contact-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-role {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .skills-tags {
        gap: 0.3rem;
    }
    
    .skill-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .case-study-hero h1 {
        font-size: 1.75rem;
    }
    
    .case-study-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 0.9rem;
    }
    
    .timeline-step h4 {
        font-size: 0.85rem;
    }
    
    .timeline-step p {
        font-size: 0.7rem;
    }
    
    .wireframe-card h5 {
        font-size: 0.85rem;
    }
    
    .wireframe-card p {
        font-size: 0.75rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra Small (below 320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-role {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .organic-blob {
        filter: blur(0.5px);
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .organic-blob {
        animation: none;
    }
    
    .botanical-flower {
        animation: none;
    }
    
    .floating-leaf {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-background: #1a1a1a;
        --color-text: #f5f5f5;
        --color-text-light: #a0a0a0;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-cta,
    .organic-blob,
    .botanical-flower,
    .floating-leaf,
    .wind-line,
    .hero-scroll {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Responsive Botanical Elements */
@media (max-width: 768px) {
    .botanical-flower {
        width: 50px;
        height: 50px;
        opacity: 0.7;
    }
    
    .flower-1 {
        right: 5%;
    }
    
    .flower-2 {
        left: 5%;
        width: 40px;
        height: 40px;
    }
    
    .floating-leaf {
        width: 20px;
        height: 20px;
    }
    
    .tree-branch {
        width: 100px;
        height: 150px;
    }
    
    .branch-left {
        left: -30px;
    }
    
    .branch-right {
        right: -30px;
    }
    
    /* Case study illustrations mobile */
    .case-illustration {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   Process Growth Timeline with Emojis
   ======================================== */

.process-growth-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(44, 62, 45, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Safari fallback for process-growth-timeline */
@supports not (backdrop-filter: blur(10px)) {
    .process-growth-timeline {
        background: rgba(255, 255, 255, 0.9);
    }
}

.growth-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.growth-stage:hover {
    transform: translateY(-5px);
}

.growth-emoji {
    font-size: 2rem;
    animation: gentleBounce 2s ease-in-out infinite;
}

.growth-stage:nth-child(1) .growth-emoji { animation-delay: 0s; }
.growth-stage:nth-child(3) .growth-emoji { animation-delay: 0.5s; }
.growth-stage:nth-child(5) .growth-emoji { animation-delay: 1s; }
.growth-stage:nth-child(7) .growth-emoji { animation-delay: 1.5s; }

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

.growth-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growth-arrow {
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.6;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 0.8; transform: translateX(3px); }
}

/* Responsive Growth Timeline */
@media (max-width: 600px) {
    .process-growth-timeline {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .growth-emoji {
        font-size: 1.5rem;
    }
    
    .growth-label {
        font-size: 0.65rem;
    }
    
    .growth-arrow {
        font-size: 1rem;
    }
}

/* ========================================
   Vibrant About Section - Nature Artist
   ======================================== */

.about-vibrant {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, 
        rgba(250, 249, 247, 1) 0%, 
        rgba(232, 245, 233, 0.9) 30%,
        rgba(255, 243, 224, 0.8) 70%,
        rgba(250, 249, 247, 1) 100%
    );
    overflow: hidden;
}

/* Floating Nature Background */
.about-nature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-flower,
.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatNature 15s ease-in-out infinite;
}

.flower-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.flower-float-2 { top: 30%; right: 8%; animation-delay: -5s; font-size: 2.5rem; }
.flower-float-3 { bottom: 20%; left: 10%; animation-delay: -10s; }
.leaf-float-1 { top: 60%; right: 15%; animation-delay: -3s; }
.leaf-float-2 { bottom: 40%; left: 3%; animation-delay: -8s; }

@keyframes floatNature {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.2;
    }
    25% { 
        transform: translate(20px, -30px) rotate(15deg); 
        opacity: 0.4;
    }
    50% { 
        transform: translate(-10px, -50px) rotate(-10deg); 
        opacity: 0.3;
    }
    75% { 
        transform: translate(15px, -20px) rotate(5deg); 
        opacity: 0.35;
    }
}

/* Vibrant Grid Layout */
.about-vibrant-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Artistic Portrait Section */
.about-art-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.art-portrait-circle {
    position: relative;
    width: 250px;
    height: 250px;
}

.portrait-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(82, 183, 136, 0.2), 
        rgba(233, 196, 106, 0.2)
    );
    border-radius: 50%;
    box-shadow: 
        0 20px 60px rgba(82, 183, 136, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.5);
}

.portrait-emoji {
    font-size: 5rem;
    animation: artistPulse 3s ease-in-out infinite;
}

@keyframes artistPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.portrait-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringSpin 10s linear infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    top: -15px;
    left: -15px;
    border-top-color: #52b788;
    border-right-color: rgba(82, 183, 136, 0.3);
    animation-duration: 12s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    top: -25px;
    left: -25px;
    border-bottom-color: #e9c46a;
    border-left-color: rgba(233, 196, 106, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 320px;
    height: 320px;
    top: -35px;
    left: -35px;
    border-top-color: rgba(224, 122, 95, 0.5);
    animation-duration: 18s;
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Creative Badges */
.creative-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.creative-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.creative-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Vibrant Content */
.about-vibrant-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vibrant-header {
    margin-bottom: 0.5rem;
}

.vibrant-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(82, 183, 136, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    animation: labelGlow 2s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(82, 183, 136, 0); }
    50% { box-shadow: 0 0 20px rgba(82, 183, 136, 0.3); }
}

.vibrant-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

.highlight-nature {
    background: linear-gradient(135deg, #52b788, #74c69d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-nature::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #52b788, #74c69d);
    border-radius: 2px;
    opacity: 0.5;
}

.highlight-art {
    background: linear-gradient(135deg, #e07a5f, #e9c46a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Vibrant Intro */
.vibrant-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.intro-main {
    font-size: 1.25rem;
    line-height: 1.7;
}

.text-bloom {
    color: var(--color-accent);
    font-weight: 600;
    position: relative;
}

.text-bloom::after {
    content: '🌸';
    position: absolute;
    right: -25px;
    top: -5px;
    font-size: 1rem;
    animation: bloomWiggle 2s ease-in-out infinite;
}

@keyframes bloomWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Passion Cards */
.passion-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.passion-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.passion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.passion-card:nth-child(1):hover {
    box-shadow: 0 15px 40px rgba(82, 183, 136, 0.2);
}

.passion-card:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(233, 196, 106, 0.2);
}

.passion-card:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(224, 122, 95, 0.2);
}

.passion-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.passion-card:nth-child(2) .passion-icon {
    animation-delay: -1s;
}

.passion-card:nth-child(3) .passion-icon {
    animation-delay: -2s;
}

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

.passion-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.passion-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Vibrant Stats */
.vibrant-stats {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    border-top: 2px dashed rgba(82, 183, 136, 0.3);
    border-bottom: 2px dashed rgba(82, 183, 136, 0.3);
}

.v-stat {
    text-align: center;
}

.v-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #52b788, #e07a5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.v-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Vibrant Quote */
.vibrant-quote {
    position: relative;
    padding: 2rem 2rem 2rem 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border-left: 4px solid var(--color-accent);
}

.quote-mark {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.vibrant-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feel-alive {
    color: var(--color-accent);
    font-weight: 600;
    position: relative;
}

.feel-alive::after {
    content: '✨';
    position: absolute;
    right: -20px;
    top: -10px;
    font-size: 0.875rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

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

.quote-signature {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* Responsive Vibrant About */
@media (max-width: 968px) {
    .about-vibrant-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-art-portrait {
        order: -1;
    }
    
    .art-portrait-circle {
        width: 200px;
        height: 200px;
    }
    
    .portrait-emoji {
        font-size: 4rem;
    }
    
    .portrait-ring {
        display: none;
    }
    
    .vibrant-title {
        font-size: 2.25rem;
    }
    
    .passion-cards {
        grid-template-columns: 1fr;
    }
    
    .vibrant-stats {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .about-vibrant {
        padding: 80px 0 60px;
    }
    
    .vibrant-title {
        font-size: 1.875rem;
    }
    
    .intro-main {
        font-size: 1.1rem;
    }
    
    .v-number {
        font-size: 2rem;
    }
    
    .floating-flower,
    .floating-leaf {
        font-size: 1.5rem;
    }
}

/* ========================================
   Artistic Process Section - Horizontal
   ======================================== */

.process-artistic {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(250, 249, 247, 1) 0%, 
        rgba(245, 240, 232, 0.8) 50%,
        rgba(250, 249, 247, 1) 100%
    );
}

/* Artistic Background Waves */
.artistic-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.artistic-wave,
.artistic-wave-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    animation: waveFloat 15s ease-in-out infinite;
}

.artistic-wave-2 {
    height: 150px;
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes waveFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* Floating Seeds */
.floating-seed {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(135deg, #e9c46a, #e07a5f);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.4;
    animation: seedFloat 20s ease-in-out infinite;
}

.seed-1 { top: 20%; left: 10%; animation-delay: 0s; }
.seed-2 { top: 60%; right: 15%; animation-delay: -7s; }
.seed-3 { bottom: 30%; left: 20%; animation-delay: -14s; }

@keyframes seedFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, -50px) rotate(180deg); }
    75% { transform: translate(15px, -20px) rotate(270deg); }
}

/* Artistic Header */
.artistic-header {
    position: relative;
    z-index: 1;
}

.artistic-underline {
    position: relative;
    display: inline-block;
}

.artistic-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #52b788 0%, #e9c46a 50%, #e07a5f 100%);
    border-radius: 3px;
    opacity: 0.7;
}

/* Artistic Process Steps - Horizontal Grid */
.artistic-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* Artistic Step Cards */
.art-step {
    position: relative;
    padding: 2.5rem 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px 40px 32px 48px / 40px 32px 48px 32px;
    box-shadow: 
        0 10px 30px rgba(44, 62, 45, 0.08),
        0 0 0 1px rgba(82, 183, 136, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.art-step:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(44, 62, 45, 0.12),
        0 0 0 2px rgba(82, 183, 136, 0.2);
}

/* Step Icon Wrapper */
.step-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

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

/* Artistic Step Number */
.art-step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #52b788, #40916c);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.art-step[data-step="2"] .art-step-number {
    background: linear-gradient(135deg, #40916c, #74c69d);
}

.art-step[data-step="3"] .art-step-number {
    background: linear-gradient(135deg, #e07a5f, #e9c46a);
}

.art-step[data-step="4"] .art-step-number {
    background: linear-gradient(135deg, #2d6a4f, #40916c);
}

/* Artistic Title */
.art-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

/* Artistic Description */
.art-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Step Tags */
.step-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.step-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-accent);
    background: rgba(82, 183, 136, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Responsive Artistic Process */
@media (max-width: 1100px) {
    .artistic-steps {
        gap: 1.5rem;
    }
    
    .art-step {
        padding: 2rem 1.25rem 1.75rem;
    }
    
    .step-icon-wrapper {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 968px) {
    .artistic-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .artistic-steps {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .art-step {
        padding: 2rem 1.5rem;
    }
    
    .artistic-wave,
    .artistic-wave-2 {
        height: 100px;
    }
}

/* ========================================
   Process Timeline (Visual)
   ======================================== */

.section-visual {
    padding: 6rem 0;
    position: relative;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.section-title span {
    color: var(--color-accent);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary), var(--color-accent));
    border-radius: 3px;
    opacity: 0.3;
}

.timeline-step {
    text-align: center;
    padding: 1rem;
    background: var(--color-card);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    width: 180px;
    position: relative;
    z-index: 2;
}

.timeline-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Step Icon SVGs */
.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.75rem;
    display: block;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.timeline-step:hover .step-icon svg {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.timeline-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.timeline-step p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Wireframe Grid */
.wireframe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.wireframe-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.wireframe-card:hover {
    transform: translateY(-5px);
}

.wireframe-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wireframe-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.6;
}

.wireframe-card h5 {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

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

/* Responsive */
@media (max-width: 968px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-step {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .wireframe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wireframe-grid {
        grid-template-columns: 1fr;
    }
    
    .container-wide {
        padding: 0 1rem;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Extra Large Screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

/* Large Screens (1200px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Medium Screens (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        gap: 1rem;
    }
    
    .timeline-step {
        padding: 1rem;
    }
    
    .timeline-step h4 {
        font-size: 0.9rem;
    }
    
    .timeline-step p {
        font-size: 0.75rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.5rem;
    }
    
    .container {
        max-width: 720px;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-role {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .skills-tags {
        gap: 0.4rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Work Grid */
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Process Timeline - Vertical */
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-step {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .timeline-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Wireframe Grid */
    .wireframe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .wireframe-card {
        padding: 1rem;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Section Adjustments */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Case Study Specific */
    .case-study-hero h1 {
        font-size: 2.25rem;
    }
    
    .case-study-hero .lead {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    /* Organic Blobs */
    .organic-blob {
        opacity: 0.3 !important;
        transform: scale(0.7);
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Navigation - Mobile Menu */
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-logo a {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-role {
        font-size: 1rem;
    }
    
    .hero-greeting {
        font-size: 1rem;
    }
    
    /* CTA Buttons */
    .hero-cta .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Work Cards */
    .work-card {
        min-height: 300px;
    }
    
    .work-card-title {
        font-size: 1.25rem;
    }
    
    .work-card-description {
        font-size: 0.875rem;
    }
    
    /* Wireframe Grid */
    .wireframe-grid {
        grid-template-columns: 1fr;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-item {
        padding: 1.5rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-links {
        gap: 1rem;
    }
    
    .contact-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Small (320px - 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-role {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .skills-tags {
        gap: 0.3rem;
    }
    
    .skill-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .case-study-hero h1 {
        font-size: 1.75rem;
    }
    
    .case-study-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 0.9rem;
    }
    
    .timeline-step h4 {
        font-size: 0.85rem;
    }
    
    .timeline-step p {
        font-size: 0.7rem;
    }
    
    .wireframe-card h5 {
        font-size: 0.85rem;
    }
    
    .wireframe-card p {
        font-size: 0.75rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra Small (below 320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-role {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .organic-blob {
        filter: blur(0.5px);
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .organic-blob {
        animation: none;
    }
    
    .botanical-flower {
        animation: none;
    }
    
    .floating-leaf {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-background: #1a1a1a;
        --color-text: #f5f5f5;
        --color-text-light: #a0a0a0;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-cta,
    .organic-blob,
    .botanical-flower,
    .floating-leaf,
    .wind-line,
    .hero-scroll {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ========================================
   Nature Custom Cursor
   ======================================== */

/* Only apply to desktop */
@media (pointer: fine) {
    body {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 4 L18 14 L28 16 L18 18 L16 28 L14 18 L4 16 L14 14 Z' fill='%2352b788' stroke='%232d6a4f' stroke-width='1'/%3E%3C/svg%3E") 16 16, auto;
    }
    
    a, button, .btn, .nav-link, .contact-link, .case-study-link {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 4 L18 14 L28 16 L18 18 L16 28 L14 18 L4 16 L14 14 Z' fill='%23e07a5f' stroke='%23c0392b' stroke-width='1'/%3E%3C/svg%3E") 16 16, pointer;
    }
}

