/* ============================================
   WAVELENGTH PSYCHOLOGY - ULTRA DYNAMIC CSS
   Award-Winning Interactive Design
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES & DESIGN TOKENS
   ============================================ */
:root {
    /* Warm, Earthy Color Palette */
    --teal-900: #0d5f66;
    --teal-800: #0f7680;
    --teal-700: #158a96;
    --teal-600: #1a9fad;
    --teal-500: #2ab4c3;
    --teal-400: #55c4d0;
    --teal-300: #80d4dd;
    --teal-200: #b3e5ea;
    --teal-100: #e6f7f9;
    --teal-50: #f0fcfd;

    --terracotta-900: #8b4513;
    --terracotta-800: #a0522d;
    --terracotta-700: #cd6839;
    --terracotta-600: #d47845;
    --terracotta-500: #e68a52;
    --terracotta-400: #eca976;
    --terracotta-300: #f2c49a;
    --terracotta-100: #fef5ef;

    --cream-50: #fffef9;
    --cream-100: #fdfbf3;
    --cream-200: #faf7ed;
    --cream-300: #f5f0e0;
    --cream-400: #ebe4d1;

    --sage-900: #3d4f3d;
    --sage-800: #4f6355;
    --sage-700: #5f7862;
    --sage-600: #7a9478;
    --sage-500: #92a88f;

    --charcoal-900: #1a1d1f;
    --charcoal-800: #2c3136;
    --charcoal-700: #3e454d;
    --charcoal-600: #525a64;
    --charcoal-500: #6d7782;
    --charcoal-400: #8a939e;
    --charcoal-300: #a8b1bc;
    --charcoal-200: #c7cfd8;
    --charcoal-100: #e5e8ec;

    /* Semantic Colors */
    --primary: var(--teal-600);
    --primary-dark: var(--teal-800);
    --primary-light: var(--teal-400);
    --accent: var(--terracotta-500);
    --accent-light: var(--terracotta-300);
    --background: var(--cream-50);
    --surface: #ffffff;
    --text-primary: var(--charcoal-900);
    --text-secondary: var(--charcoal-600);
    --text-tertiary: var(--charcoal-400);

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.12);
    --shadow-warm: 0 10px 30px rgba(230, 138, 82, 0.15), 0 4px 12px rgba(26, 159, 173, 0.1);
    --shadow-glow: 0 0 20px rgba(26, 159, 173, 0.3), 0 0 40px rgba(26, 159, 173, 0.2);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    position: relative;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    mix-blend-mode: overlay;
}


/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-wave {
    font-size: 4rem;
    animation: wave-wiggle 1.5s ease-in-out infinite;
    margin-bottom: 1rem;
}

.loading-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--terracotta-500));
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
    font-weight: 500;
    line-height: 1.1;
}

h2 {
    font-size: clamp(var(--text-3xl), 6vw, var(--text-6xl));
    font-weight: 500;
}

h3 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
}

h4 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
}

p {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

strong, b {
    font-weight: 600;
    color: var(--text-primary);
}

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

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-3xl);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(255, 254, 249, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(141, 167, 173, 0.12);
}

.nav.scrolled {
    background: rgba(255, 254, 249, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-container {
        padding: var(--space-md) var(--space-2xl);
    }
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--teal-800);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all var(--transition-base);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-600), var(--terracotta-500));
    transition: width var(--transition-slow);
}

.logo:hover::after {
    width: 100%;
}

.logo-wave {
    font-size: 1.75rem;
    margin-right: 0.25rem;
    display: inline-block;
    color: var(--teal-600);
    animation: wave-wiggle 3s ease-in-out infinite;
}

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

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

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color var(--transition-base);
    text-transform: uppercase;
    font-size: 0.8125rem;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.65rem 1.75rem;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-cta::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 var(--transition-slow);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    transition: transform var(--transition-base);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION - ORGANIC & BREATHING
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-2xl)) var(--space-lg) var(--space-3xl);
    overflow: hidden;
    background: var(--cream-50);
}

