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

:root {
    --green: #73b72c;
    --green-dark: #3f7c2c;
    --ink: #242a36;
    --muted: #5f6671;
    --paper: #f7f8f4;
    --line: #dfe7d7;
    --shadow: 0 14px 34px rgba(37, 42, 32, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #edf0e8;
    backdrop-filter: blur(10px);
}

.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 150px;
    mix-blend-mode: multiply;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

nav a,
.header-btn,
.btn {
    text-decoration: none;
}

nav a {
    color: #303541;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.header-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid var(--green);
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-btn,
.primary {
    background: linear-gradient(135deg, #84c93a, #62ac20);
    color: #fff;
    box-shadow: 0 10px 24px rgba(115, 183, 44, 0.22);
}

.secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--green-dark);
}

.header-btn:hover,
.btn:hover {
    transform: translateY(-2px);
}

.hero {
    overflow: hidden;
    padding: 72px 0 46px;
    background:
        radial-gradient(circle at 82% 45%, rgba(115, 183, 44, 0.14), transparent 28%),
        linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
    align-items: center;
    gap: 52px;
}

.tag {
    margin-bottom: 12px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero h1,
.about h2,
.gallery h2,
.contact h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.13;
}

.hero h1 {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 58px);
}

.desc {
    max-width: 520px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.hero-icons div {
    display: flex;
    gap: 8px;
}

.hero-icons span {
    color: var(--green);
    font-weight: 700;
}

.hero-right {
    min-width: 0;
}

.hero-right img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.oferta {
    padding-top: 44px;
    padding-bottom: 54px;
}

.oferta h2 {
    margin-bottom: 26px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

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

.card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf0e8;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.card h3,
.card p {
    padding-left: 24px;
    padding-right: 24px;
}

.card h3 {
    padding-top: 22px;
    margin-bottom: 10px;
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
}

.card p {
    padding-bottom: 26px;
    color: var(--muted);
    font-size: 14px;
}

.about {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr 0.8fr;
    gap: 36px;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 44px;
}

.about-image {
    overflow: hidden;
    border-radius: 0 10px 10px 0;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 44px);
}

.about-text p {
    color: var(--muted);
}

.about-text .btn {
    margin-top: 24px;
}

.about-list {
    display: grid;
    gap: 20px;
    padding-left: 32px;
    border-left: 1px solid var(--line);
}

.about-list h3 {
    margin-bottom: 4px;
    font-size: 16px;
}

.about-list p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.gallery {
    padding-top: 54px;
    padding-bottom: 70px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.gallery h2 {
    font-size: clamp(34px, 4vw, 46px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #e9ece4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 44px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.overlay p {
    font-size: 14px;
    line-height: 1.35;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.contact {
    padding: 62px 0;
    background: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 22px;
    font-size: clamp(32px, 4vw, 44px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin: 28px auto 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dce4d4;
    border-radius: 8px;
    background: #fbfbf8;
    padding: 14px 16px;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    outline: 3px solid rgba(115, 183, 44, 0.14);
}

.honeypot {
    display: none;
}

.form-status {
    max-width: 520px;
    margin: 0 auto 18px;
}

.success,
.error {
    border-radius: 8px;
    padding: 12px;
}

.success {
    background: #e2f3d6;
    color: #2f6d1d;
}

.error {
    background: #fde2df;
    color: #933026;
}

.contact-line {
    color: var(--muted);
    font-size: 15px;
}

.contact-line a {
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.82);
}

.modal img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

footer {
    padding: 30px 20px;
    color: #7a7f87;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1020px) {
    .header-btn {
        display: none;
    }

    .hero-grid,
    .cards,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-right img {
        max-height: 420px;
    }

    .hero-icons {
        grid-template-columns: 1fr;
    }

    .about-list {
        padding-left: 0;
        border-left: 0;
    }

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

@media (max-width: 720px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav {
        min-height: auto;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
    }

    .logo img {
        width: 120px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 18px;
        overflow-x: auto;
    }

    nav a {
        white-space: nowrap;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .section-head {
        display: block;
    }

    .section-head .btn {
        margin-top: 16px;
    }

    .overlay {
        opacity: 1;
    }
}
