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

:root {
    --green-900: #0b3d1e;
    --green-800: #14532d;
    --green-700: #166534;
    --green-600: #15803a;
    --green-500: #16a34a;
    --green-400: #22c55e;
    --green-100: #dcfce7;
    --green-50: #f0fdf4;
    --cream: #f5f5f0;
    --cream-light: #fafaf5;
    --cream-dark: #e8e8e0;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-900: #111111;
    --gray-700: #333333;
    --gray-500: #666666;
    --gray-400: #888888;
    --gray-300: #aaaaaa;
    --gray-200: #d4d4d4;
    --gray-100: #e5e5e5;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-900);
    background: var(--cream-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--green-700);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--green-700);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@media (min-width: 1024px) {
    .container { padding: 0 64px; }
}

/* Typography */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(245, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--green-900);
}

.logo-mark {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--green-700);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--green-700);
    border-radius: 50%;
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav ul {
    display: none;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-700);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--green-700);
}

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

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

.hamburger {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-900);
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 1.5px;
    background: var(--gray-900);
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1.5px;
    background: var(--gray-900);
    transform: rotate(-45deg);
    top: 0;
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .nav ul { display: flex; }
}

/* Mobile Nav */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream-light);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-slow);
        z-index: 999;
    }
    .nav.open { right: 0; }
    .nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .nav a {
        font-size: 1.25rem;
        font-weight: 300;
        letter-spacing: 0.05em;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}

.btn--primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-700);
}

.btn--outline:hover {
    background: var(--green-700);
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn--ghost:hover {
    border-color: var(--green-700);
    color: var(--green-700);
}

.btn--white {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--green-50);
    transform: translateY(-1px);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--ghost-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn--full {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #0b3d1e 0%, 
        #14532d 25%, 
        #166534 50%, 
        #15803a 75%, 
        #16a34a 100%);
    z-index: 0;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(22, 163, 74, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(21, 128, 58, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(11, 61, 30, 0.5) 0%, transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        padding: 0 64px;
    }
}

.hero-content {
    color: var(--white);
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .serif-italic {
    font-size: 1.1em;
    font-weight: 500;
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-actions .btn--ghost {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-actions .btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.03em;
}

.trust-item svg {
    opacity: 0.8;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    z-index: -1;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.float-card-number {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--green-700);
    line-height: 1;
    margin-bottom: 4px;
}

.float-card-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .hero-float-card {
        left: -40px;
        bottom: 60px;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Section Styles */
.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-title .serif-italic {
    font-weight: 500;
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 560px;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--cream-light);
}

.services .container {
    text-align: center;
}

.services .section-sub {
    margin: 0 auto 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
}

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

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

.service-card {
    background: var(--cream-light);
    padding: 40px 32px;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    background: var(--white);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-700);
    transition: var(--transition);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-700);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green-700);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

.service-link span {
    transition: var(--transition);
}

/* About */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.about-images {
    position: relative;
}

.about-img-main {
    overflow: hidden;
    border-radius: 2px;
}

.about-img-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-images:hover .about-img-main img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -20px;
    overflow: hidden;
    border-radius: 2px;
    border: 4px solid var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .about-img-secondary {
        right: -40px;
        bottom: -30px;
    }
}

.about-img-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 7/5;
    object-fit: cover;
    display: block;
}

.about-accent-line {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-left: 1px solid var(--green-700);
    border-top: 1px solid var(--green-700);
    z-index: -1;
}

.about-content .section-label { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.value-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
}

.value-detail {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray-700);
}

.value-detail a {
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.value-detail a:hover {
    color: var(--green-700);
}

.value-divider {
    grid-column: span 1;
    width: 1px;
    background: var(--gray-100);
    align-self: stretch;
}

@media (max-width: 640px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .value-divider { display: none; }
}

/* Why Us */
.why-us {
    padding: 120px 0;
    background: var(--cream);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

.why-us-content .section-sub {
    margin-bottom: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 48px 1px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-100);
}

.feature-row:first-child {
    padding-top: 0;
}

.feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green-700);
    letter-spacing: 0.05em;
    padding-top: 2px;
}

.feature-divider {
    background: var(--gray-100);
}

.feature-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.feature-info p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(22, 163, 74, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(21, 128, 58, 0.3) 0%, transparent 50%);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    color: var(--green-700);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.contact-detail-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-value:hover {
    color: var(--green-700);
}

.map-wrapper {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream-light);
    padding: 40px;
    border: 1px solid var(--gray-100);
}

.form-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.form-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-900);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    outline: none;
    transition: var(--transition);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--green-700);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--green-700);
    border-radius: 50%;
    color: var(--green-700);
}

.form-success h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.form-success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    border-color: rgba(255,255,255,0.4);
}

.footer-brand .logo-mark::after {
    border-color: rgba(255,255,255,0.4);
}

.footer-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 64px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
