header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px; /* Base height for desktop */
    padding: 0 5%; /* Horizontal padding for nav links */
    display: flex;
    justify-content: flex-end; /* Pushes nav links to the right */
    align-items: center;
    z-index: 1000;
    background: rgba(255, 249, 235, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--warm-beige);
    transition: all 0.3s ease;
}

.logo-container {
    position: absolute; /* Ignores header padding */
    left: 0;           /* Sticks to the far left of the screen */
    top: 0;            /* Sticks to the top of the header */
    height: 100%;      /* Matches header height exactly */
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;      /* Fills the 80px height */
    width: auto;       /* Maintains aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: If you want the logo to have a tiny bit of breathing room 
   on the left but still be full height top-to-bottom */
.logo-container {
    left: 20px; 
}

/* Responsive adjustments to keep the header height consistent */
@media (max-width: 968px) {
    header { height: 70px; }
}

@media (max-width: 480px) {
    header { height: 60px; }
    .logo-container { left: 10px; } /* Less gap on mobile */
}

/* --- REMAINDER OF YOUR EXISTING STYLES --- */
/* (Copy/Paste the rest of your styles.css below this line) */

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

:root {
    --forest-green: #1a3d2e;
    --sage: #6b8e7f;
    --cream: #f8f6f1;
    --off-white: #fefdfb;
    --warm-beige: #e8e4dc;
    --gold-accent: #c9a875;
    --text-dark: #2c2c2c;
    --text-muted: #6a6a6a;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ... etc ... */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--forest-green);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--sage);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(107, 142, 127, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--forest-green);
    margin-bottom: 2rem;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.2s forwards;
}

.hero h1 strong {
    font-weight: 500;
    color: var(--sage);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.4s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--forest-green);
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.6s forwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sage);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--off-white);
    box-shadow: 0 10px 40px rgba(26, 61, 46, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.8s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--sage);
    animation: scroll 1.5s ease-in-out infinite;
}

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

/* Services Section */
.services {
    padding: 8rem 5%;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

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

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 3rem;
    background: var(--cream);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--forest-green);
    transition: width 0.4s ease;
    z-index: 0;
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 61, 46, 0.15);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number {
    color: var(--off-white);
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--sage);
    font-weight: 300;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 1.2rem;
    font-weight: 500;
    transition: color 0.4s ease;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    transition: color 0.4s ease;
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 5%;
    background: var(--cream);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.2;
}

.philosophy-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.philosophy-visual {
    height: 500px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3rem;
}

.growth-bar {
    width: 60px;
    background: var(--sage);
    margin: 0 1rem;
    transition: all 0.5s ease;
    opacity: 0.3;
    position: relative;
}

.growth-bar:nth-child(1) { height: 30%; animation: growBar 2s ease-out 0.2s forwards; }
.growth-bar:nth-child(2) { height: 50%; animation: growBar 2s ease-out 0.4s forwards; }
.growth-bar:nth-child(3) { height: 70%; animation: growBar 2s ease-out 0.6s forwards; }
.growth-bar:nth-child(4) { height: 90%; animation: growBar 2s ease-out 0.8s forwards; }

@keyframes growBar {
    from {
        height: 0;
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

/* Approach Section */
.approach {
    padding: 8rem 5%;
    background: var(--off-white);
}

.approach-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-weight: 500;
}

.approach-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 10rem 5%;
    background: var(--forest-green);
    color: var(--off-white);
    text-align: center;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--warm-beige);
    font-weight: 300;
}

.contact-form-link {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--gold-accent);
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold-accent);
}

.contact-form-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    transition: left 0.4s ease;
    z-index: -1;
}

.contact-form-link:hover::before {
    left: 0;
}

.contact-form-link:hover {
    color: var(--forest-green);
    box-shadow: 0 10px 40px rgba(201, 168, 117, 0.3);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: var(--forest-green);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--warm-beige);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--warm-beige);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero h1 { 
        font-size: 3.5rem; 
    }
    .section-title { 
        font-size: 2.5rem; 
    }
    .section-description {
        font-size: 1rem;
    }
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .philosophy-content { 
        grid-template-columns: 1fr; 
        gap: 3rem;
    }
    .philosophy-visual {
        height: 300px;
    }
    .approach-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    header { 
        padding: 1.5rem 5%; 
    }
    nav { 
        gap: 2rem; 
    }
    .contact { 
        padding: 6rem 5%; 
    }
    .contact h2 { 
        font-size: 2.5rem; 
    }
    .contact p {
        font-size: 1.1rem;
    }
    .contact-form-link {
        font-size: 0.9rem;
        padding: 1rem 2.5rem;
    }
    .service-card {
        padding: 2rem;
    }
    .services {
        padding: 5rem 5%;
    }
    .philosophy {
        padding: 5rem 5%;
    }
    .approach {
        padding: 5rem 5%;
    }
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 249, 235, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(26, 61, 46, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--warm-beige);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    header {
        padding: 1.25rem 4%;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding: 6rem 4% 3rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .services {
        padding: 4rem 4%;
    }
    
    .philosophy {
        padding: 4rem 4%;
    }
    
    .approach {
        padding: 4rem 4%;
    }
    
    .contact {
        padding: 5rem 4%;
    }
    
    .philosophy-text h2 {
        font-size: 2.5rem;
    }
    
    .philosophy-text p {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .approach-item h3 {
        font-size: 1.3rem;
    }
    
    .approach-item p {
        font-size: 0.85rem;
    }
    
    footer {
        padding: 2rem 4%;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 3%;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero {
        padding: 5rem 3% 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .services {
        padding: 3rem 3%;
    }
    
    .philosophy {
        padding: 3rem 3%;
    }
    
    .approach {
        padding: 3rem 3%;
    }
    
    .contact {
        padding: 4rem 3%;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact p {
        font-size: 1rem;
    }
    
    .contact-form-link {
        font-size: 0.85rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .philosophy-text h2 {
        font-size: 2rem;
    }
    
    .philosophy-visual {
        height: 250px;
    }
    
    .growth-visual {
        padding: 2rem;
    }
    
    .growth-bar {
        width: 40px;
        margin: 0 0.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .approach-item {
        padding: 1.5rem;
    }
}

