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

:root {
    --deep-forest: #0E2B23;
    --moss-green: #1E4E3F;
    --pale-sage: #E8ECE9;
    --gold-accent: #C5A76D;
    --off-white: #F6F7F5;
    --muted-jade: #2F6658;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--pale-sage);
    background-color: var(--deep-forest);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Skip to content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold-accent);
    color: var(--deep-forest);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(14, 43, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 167, 109, 0.2);
}

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

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    /* Invert colors for dark background - turns dark logo to white */
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* If you want the logo to have a slight warm tone instead of pure white, use this instead: */
/* 
.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1) sepia(0.3) saturate(0.8) hue-rotate(10deg);
    transition: filter 0.3s ease;
}
*/

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--pale-sage);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold-accent);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-accent);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, rgba(14, 43, 35, 1) 0%, rgba(30, 78, 63, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

/* Placeholder for hero texture image */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/hero-texture.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--off-white);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--gold-accent);
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--pale-sage);
    margin: 40px 0 24px;
    line-height: 1.6;
}

.hero-supporting {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--pale-sage);
    margin-bottom: 50px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    font-weight: 500;
}

.cta-button:hover {
    background: var(--gold-accent);
    color: var(--deep-forest);
}

/* Section Styling */
section {
    padding: 5em 20% 3em 20%;
    margin: 0 auto;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
    font-weight: 500;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--off-white);
    margin-bottom: 40px;
    line-height: 1.3;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin: 0 auto 1em auto;
    max-width: 800px;
}

/* About Section */
#about {
    background-color: var(--moss-green);
}

/* Values - Classical Column Layout */
.values {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-column {
    text-align: center;
    padding: 50px 30px;
    position: relative;
    transition: background-color 0.4s ease;
}

.value-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gold-accent);
    opacity: 0.4;
}

.value-column:hover {
    background-color: rgba(14, 43, 35, 0.3);
}

.leaf-flourish {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    position: relative;
}

/* SVG Leaf Motifs */
.leaf-flourish svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold-accent);
    stroke-width: 1.5;
    opacity: 0.8;
}

.value-text {
    font-size: 1.125rem;
    letter-spacing: 0.5px;
    color: var(--off-white);
    line-height: 1.6;
    font-weight: 400;
}

/* Approach Section */
#approach {
    background-color: var(--deep-forest);
}

.approach-subsection {
    margin-bottom: 80px;
}

.approach-subsection:last-child {
    margin-bottom: 0;
}

.approach-subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold-accent);
    margin-bottom: 24px;
}

.focus-areas {
    margin-top: 32px;
    padding-left: 0;
}

.focus-item {
    margin-bottom: 20px;
    position: relative;
    padding-left: 32px;
}

.focus-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10 C2 10, 6 6, 10 4 C13 3, 16 4, 18 7 C19 9, 18 12, 16 14 C14 16, 11 17, 10 18 C8 17, 5 16, 3 14 C1 12, 1 9, 2 10 Z' fill='none' stroke='%23C5A76D' stroke-width='1.2' /%3E%3Cpath d='M6 9 L14 11' stroke='%23C5A76D' stroke-width='0.8' opacity='0.5' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.focus-title {
    color: var(--off-white);
    font-weight: 500;
    margin-bottom: 8px;
}

.closing-line {
    margin-top: 40px;
    font-style: italic;
    color: var(--gold-accent);
    font-size: 1.125rem;
}

/* Vision Section */
#vision {
    background-color: var(--off-white);
    color: var(--moss-green);
    text-align: center;
    position: relative;
}

/* Placeholder for marble texture */
#vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/technology.jpg') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

#vision .section-label {
    color: var(--muted-jade);
}

#vision h2 {
    color: var(--deep-forest);
}

#vision p {
    color: var(--moss-green);
    margin-left: auto;
    margin-right: auto;
}

#vision > * {
    position: relative;
    z-index: 1;
}

/* Contact Section */
#contact {
    background-color: var(--deep-forest);
    border-top: 2px solid var(--gold-accent);
    text-align: center;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    display: inline-block;
    margin: 30px 0;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: var(--moss-green);
    padding: 60px 40px;
    border-top: 1px solid rgba(197, 167, 109, 0.3);
}

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

.footer-text {
    color: var(--pale-sage);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    color: var(--pale-sage);
    font-size: 0.95rem;
}

.footer-phone {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-separator {
    color: var(--gold-accent);
    opacity: 0.5;
}

.footer-address {
    font-style: normal;
    color: var(--pale-sage);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding-top: 24px;
    border-top: 1px solid rgba(197, 167, 109, 0.2);
}

.footer-links a {
    color: var(--pale-sage);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Responsive footer */
@media (max-width: 768px) {
    footer {
        padding: 50px 24px;
    }

    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
        font-size: 0.9rem;
    }

    .footer-separator {
        display: none;
    }

    .footer-links {
        gap: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 20px;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-contact {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .logo-img {
        height: 32px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: -100%;
        background: rgba(14, 43, 35, 0.98);
        flex-direction: column;
        width: 100%;
        padding: 40px;
        gap: 24px;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(197, 167, 109, 0.2);
    }

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

    .nav-links a {
        font-size: 1.1rem;
    }

    section {
        padding: 100px 24px;
    }

    #home {
        padding: 100px 24px 60px;
    }

    .hero-content h1::after {
        width: 80px;
    }

    /* Stack values vertically on mobile */
    .values {
        grid-template-columns: 1fr;
        margin-top: 60px;
        gap: 0;
    }

    .value-column {
        padding: 40px 20px;
    }

    .value-column:not(:last-child)::after {
        width: 60%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 20%;
        right: 20%;
    }

    .approach-subsection {
        margin-bottom: 60px;
    }

    .focus-areas {
        padding-left: 0;
    }

    .focus-item {
        padding-left: 28px;
    }

    .focus-item::before {
        width: 16px;
        height: 16px;
        top: 5px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 14px 20px;
    }

    .logo-img {
        height: 28px;
    }

    section {
        padding: 80px 20px;
    }

    #home {
        padding: 80px 20px 50px;
    }

    .value-column {
        padding: 30px 15px;
    }
}
/* Add these styles to your existing styles.css file */

/* Contact Section - Enhanced */
#contact {
    background-color: var(--deep-forest);
    border-top: 2px solid var(--gold-accent);
}

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

.contact-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--off-white);
    margin-bottom: 8px;
}

.profile-title {
    font-size: 1rem;
    color: var(--gold-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-content p {
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    display: inline-block;
    margin: 30px 0;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.7;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-title {
        font-size: 0.9rem;
    }

    .contact-email {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.3rem;
    }
}/* Hide honeypot field */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    text-align: left;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(232, 236, 233, 0.05);
    border: 1px solid rgba(197, 167, 109, 0.3);
    color: var(--pale-sage);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(232, 236, 233, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 236, 233, 0.5);
}

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

.contact-form .cta-button {
    width: 100%;
    margin-top: 16px;
    cursor: pointer;
    border: 2px solid var(--gold-accent);
    background: transparent;
}

.contact-form .cta-button:hover:not(:disabled) {
    background: var(--gold-accent);
    color: var(--deep-forest);
}

.contact-form .cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 20px;
    padding: 16px;
    text-align: center;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-status.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

.alternative-contact {
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(232, 236, 233, 0.7);
    text-align: center;
}

.contact-email-small {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-email-small:hover {
    opacity: 0.7;
    text-decoration: underline;
}