* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

/* HERO */

.hero {
    position: relative;
    height: 560px;
    min-height: 560px;
    background-image: url("hero.png");
    background-size: cover;
    background-position: center bottom;
    display: flex;
    align-items: center;
    overflow: hidden;

    clip-path: ellipse(115% 93% at 50% 0%);
    margin-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.74) 35%,
            rgba(0,0,0,0.28) 65%,
            rgba(0,0,0,0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 120px;
    color: #ffffff;
}

.hero-label {
    color: #d40000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: 48px;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #d40000;
}

.hero-subtitle {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-list {
    list-style: none;
    margin-bottom: 36px;
}

.hero-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 600;
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #ffffff;
    background: #d40000;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: -10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 38px;
    padding: 0 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn-red {
    background: #d40000;
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    color: #111111;
}

.btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 992px) {

    .hero {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 56px;
    }

}

@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
        background-position: center right;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.70);
    }

    .hero-content {
        padding: 100x 24px 80px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-list li {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

}.hero {
     position: relative;
     overflow: hidden;
 }

.hero-wave {
    display: none;
}/* =========================
   SERVICES
========================= */

.services {
    padding: 5px 30px 45px;
    background: #ffffff;
}

.services-container {
    max-width: 1120px;
    margin: 0 auto;
}

.services-top {
    position: relative;
    margin-bottom: 28px;
}

.services-header {
    text-align: center;
}

.services-header span {
    display: block;
    color: #d40000;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.services-header h2 {
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 13px;
    line-height: 1.45;
    color: #111;
}

.services-header strong {
    color: #d40000;
    font-weight: 900;
}

.season-btn {
    position: absolute;
    right: 0;
    top: 20px;

    background: #ffc400;
    color: #111;

    text-decoration: none;

    padding: 14px 24px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 900;

    box-shadow: 0 8px 20px rgba(255, 196, 0, 0.28);

    transition: 0.25s ease;
}

.season-btn:hover {
    transform: translateY(-2px);
    background: #ffb700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-card {
    background: #ffffff;

    border-radius: 3px;

    overflow: hidden;

    box-shadow: 0 5px 16px rgba(0,0,0,0.12);

    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    display: block;
}

.service-content {
    min-height: 138px;

    padding: 18px 16px 18px;

    display: grid;
    grid-template-columns: 40px 1fr;

    column-gap: 14px;
}

.service-icon {
    color: #d40000;

    font-size: 34px;
    line-height: 1;

    font-weight: 900;
}

.service-content h3 {
    margin: 0 0 10px;

    font-size: 13px;
    line-height: 1.25;

    font-weight: 900;

    color: #111;
}

.service-content p {
    grid-column: 2;

    margin: 0;

    font-size: 12px;
    line-height: 1.45;

    color: #222;
}

@media (max-width: 980px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .season-btn {
        position: static;
        display: flex;
        width: fit-content;
        margin: 18px auto 0;
    }

}

@media (max-width: 560px) {

    .services {
        padding: 35px 16px 45px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .season-btn {
        width: 100%;
        justify-content: center;
    }

}/* =========================
   WHY SECTION
========================= */

.why-section {
    background: #9f0f0f;
    padding: 24px 40px;
}

.why-container {
    max-width: 1120px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 22px;
    align-items: stretch;
}

.why-text {
    color: #ffffff;
    padding: 18px 0;
}

.why-text span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
}

.why-text h2 {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 22px;
}

.why-text ul {
    list-style: none;
}

.why-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    font-size: 14px;
    font-weight: 600;
}

.why-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;

    width: 18px;
    height: 18px;

    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 900;
}

.why-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.why-gallery img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    display: block;

    border: 2px solid rgba(255,255,255,0.35);
}

.why-gallery img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
    }

    .why-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .why-section {
        padding: 35px 16px;
    }

    .why-text h2 {
        font-size: 24px;
    }

    .why-gallery {
        grid-template-columns: 1fr;
    }

    .why-gallery img {
        height: 180px;
    }
}/* =========================
   REFERENCES + CONTACT
========================= */

.references-contact {
    background: #ffffff;
    padding: 34px 40px 0;
}

.refs-container {
    max-width: 1120px;
    margin: 0 auto;
}

.refs-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
}

.refs-top span,
.contact-info span {
    display: block;
    color: #d40000;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 6px;
}

.refs-top h2 {
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.refs-link {
    color: #d40000;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.refs-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.refs-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
}

.contact-row {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 30px;
    align-items: start;
    padding-bottom: 30px;
}

.contact-info h2 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 16px;
    color: #111;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #222;
    margin-bottom: 5px;
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 13px 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    outline: none;
    margin-bottom: 12px;
}

.contact-form textarea {
    height: 90px;
    resize: none;
}

.contact-form button {
    width: 100%;
    height: 42px;
    background: #d40000;
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-form button:hover {
    background: #b80000;
}

@media (max-width: 900px) {
    .refs-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .refs-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .references-contact {
        padding: 30px 16px 0;
    }

    .refs-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}/* =========================
   NAVBAR
========================= */

.navbar {
    position: relative;

    width: 100%;

    background: #f7f6f1;
    backdrop-filter: blur(8px);

    z-index: 999;

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1380px;
    height: 72px;

    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 140px !important;
    width: auto !important;
    display: block;


}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    color: #111;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: 0.2s ease;
}

.nav-menu a:hover {
    color: #c30000;
}

.nav-btn {
    background: #c30000;
    color: #ffffff;

    text-decoration: none;

    padding: 14px 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;

    transition: 0.25s ease;
}

.nav-btn:hover {
    background: #a80000;
    transform: translateY(-2px);
}.logo {
     display: flex;
     align-items: center;
     overflow: hidden;
 }

.logo img {
    height: 210px !important;
    width: auto !important;

    margin-top: -22px;
    margin-bottom: -22px;

    display: block;
}/* =========================
   FOOTER
========================= */

.footer {
    background: #111111;
    color: #ffffff;
    padding: 14px 40px;
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 560px) {
    .footer {
        padding: 18px 16px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}@media (max-width: 768px) {

    .nav-menu,
    .nav-btn {
        display: none;
    }

    .nav-container {
        height: 70px;
        padding: 0 18px;
    }

    .logo img {
        height: 85px !important;
    }

    .hero {
        height: auto;
        min-height: 650px;
        background-position: center right;
        clip-path: ellipse(140% 95% at 50% 0%);
    }

    .hero-content {
        padding: 30px 24px 230px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-container,
    .contact-row {
        grid-template-columns: 1fr;
    }

    .refs-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}.burger {
     display: none;
     background: none;
     border: none;
     font-size: 32px;
     font-weight: 900;
     color: #111;
     cursor: pointer;
 }

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-btn {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 9999;
        padding: 22px 24px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);

        display: none;
        flex-direction: column;
        gap: 18px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        color: #111;
        text-decoration: none;
        font-size: 18px;
        font-weight: 800;
    }
    @media (min-width: 769px) {
        .navbar {
            position: relative !important;
        }
    }

.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    z-index: 10001;
}

.mobile-menu.active {
    display: flex;
}.contact-map {
     margin-top: 35px;
     width: 100%;
     height: 330px;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 18px 45px rgba(0,0,0,0.12);
 }

    @media (max-width: 768px) {
        .contact-map {
            height: 260px;
            margin-top: 25px;
            border-radius: 14px;
        }
    }