/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0d3318;
    --green-800: #1a5c2a;
    --green-700: #227a36;
    --green-600: #2d9944;
    --green-500: #3aad54;
    --off-white: #f5f2ea;
    --cream: #faf8f3;
    --sand: #e8e2d2;
    --sand-light: #f0ead6;
    --charcoal: #1a1a1a;
    --gray-900: #212121;
    --gray-700: #4a4a4a;
    --gray-500: #6b6b6b;
    --gray-300: #a8a8a8;
    --gray-100: #e8e8e8;
    --white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 243, 0.96);
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--green-800);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--green-800);
    background: rgba(26, 92, 42, 0.06);
}

.nav__cta {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--green-800);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-left: 8px;
}

.nav__cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 92, 42, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(26, 92, 42, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 92, 42, 0.06);
}

.hero__card--main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(26, 92, 42, 0.07);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-800);
    width: fit-content;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__card-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green-600);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.025em;
}

.hero__headline-accent {
    color: var(--green-800);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 92, 42, 0.25);
}

.btn--primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 92, 42, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--green-800);
    border: 1.5px solid rgba(26, 92, 42, 0.25);
}

.btn--ghost:hover {
    background: rgba(26, 92, 42, 0.05);
    border-color: var(--green-800);
}

.btn--outline {
    background: transparent;
    color: var(--green-800);
    border: 1.5px solid var(--green-800);
}

.btn--outline:hover {
    background: var(--green-800);
    color: var(--white);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===== Stat Cards ===== */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 92, 42, 0.06);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card--wide {
    flex-direction: row;
}

.stat-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 42, 0.08);
    border-radius: var(--radius-md);
    color: var(--green-800);
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== Section Shared ===== */
.section {
    padding: 100px 0;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 12px;
}

.section__eyebrow--light {
    color: rgba(255,255,255,0.7);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section__title--light {
    color: var(--white);
}

.section__title--dark {
    color: var(--charcoal);
}

.section__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 560px;
}

.section__subtitle--light {
    color: rgba(255,255,255,0.65);
}

.section__header {
    margin-bottom: 60px;
}

/* ===== Products ===== */
.section--products {
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__img {
    overflow: hidden;
    aspect-ratio: 400 / 260;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__img img {
    transform: scale(1.05);
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-card__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray-500);
}

/* ===== Services ===== */
.section--services {
    background: var(--green-800);
    position: relative;
}

.section--services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(45, 153, 68, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.service-card__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(240, 234, 214, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== About ===== */
.section--about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 600/700;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--green-800);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.12;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== Location / Contact ===== */
.section--location {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 42, 0.08);
    border-radius: var(--radius-md);
    color: var(--green-800);
    margin-bottom: 20px;
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.contact-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.contact-card__text a {
    color: var(--green-800);
    font-weight: 600;
    transition: var(--transition);
}

.contact-card__text a:hover {
    color: var(--green-600);
}

.contact-card__hint {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ===== CTA ===== */
.cta {
    background: var(--green-900);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(45, 153, 68, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta__content {
    flex: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.cta__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.cta__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__tagline {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    max-width: 280px;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact address,
.footer__contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer__contact a {
    color: var(--green-500);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--green-400);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ===== Mobile Menu ===== */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(26, 92, 42, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link {
        padding: 12px 16px;
        width: 100%;
    }

    .nav__cta {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: block;
        margin-top: 8px;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero__card {
        padding: 32px;
    }

    .hero__headline {
        font-size: 2rem;
    }

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

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

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

    .cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta__actions .btn {
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }

    .hero__stats {
        flex-direction: column;
    }

    .stat-card--wide {
        flex-direction: row;
    }
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
