﻿:root {
    --ink: #171819;
    --muted: #666b70;
    --line: #e3e1dc;
    --paper: #f7f5f0;
    --white: #ffffff;
    --red: #b51f2c;
    --gold: #b88a42;
    --forest: #1f4f46;
    --shadow: 0 18px 50px rgba(23, 24, 25, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 64px);
    background: rgba(247, 245, 240, 0.9);
    border-bottom: 1px solid rgba(227, 225, 220, 0.8);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: block;
    width: 128px;
    height: 92px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.site-nav a:hover {
    color: var(--red);
}



.header-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.language-switcher {
    position: relative;
    z-index: 30;
}

.language-button {
    display: inline-flex;
    min-width: 70px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-button:hover,
.language-switcher:focus-within .language-button,
.language-switcher.is-open .language-button {
    color: var(--red);
    border-color: rgba(181, 31, 44, 0.45);
    transform: translateY(-1px);
}

.language-button svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.language-switcher:focus-within .language-button svg,
.language-switcher.is-open .language-button svg {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    min-width: 168px;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-switcher:focus-within .language-menu,
.language-switcher.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    color: var(--muted);
    border-radius: 6px;
    font-size: 0.9rem;
}

.language-option span {
    color: var(--red);
    font-weight: 900;
}

.language-option strong {
    color: inherit;
    font-size: 0.9rem;
}

.language-option:hover,
.language-option.is-active {
    color: var(--ink);
    background: var(--paper);
}
.social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    color: var(--red);
    border-color: rgba(181, 31, 44, 0.45);
    transform: translateY(-1px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social {
    display: none;
}

.footer-actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #ffffff;
    background: #25d366;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(23, 24, 25, 0.2), 0 8px 22px rgba(37, 211, 102, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(23, 24, 25, 0.24), 0 10px 26px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    display: grid;
    min-height: calc(100vh - 80px);
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(36px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.hero-copy {
    max-width: 690px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.7rem, 7vw, 5.9rem);
    line-height: 0.95;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.button-primary {
    color: var(--white);
    background: var(--red);
}

.button-secondary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
    background: var(--white);
}

.stats div {
    padding: 28px clamp(18px, 5vw, 64px);
    border-right: 1px solid var(--line);
}

.stats div:last-child {
    border-right: 0;
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    font-size: 1.05rem;
}

.stats span {
    margin-top: 4px;
    color: var(--muted);
}

.section,
.process,
.contact {
    padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 32px;
}

.service-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.service-card,
.product-card,

.form-status {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-status.is-success {
    color: #14532d;
    background: #dcfce7;
}

.form-status.is-error {
    color: #7f1d1d;
    background: #fee2e2;
}

.field-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-card {
    padding: 28px;
}

.service-card p,
.product-card p,
.contact p {
    margin: 0;
    color: var(--muted);
}

.process {
    color: var(--white);
    background: var(--forest);
}

.process .eyebrow {
    color: #f3c05c;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.2);
}

.process-list li {
    min-height: 210px;
    padding: 28px;
    background: var(--forest);
}

.process-list span {
    color: #f3c05c;
    font-weight: 800;
}

.process-list p {
    margin: 38px 0 0;
    font-size: 1.05rem;
}

.product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(23, 24, 25, 0.06);
}

.product-media {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin: 0;
    padding: 24px;
    place-items: center;
    overflow: hidden;
    background: transparent;
    border-bottom: 1px solid var(--line);
}

.product-image {
    display: block;
    max-width: 86%;
    max-height: 86%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-content {
    display: flex;
    min-height: 180px;
    flex: 1;
    flex-direction: column;
    padding: 16px 16px 18px;
}

.product-card h3 {
    min-height: 2.6em;
    margin-bottom: 8px;
    font-size: 1rem;
}

.product-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
    background: var(--ink);
    color: var(--white);
}

.contact .eyebrow {
    color: #f3c05c;
}

.contact p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}


.form-status {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-status.is-success {
    color: #14532d;
    background: #dcfce7;
}

.form-status.is-error {
    color: #7f1d1d;
    background: #fee2e2;
}

.field-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    color: var(--ink);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 24px clamp(18px, 5vw, 64px);
    background: var(--white);
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--red);
    font-weight: 800;
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
    }

    .header-social {
        display: none;
    }

    .footer-social {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: 78px 18px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
    }

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

    h1 {
        max-width: 11ch;
    }

    .hero-media,
    .hero-media img {
        min-height: 360px;
    }

    .stats,
    .service-grid,
    .product-grid,
    .process-list {
        grid-template-columns: 1fr;
    }

    .stats div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats div:last-child {
        border-bottom: 0;
    }

    .process-list li {
        min-height: 160px;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand-mark {
        width: 104px;
        height: 76px;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .button {
        width: 100%;
    }

    .product-media {
        padding: 20px;
    }

    .product-content {
        min-height: 180px;
        padding: 16px 16px 18px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}
.field-trap,
.field-trap[hidden] {
    position: absolute !important;
    left: -9999px !important;
    display: none !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-success {
    display: grid;
    justify-items: start;
    gap: 14px;
    padding: 28px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(23, 24, 25, 0.14);
}

.success-check {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #ffffff;
    background: #16a34a;
    border-radius: 50%;
}

.success-check svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.contact-success h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.contact-success p {
    margin: 0 0 4px;
    color: var(--muted);
}
.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.contact-details div {
    display: grid;
    gap: 3px;
}

.contact-details span {
    color: #f3c05c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-details a:hover {
    color: #f3c05c;
}
