/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a1a;
    background: #faf9f6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #166534;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #14532d;
    margin-bottom: 16px;
}
.section-title--light { color: #f5f5f4; }
.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    line-height: 1.7;
}
.section-header--centered { text-align: center; }
.section-header--centered .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn--primary {
    background: #166534;
    color: #fff;
    border-color: #166534;
}
.btn--primary:hover {
    background: #14532d;
    border-color: #14532d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,101,52,0.3);
}
.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,101,52,0.1);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #14532d;
}
.nav__logo-icon { color: #166534; }
.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    transition: color 0.2s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #166534;
    transition: width 0.25s ease;
}
.nav__link:hover { color: #166534; }
.nav__link:hover::after { width: 100%; }
.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #166534;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.nav__cta:hover { background: #14532d; transform: translateY(-1px); }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #14532d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f3d1e 0%, #166534 35%, #15803d 65%, #1e7b4c 100%);
    z-index: 1;
}
.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,50,20,0.7) 0%, rgba(15,60,25,0.5) 50%, rgba(10,45,18,0.8) 100%);
    z-index: 2;
}
.hero__content {
    position: relative;
    z-index: 3;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #bbf7d0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero__title-accent {
    color: #86efac;
    font-style: italic;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 36px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero__trust-item {
    display: flex;
    flex-direction: column;
}
.hero__trust-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.hero__trust-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(8px); }
    60% { transform: translateX(-50%) translateY(4px); }
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: #faf9f6;
}
.section-header { margin-bottom: 60px; }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.06);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(22,101,52,0.12);
}
.service-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.service-card__body { padding: 28px; }
.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 12px;
    margin-bottom: 18px;
}
.service-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 10px;
}
.service-card__desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: #14532d;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.about__images {
    position: relative;
}
.about__img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    border: 4px solid #14532d;
}
.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #166534;
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.about__experience-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}
.about__experience-text {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-top: 2px;
}
.about__content { color: #fff; }
.about__content .section-label { color: #86efac; }
.about__content .section-title { color: #fff; margin-bottom: 24px; }
.about__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.about__highlight svg { flex-shrink: 0; }

/* ── Why Us ── */
.why-us {
    padding: 100px 0;
    background: #faf9f6;
}
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #166534, #22c55e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(22,101,52,0.1);
}
.why-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8f5e9;
    margin-bottom: 16px;
    line-height: 1;
}
.why-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 12px;
}
.why-card__desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* ── CTA Band ── */
.cta-band {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.cta-band__bg {
    position: absolute;
    inset: 0;
}
.cta-band__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-band__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,83,45,0.92) 0%, rgba(22,101,52,0.88) 100%);
}
.cta-band__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.cta-band__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.cta-band__quote span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: #fff;
    line-height: 1.6;
}
.cta-band__attribution {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: #f5f5f4;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact__info .section-title { color: #14532d; margin-bottom: 16px; }
.contact__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    color: #166534;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 2px;
}
.contact__detail-value {
    display: block;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
.contact__link { color: #166534; transition: color 0.2s; }
.contact__link:hover { color: #14532d; text-decoration: underline; }

/* Form */
.contact__form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}
.contact__form-title {
    font-size: 1.4rem;
    color: #14532d;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: #faf9f6;
    transition: all 0.2s ease;
    outline: none;
}
.form-input:focus {
    border-color: #166534;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
}
.form-input::placeholder { color: #aaa; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    color: #166534;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ── Footer ── */
.footer { background: #0f1f14; color: rgba(255,255,255,0.7); }
.footer__map { margin-bottom: 0; }
.footer .container { padding-top: 60px; padding-bottom: 0; }
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 14px;
}
.footer__logo svg { color: #22c55e; }
.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255,255,255,0.5);
}
.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer__links a:hover { color: #22c55e; }
.footer__contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 4px;
}
.footer__link { color: #22c55e; transition: color 0.2s; }
.footer__link:hover { color: #4ade80; text-decoration: underline; }
.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Menu ── */
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { gap: 48px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,249,246,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(22,101,52,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        pointer-events: none;
    }
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__cta { justify-content: center; }
    .hero__content { padding: 100px 24px 60px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .hero__trust { flex-wrap: wrap; gap: 16px; }
    .hero__trust-divider { display: none; }
    .services__grid { grid-template-columns: 1fr; }
    .about__grid { grid-template-columns: 1fr; }
    .about__img-secondary { right: 16px; bottom: -24px; }
    .about__experience-badge { top: -12px; left: -12px; }
    .about__highlights { grid-template-columns: 1fr; }
    .why-us__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__form-wrapper { padding: 28px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.2rem; }
    .section-title { font-size: 1.6rem; }
    .service-card__body { padding: 20px; }
}
