:root {
    --green-deep: #4a5c2f;
    --green-mid: #7a9045;
    --green-light: #a8ba72;
    --green-pale: #e8f0d8;
    --cream: #f7f4ef;
    --dark: #1c2010;
    --text: #3a3e2c;
    --text-light: #6b7258;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 60px;
    box-shadow: 0 1px 0 rgba(74, 92, 47, 0.12);
}

.nav-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

nav.scrolled .nav-logo img {
    filter: none;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

nav.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--green-mid);
}

nav.scrolled .nav-links a:hover {
    color: var(--green-deep);
}

.nav-cta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 24px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav.scrolled .nav-cta {
    color: var(--green-deep);
    border-color: var(--green-deep);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--green-deep);
}

nav.scrolled .nav-cta:hover {
    background: var(--green-deep);
    color: var(--white);
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d140a 0%, #1c2a10 40%, #2a3f18 70%, #1a2c10 100%);
}

.hero-texture {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(74, 92, 47, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(122, 144, 69, 0.15) 0%, transparent 50%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(122,144,69,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(122,144,69,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    padding: 0 60px;
    max-width: 700px;
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--green-light);
    display: block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 32px;
}

.hero-title em {
    font-style: italic;
    color: var(--green-light);
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-mid);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.btn-ghost:hover { color: var(--white); }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--green-light);
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(122,144,69,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.6;
}

/* SECTIONS */
section {
    padding: 120px 60px;
    width: 100%;
}

.section-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--green-mid);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--green-deep);
}

/* ABOUT */
.about {
    background: var(--white);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-left .section-title {
    margin-bottom: 32px;
}

.about-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text);
    font-weight: 500;
}

.about-right {
    padding-top: 20px;
}

.vision-card {
    background: var(--green-pale);
    border-left: 3px solid var(--green-mid);
    padding: 36px 40px;
    margin-bottom: 28px;
    border-radius: 0 4px 4px 0;
}

.vision-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--green-deep);
    margin-bottom: 14px;
}

.vision-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.values-list {
    margin-top: 8px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid rgba(122,144,69,0.12);
    list-style: none;
}

.values-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-mid);
    flex-shrink: 0;
}

/* SERVICES */
.services {
    background: var(--cream);
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 72px;
    align-items: end;
}

.services-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(122,144,69,0.1);
}

.service-card {
    background: var(--white);
    padding: 44px 40px;
    position: relative;
    transition: all 0.35s ease;
    cursor: default;
}

.service-card:hover {
    background: var(--green-deep);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(74,92,47,0.2);
    z-index: 2;
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    color: var(--green-mid);
    transition: color 0.35s ease;
}

.service-card:hover .service-icon {
    color: var(--green-light);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
    transition: color 0.35s ease;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-light);
    transition: color 0.35s ease;
}

.service-card:hover p {
    color: rgba(255,255,255,0.75);
}

.service-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 2px;
    background: var(--green-pale);
    color: var(--green-deep);
    transition: all 0.35s ease;
}

.service-card:hover .service-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
}

/* WHY US */
.why-us {
    background: var(--dark);
    color: var(--white);
}

.why-us-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
}

.why-header .section-title {
    color: var(--white);
}

.why-header .section-title em {
    color: var(--green-light);
}

.why-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(122,144,69,0.15);
}

.why-item {
    background: rgba(255,255,255,0.03);
    padding: 40px 32px;
    transition: background 0.3s ease;
}

.why-item:hover {
    background: rgba(122,144,69,0.1);
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(122,144,69,0.25);
    line-height: 1;
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.why-item p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

/* INDUSTRIES */
.industries {
    background: var(--white);
}

.industries-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.industries-header {
    text-align: center;
    margin-bottom: 64px;
}

.industries-header .section-label {
    justify-content: center;
}

.industries-header .section-label::before {
    display: none;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.industry-item {
    border: 1px solid rgba(122,144,69,0.15);
    padding: 32px 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    min-width: 0; /* prevents flex children from overflowing */
}

.industry-item:hover {
    border-color: var(--green-mid);
    background: var(--green-pale);
    transform: translateY(-2px);
}

.industry-icon {
    width: 36px;
    height: 36px;
    min-width: 36px; /* prevent icon from shrinking */
    color: var(--green-mid);
    flex-shrink: 0;
}

.industry-item span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    word-break: break-word;
}

/* CONTACT */
.contact {
    background: linear-gradient(135deg, var(--green-deep) 0%, #2c3a1a 100%);
    text-align: center;
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact .section-label {
    justify-content: center;
    color: var(--green-light);
}

.contact .section-label::before {
    background: var(--green-light);
    display: none;
}

.contact .section-title {
    color: var(--white);
    margin-bottom: 24px;
}

.contact .section-title em {
    color: var(--green-light);
}

.contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
}

.contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
    margin-bottom: 48px;
    display: inline-block;
    transition: border-color 0.3s;
    word-break: break-all;
}

.contact-email:hover { border-color: var(--white); }

.contact-meta {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 20px;
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 36px;
    filter: brightness(0) invert(0.4);
}

.footer-text {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

/* SVG ICON COLOR */
svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 600px) {
    nav {
        padding: 16px 20px;
    }

    nav.scrolled {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-logo img {
        height: 48px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 11px;
    }

    section {
        padding: 72px 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-scroll {
        left: 20px;
    }

    .hero-badge {
        display: none;
    }

    /* About */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-card {
        padding: 28px 24px;
    }

    /* Services */
    .services-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

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

    .service-card {
        padding: 36px 28px;
    }

    /* Why Us */
    .why-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

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

    .why-item {
        padding: 32px 24px;
    }

    /* Industries — single column on mobile */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-item {
        padding: 20px 20px;
    }

    /* Contact */
    .contact-email {
        font-size: 18px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 11px;
    }

    /* Footer */
    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 32px 20px;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}