/* Breathing Background Flow */
.hero-background-flow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, var(--teal-100), transparent 60%),
                radial-gradient(circle at 80% 20%, var(--terracotta-100), transparent 50%);
    opacity: 0.6;
    animation: breathe 10s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes breathe {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* Hero Dots Canvas */
.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--teal-700);
    transform: translateX(-50%) translateY(5px);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--teal-600);
    border-radius: 12px;
    position: relative;
    opacity: 0.6;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--teal-600);
    border-radius: 2px;
    animation: scroll-down 2s ease-in-out infinite;
}

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

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--teal-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal-800);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(26, 159, 173, 0.1);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.highlight-organic {
    position: relative;
    color: var(--teal-700);
}

.highlight-organic::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 0.1em;
    width: 110%;
    height: 0.3em;
    background: var(--terracotta-300);
    opacity: 0.4;
    z-index: -1;
    border-radius: 3px;
    transform: rotate(-1deg);
}

.hero-subtitle {
    font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================
   BUTTONS - MAGNETIC & RIPPLE EFFECTS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-size: var(--text-base);
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--teal-700);
    border: 2px solid var(--teal-600);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--teal-600);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-float {
    animation: float-subtle 3s ease-in-out infinite;
}

.btn-float:nth-child(2) {
    animation-delay: 1.5s;
}

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

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-full {
    width: 100%;
}

/* ============================================
   STATS SECTION - ANIMATED COUNTERS
   ============================================ */
.stats-section {
    padding: var(--space-3xl) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--cream-100), var(--teal-50));
    border-radius: var(--radius-2xl);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 159, 173, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::before {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--teal-300);
    box-shadow: var(--shadow-warm);
}

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal-700), var(--terracotta-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   PHILOSOPHY BANNER
   ============================================ */
.philosophy-banner {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.banner-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ============================================
   HOVER EFFECTS - SIMPLE
   ============================================ */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tilt-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-600);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--terracotta-500), transparent);
    transform: translateY(-50%);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
}

.section-intro {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 700px;
    margin: var(--space-md) auto 0;
    line-height: 1.7;
}

/* ============================================
   MEET SECTION - EDITORIAL LAYOUT
   ============================================ */
.meet-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
}

.bio-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .bio-editorial {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.bio-text {
    padding-right: var(--space-lg);
}

.bio-text h2 {
    margin-bottom: var(--space-lg);
}

.bio-text .lead {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
}

.bio-text p {
    margin-bottom: var(--space-md);
}

.image-frame-organic {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--cream-200);
    background: var(--cream-200);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame-organic:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: var(--shadow-2xl);
}

.image-frame-organic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame-organic:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--terracotta-400), transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.image-frame-organic:hover .image-accent {
    opacity: 0.6;
}

.credentials-mini {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--cream-100), var(--teal-50));
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--teal-600);
}

.cred-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cred-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.cred-badge strong {
    display: block;
    font-size: var(--text-base);
    color: var(--teal-800);
}

.cred-badge p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.vibe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.vibe-tag {
    padding: 0.5rem 1rem;
    background: var(--teal-100);
    color: var(--teal-800);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.vibe-tag:hover {
    background: var(--teal-600);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.intro-text {
    margin-bottom: var(--space-lg);
}

.lead {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
}

.approach-highlight {
    background: linear-gradient(135deg, var(--teal-100), var(--cream-200));
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--teal-600);
    transition: all var(--transition-base);
}

.approach-highlight:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.approach-highlight h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--teal-800);
}

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

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

.cred-item {
    padding: var(--space-md);
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.cred-item:hover {
    background: var(--teal-100);
    transform: translateY(-5px);
}

.cred-item strong {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terracotta-600);
    margin-bottom: 0.5rem;
}

.cred-item p {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   WHO I HELP SECTION
   ============================================ */
.who-i-help {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream-100), var(--surface));
    position: relative;
}

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

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

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

.help-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(141, 167, 173, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--terracotta-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.help-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--teal-50), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-card:hover::after {
    width: 400px;
    height: 400px;
}

