:root {
    --emerald: #0f5132;
    --emerald-dark: #0a3d26;
    --emerald-light: #157347;
    --emerald-glow: rgba(15, 81, 50, 0.15);
    --emerald-subtle: rgba(15, 81, 50, 0.05);
    --gold: #c9a84c;
    --gold-light: #d4b965;
    --white: #ffffff;
    --off-white: #f8faf9;
    --cream: #f0f7f4;
    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-600: #4b5563;
    --grey-800: #1f2937;
    --grey-900: #111827;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 81, 50, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--emerald);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: lowercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--grey-600);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.btn-nav {
    background: var(--emerald);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0;
}

.btn-nav:hover {
    background: var(--emerald-dark);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80&auto=format') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(240, 247, 244, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--emerald-glow);
    border: 1px solid rgba(15, 81, 50, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(15, 81, 50, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(15, 81, 50, 0); }
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--emerald);
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--grey-900);
    line-height: 1.05;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero h1 em {
    font-style: italic;
    color: var(--emerald);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 620px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(15, 81, 50, 0.25);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(15, 81, 50, 0.35);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--emerald), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-10px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--grey-900);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: var(--grey-600);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--off-white);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: rgba(15, 81, 50, 0.15);
    box-shadow: 0 8px 40px rgba(15, 81, 50, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald);
    transform: scale(1.05);
}

.service-card:hover .service-icon span {
    filter: brightness(10);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--grey-900);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.7;
}

/* Philosophy */
.philosophy {
    position: relative;
    padding: 160px 0;
    background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&q=80&auto=format') center center / cover no-repeat;
}

.philosophy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 81, 50, 0.92) 0%,
        rgba(15, 81, 50, 0.85) 50%,
        rgba(10, 61, 38, 0.9) 100%
    );
}

.philosophy-content {
    position: relative;
    max-width: 650px;
}

.philosophy-content h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
}

.philosophy-content h2 span {
    color: #a7f3d0;
}

.philosophy-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 300;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 12px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--grey-900);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--grey-600);
}

.detail-icon {
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--grey-200);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--grey-800);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    background: var(--grey-50);
    color: var(--grey-800);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--emerald-glow);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

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

.success-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--grey-900);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-success p {
    color: var(--grey-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--emerald);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 16px;
}

.footer .logo-text {
    color: var(--white);
}

.footer .logo-subtitle {
    color: #a7f3d0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 24px;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content .coming-soon-badge,
.hero-content h1,
.hero-content .subtitle,
.hero-content .btn {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content .coming-soon-badge { animation-delay: 0.2s; }
.hero-content h1 { animation-delay: 0.4s; }
.hero-content .subtitle { animation-delay: 0.6s; }
.hero-content .btn { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-link:not(.btn-nav) {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .philosophy {
        padding: 100px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .logo-bolt {
        font-size: 1.5rem;
    }

    .btn-primary {
        padding: 16px 32px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 32px 24px;
    }
}
