:root {
    --primary: #2D5A27;
    /* Forest green */
    --primary-light: #8BA888;
    /* Sage green */
    --accent-yellow: #F4E8B0;
    /* Soft yellow (sunlight) */
    --accent-pink: #8B6B5D;
    /* Earth brown (renamed variable conceptually) */
    --bg-light: #F6F3ED;
    /* Warm beige */
    --text-dark: #2C352B;
    --text-light: #5C6B5A;

    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Lato', 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography Details */
h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 em {
    font-style: italic;
    color: var(--primary-light);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(45, 90, 39, 0.5);
}

.btn-primary:hover {
    background-color: #1a3816;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(45, 90, 39, 0.6);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(249, 248, 244, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    /* Optional, depending on logo */
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-top: 0.2rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    padding: 0.2rem;
}

.lang-btn.active {
    color: var(--primary);
}

.lang-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #F9F8F4 0%, #EFEBE1 100%);
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    width: 60vw;
    height: 60vw;
    background: var(--accent-yellow);
    top: -20%;
    right: -10%;
    border-radius: 50%;
}

.shape-2 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-pink);
    bottom: -10%;
    left: -10%;
    border-radius: 50%;
    animation-delay: -5s;
}

.shape-3 {
    width: 40vw;
    height: 40vw;
    background: rgba(137, 159, 138, 0.4);
    top: 20%;
    left: 20%;
    border-radius: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(5%, 10%) rotate(10deg) scale(1.05);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-dark);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-dark);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -15px);
    }

    60% {
        transform: translate(-50%, -7px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* About Section */
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.icon {
    font-size: 1.5rem;
    background: var(--bg-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-visual {
    position: relative;
    perspective: 1000px;
}

.visual-card {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.visual-card:hover {
    transform: rotateY(0) rotateX(0);
}

.visual-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.abstract-tree {
    position: relative;
    width: 60%;
    height: 60%;
}

.tree-trunk {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 80px;
    background: var(--primary);
    border-radius: 10px;
    z-index: 2;
}

.tree-canopy {
    position: absolute;
    bottom: calc(20% + 50px);
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: var(--accent-yellow);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.8;
    z-index: 1;
    animation: morph 8s ease-in-out infinite alternate;
}

.tree-canopy-2 {
    position: absolute;
    bottom: calc(20% + 40px);
    left: 45%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: var(--primary-light);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.6;
    z-index: 0;
    animation: morph 10s ease-in-out infinite alternate-reverse;
}

.tree-roots {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    border-top: 4px solid var(--accent-pink);
    border-radius: 50% 50% 0 0;
    opacity: 0.8;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Removed obsolete sections */

/* Footer */
.footer {
    background: white;
    padding: 6rem 5% 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    transform: translateX(-30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-right.active,
.fade-left.active {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {

    .layout-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* simple mobile nav override */
    }

    .hamburger {
        display: flex;
    }
}