.help-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--teal-200);
}

.help-card > * {
    position: relative;
    z-index: 1;
}

.help-card.featured {
    border: 2px solid var(--teal-300);
    background: linear-gradient(135deg, var(--surface), var(--teal-50));
}

.card-icon {
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

.help-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.card-question {
    font-style: italic;
    color: var(--teal-700);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.help-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.card-tags span {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: var(--text-xs);
    font-weight: 500;
    background: var(--teal-100);
    color: var(--teal-800);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-tags span:hover {
    background: var(--teal-600);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.help-card:hover .card-tags span {
    background: var(--teal-200);
}

.demographics {
    text-align: center;
    padding: var(--space-xl);
    background: var(--cream-100);
    border-radius: var(--radius-2xl);
}

.demographics h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.demo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.demo-item {
    padding: 0.5rem 1.25rem;
    background: var(--surface);
    border: 2px solid var(--teal-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--teal-800);
    transition: all 0.2s ease;
    cursor: pointer;
}

.demo-item:hover {
    background: var(--teal-600);
    color: white;
    border-color: var(--teal-600);
    transform: translateY(-2px);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--surface), var(--cream-100));
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

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

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

.approach-card {
    background: linear-gradient(135deg, var(--cream-100), var(--surface));
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 159, 173, 0.1), rgba(230, 138, 82, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.approach-card:hover {
    transform: translateY(-12px) rotate(1deg);
    border-color: var(--teal-300);
    box-shadow: var(--shadow-warm);
}

.approach-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: var(--teal-200);
    opacity: 0.3;
    line-height: 1;
    z-index: 0;
    transition: all var(--transition-slow);
}

.approach-card:hover .approach-number {
    color: var(--terracotta-300);
    transform: scale(1.1);
}

.approach-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.approach-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Progress Bar on Hover */
.card-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--teal-600), var(--terracotta-500));
    transition: width var(--transition-slow);
}

.approach-card:hover .card-progress-bar {
    width: 100%;
}

/* ============================================
   METHODS TABS - INTERACTIVE
   ============================================ */
.methods-section {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--surface);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--teal-100);
}

.methods-section h3 {
    text-align: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.methods-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.method-tab {
    padding: 0.75rem 1.5rem;
    background: var(--cream-100);
    border: 2px solid var(--teal-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--teal-800);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Sora', sans-serif;
}

.method-tab:hover {
    background: var(--teal-100);
    transform: translateY(-2px);
}

.method-tab.active {
    background: var(--teal-600);
    color: white;
    border-color: var(--teal-600);
}

.methods-content {
    position: relative;
    min-height: 300px;
}

.method-panel {
    display: none;
    text-align: center;
    padding: var(--space-xl);
    animation: fadeInUp 0.5s ease;
}

.method-panel.active {
    display: block;
}

.method-icon-large {
    color: var(--teal-600);
    margin: 0 auto var(--space-lg);
    width: 64px;
    height: 64px;
}

.method-panel h4 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.method-panel p {
    font-size: var(--text-base);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ACCORDION - ANIMATED
   ============================================ */
.accordion-container {
    margin-top: var(--space-xl);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Sora', sans-serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: white;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.3);
}

.check-animated {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--terracotta-300);
    margin-right: var(--space-md);
    transition: transform 0.3s ease;
}

.accordion-item.active .check-animated {
    transform: rotate(360deg);
}

.accordion-icon {
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.expect-section {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
    border-radius: var(--radius-2xl);
    color: white;
}

.expect-section h3 {
    font-size: var(--text-3xl);
    color: white;
    text-align: center;
    margin-bottom: var(--space-md);
}

.expect-intro {
    text-align: center;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

/* ============================================
   TIMELINE - JOURNEY SECTION
   ============================================ */
.journey-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--cream-100), var(--teal-50));
}

.journey-timeline {
    max-width: 900px;
    margin: var(--space-3xl) auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--teal-400) 10%, var(--teal-400) 90%, transparent);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .journey-timeline::before {
        left: 30px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-3xl);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--surface);
    border: 4px solid var(--teal-600);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(26, 159, 173, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .timeline-marker {
        left: 30px;
    }
}

