:root {
    --primary-color: #163D26;
    /* Emerald Green */
    --accent-color: #D4AF37;
    /* Gold */
    --accent-hover: #B8952E;
    --dark-bg: #163D26;
    /* Primary Green for dark sections */
    --footer-bg: #0F2D1A;
    /* Deep Green */
    --light-bg: #FFFFFF;
    /* White Background */
    --cta-bg: #F7F4EF;
    /* Warm Cream */
    --white: #FFFFFF;
    --text-dark: #1A2E1A;
    /* Dark Green Body Text */
    --text-light: #4A5D4A;
    --footer-text: #E8D48B;
    /* Light Gold */
    --border-color: #E2E2E2;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --header-height: 80px;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.page-content-section ul,
.page-content-section ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.page-content-section li {
    margin-bottom: 0.8rem;
}

.page-content-section h2 {
    margin-top: 3rem;
    font-size: 2.2rem;
}

.page-content-section h3 {
    margin-top: 2rem;
    font-size: 1.8rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header.site-header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

header.site-header.scrolled,
body:not(.home) header.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.site-header.scrolled .logo a,
body:not(.home) header.site-header .logo a,
header.site-header.scrolled .main-navigation ul li a,
body:not(.home) header.site-header .main-navigation ul li a {
    color: var(--primary-color);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.5px;
    font-weight: 700;
}

header.site-header .menu-toggle {
    appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(22, 61, 38, 0.2);
    border-radius: 6px;
    cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle-icon {
    position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-toggle-icon::before {
    transform: translateY(-7px);
}

.menu-toggle-icon::after {
    transform: translateY(7px);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-navigation ul li a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(22, 61, 38, 0.7), rgba(22, 61, 38, 0.7)), url('../images/hero2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-style: italic;
    /* Cormorant looks great in italic */
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Services Section */
.services-section {
	padding-top:30px;
/*     padding: 120px 0;
    background-color: var(--white); */
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--cta-bg);
    /* Warm Cream */
    padding: 4rem 3rem;
    border-radius: 0;
    /* Clean straight edges */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(22, 61, 38, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    background: var(--white);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(22, 61, 38, 0.1);
    border-color: var(--accent-color);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    flex-grow: 1;
    opacity: 0.85;
}

.service-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Intro / About Section */
.intro-section {
    background-color: var(--cta-bg);
    /* Warm Cream */
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.intro-image img {
    border-radius: 0;
    box-shadow: 30px 30px 0 var(--primary-color);
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Disclaimer */
.disclaimer-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
footer.site-footer {
    background-color: var(--footer-bg);
    /* Deep Green */
    color: var(--footer-text);
    /* Light Gold */
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-bottom: 80px;
}

.footer-widget h4 {
    color: var(--footer-text);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.footer-widget p {
    opacity: 0.8;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 1.2rem;
}

.footer-widget ul li a {
    color: var(--footer-text);
    opacity: 0.8;
}

.footer-widget ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(232, 212, 139, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .service-grid-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    header.site-header {
        height: 80px;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    header.site-header .logo a {
        color: var(--primary-color);
    }

    header.site-header .menu-toggle {
        display: inline-flex !important;
    }

    .site-header.mobile-menu-open .menu-toggle-icon {
        background: transparent;
    }

    .site-header.mobile-menu-open .menu-toggle-icon::before {
        transform: rotate(45deg);
    }

    .site-header.mobile-menu-open .menu-toggle-icon::after {
        transform: rotate(-45deg);
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 12px 24px rgba(22, 61, 38, 0.1);
        padding: 1rem 2rem 1.5rem;
    }

    .site-header.mobile-menu-open .main-navigation {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation ul li a {
        display: block;
        padding: 0.9rem 0;
        color: var(--primary-color);
        border-bottom: 1px solid var(--border-color);
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}