:root {
    --olive-dark: #5a6f4a;
    --olive-medium: #7a9063;
    --olive-light: #a8ba94;
    --cream: #f5f3ef;
    --warm-grey: #d4cfca;
    --brown-accent: #8b7355;
    --brown-light: #b89f7e;
    --text-dark: #3d4936;
    --white: #fefefe;
    --shadow-subtle: rgba(90, 111, 74, 0.1);
    --shadow-medium: rgba(90, 111, 74, 0.2);
    --shadow-strong: rgba(90, 111, 74, 0.3);
}

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

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-grey) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Organic texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(122, 144, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    box-shadow: 0 4px 20px var(--shadow-subtle);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--olive-dark);
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    margin-left: 8px;
    font-size: 1.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--olive-medium), var(--brown-accent));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--olive-dark);
    background: rgba(122, 144, 99, 0.08);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a.active {
    color: var(--olive-dark);
    font-weight: 700;
    background: rgba(122, 144, 99, 0.12);
}

/* ============================================
   HOME PAGE - HERO SECTION
   ============================================ */

.hero {
    position: relative;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area nicely */
    display: block;
}

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

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--olive-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h1 strong {
    font-weight: 600;
    color: var(--brown-accent);
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px var(--shadow-strong);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 111, 74, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: linear-gradient(135deg, var(--olive-light), var(--warm-grey));
    aspect-ratio: 4/5;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--olive-light) 0%, var(--brown-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.placeholder-image::after {
    content: '🏡';
    opacity: 0.3;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.features h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--olive-dark);
    margin-bottom: 4rem;
    font-weight: 400;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(122, 144, 99, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--olive-medium), var(--brown-accent));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--olive-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.85;
}

/* ============================================
   SERVICES PREVIEW SECTION
   ============================================ */

.services-preview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 5%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.services-preview h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--olive-dark);
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.service-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--olive-light);
    box-shadow: 0 10px 30px var(--shadow-subtle);
}

.service-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--olive-dark);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ============================================
   PAGE HERO (About & Contact Pages)
   ============================================ */

.page-hero {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--olive-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ============================================
   ABOUT PAGE CONTENT
   ============================================ */

.about-content {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.content-image {
    position: relative;
}

.placeholder-about {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--olive-light), var(--brown-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.placeholder-about::after {
    content: '🌱';
    opacity: 0.3;
}

.content-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--olive-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0.9;
}

/* Values Section */
.values-section {
    margin-bottom: 6rem;
}

.values-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--olive-dark);
    margin-bottom: 3rem;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(122, 144, 99, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.7;
    opacity: 0.85;
}

/* Team/Founder Section */
.team-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--olive-dark);
    margin-bottom: 3rem;
    font-weight: 400;
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(122, 144, 99, 0.2);
    box-shadow: 0 10px 30px var(--shadow-subtle);
}

.founder-image {
    position: relative;
}

.placeholder-founder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--olive-medium), var(--brown-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.placeholder-founder::after {
    content: '👤';
    opacity: 0.3;
}

.founder-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--olive-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--brown-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--olive-dark);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--olive-dark);
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--brown-accent);
    opacity: 0.8;
}

.business-hours {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(122, 144, 99, 0.2);
}

.business-hours h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--olive-dark);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(122, 144, 99, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(122, 144, 99, 0.2);
    box-shadow: 0 10px 30px var(--shadow-subtle);
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--olive-dark);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(122, 144, 99, 0.2);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive-medium);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(122, 144, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--olive-medium), var(--olive-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px var(--shadow-strong);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 111, 74, 0.4);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(122, 144, 99, 0.2);
    color: var(--olive-dark);
    display: block;
}

.form-message.error {
    background: rgba(200, 100, 100, 0.2);
    color: #a03030;
    display: block;
}

/* ============================================
   FEATURED WORK GALLERY (examples.html)
   ============================================ */

.featured-work-gallery {
    max-width: 1400px;
    margin: 2rem auto 5rem;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px var(--shadow-subtle);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
}

.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e2dfd9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.03);
}

.card-caption {
    padding: 1.5rem;
}

.card-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 0.5rem;
}

.card-caption p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 1.5rem;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .card-caption {
        padding: 1rem 1.2rem 1.4rem;
    }
    .card-caption h3 {
        font-size: 1.3rem;
    }
}

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

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(90, 111, 74, 0.95);
    color: var(--cream);
    padding: 3rem 5%;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

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

.footer-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .founder-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .features h2,
    .services-preview h2,
    .values-section h2,
    .team-section h2 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    /* Stack logo above navigation on mobile */
    nav {
        flex-direction: column !important;
        gap: 1rem;
        align-items: center;
    }
    
    .logo {
        font-size: 1.4rem;
        text-align: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}