.pulse-dot {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(26, 159, 173, 0.1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(26, 159, 173, 0.2);
    }
}

.active-marker {
    background: var(--teal-600);
}

.timeline-item:hover .timeline-marker {
    background: var(--teal-600);
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 12px rgba(26, 159, 173, 0.15);
}

.timeline-content {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin-left: 50%;
    margin-right: 0;
    width: calc(50% - 40px);
}

@media (max-width: 768px) {
    .timeline-content {
        margin-left: 60px;
        width: calc(100% - 80px);
    }
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
}

@media (max-width: 768px) {
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
}

.hover-tilt:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-step {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--teal-100);
    color: var(--teal-800);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.timeline-content h4 {
    font-size: var(--text-xl);
    color: var(--teal-800);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content span {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 400;
}

.journey-quote {
    margin-top: var(--space-3xl);
    text-align: center;
    padding: var(--space-2xl);
    background: var(--surface);
    border-radius: var(--radius-2xl);
    border-left: 4px solid var(--terracotta-500);
    position: relative;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--teal-200);
    opacity: 0.3;
    line-height: 1;
}

.journey-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRACTICAL INFO SECTION
   ============================================ */
.practical-info {
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
}

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

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

.practical-card {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--teal-100);
    position: relative;
    overflow: hidden;
}

.card-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal-400), var(--terracotta-400));
    opacity: 0.1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.practical-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    color: var(--teal-800);
}

.checkmark-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.checkmark-list li {
    padding-left: var(--space-md);
    position: relative;
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-600);
    font-weight: 700;
}

.practical-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.practical-card strong {
    color: var(--teal-700);
}

.availability-schedule {
    margin-top: var(--space-sm);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--teal-100);
}

.schedule-item .day {
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-item .time {
    color: var(--text-secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.connect-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
}

.connect-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.connect-header h2 {
    margin-bottom: var(--space-md);
}

.connect-intro {
    font-size: var(--text-xl);
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .connect-grid {
        grid-template-columns: 1fr 1.3fr;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
    align-items: start;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-method h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-method a {
    color: var(--teal-700);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-method a:hover {
    color: var(--teal-900);
}

.contact-method p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

.contact-method .small {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.crisis-info {
    padding: var(--space-md);
    background: var(--terracotta-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--terracotta-600);
}

.crisis-info p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.crisis-info strong {
    color: var(--terracotta-800);
}

.crisis-info a {
    color: var(--terracotta-700);
    font-weight: 600;
}

/* Form Styles */
.connect-form-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.connect-form h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

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

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}

.animated-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: var(--text-base);
    font-family: 'Sora', sans-serif;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--charcoal-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.animated-input:focus {
    outline: none;
    border-color: var(--teal-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 159, 173, 0.1);
    transform: translateY(-2px);
}

.animated-input:valid {
    border-color: var(--sage-600);
}

textarea.animated-input {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    text-align: center;
    margin-top: var(--space-md);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--charcoal-900), var(--charcoal-800));
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) var(--space-lg) var(--space-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--teal-500) 30%,
        var(--terracotta-500) 70%,
        transparent);
}

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

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: var(--text-base);
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--teal-300);
    transform: translateX(5px);
}

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

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.05);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 71px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 71px);
        background: rgba(255, 254, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: var(--space-2xl) var(--space-lg);
        gap: 0;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }

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

    .nav-links a {
        padding: var(--space-md) 0;
        border-bottom: 1px solid rgba(141, 167, 173, 0.1);
        font-size: var(--text-base);
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

/* ============================================
   ACCESSIBILITY & PREFERENCES
   ============================================ */
::selection {
    background: var(--teal-300);
    color: var(--charcoal-900);
}

*:focus-visible {
    outline: 2px solid var(--teal-500);
    outline-offset: 3px;
    border-radius: 2px;
}

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


/* ============================================
   END OF STYLES
   ============================================ */