/* =========================================================
   AMR HAUSSERVICE
   DESIGN: NAVY / WEISS / GOLD
   RESPONSIVE: DESKTOP + TABLET + MOBILE
========================================================= */

:root {
    --navy: #081522;
    --navy-light: #102844;
    --navy-soft: #173454;

    --gold: #c89a45;
    --gold-light: #e2c382;

    --white: #ffffff;
    --light: #f7f8fa;
    --grey: #68727d;
    --border: #e5e8ec;
    --dark: #17202a;

    --shadow: 0 18px 45px rgba(8, 21, 34, 0.12);

    --container: 1200px;
}


/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(8, 21, 34, 0.08);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 165px;
    height: 58px;

    object-fit: contain;
    object-position: left center;
}


/* NAVIGATION */

.navigation {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link,
.dropdown-button {
    border: 0;
    background: transparent;

    color: var(--navy);

    font-size: 15px;
    font-weight: 650;

    padding: 12px 14px;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.2s ease;
}

.nav-link:hover,
.dropdown-button:hover,
.nav-link.active {
    color: var(--gold);
    background: #f4f6f8;
}

.arrow {
    font-size: 14px;
    margin-left: 4px;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    min-width: 320px;

    padding: 10px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 12px 14px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 650;

    border-radius: 10px;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--gold);
}


/* HEADER CONTACT */

.header-contact-button {
    background: var(--navy);
    color: var(--white);

    font-size: 14px;
    font-weight: 750;

    padding: 13px 22px;

    border-radius: 999px;

    transition: 0.2s ease;

    white-space: nowrap;
}

.header-contact-button:hover {
    background: var(--gold);
    color: var(--navy);

    transform: translateY(-2px);
}


/* MOBILE MENU BUTTON */

.mobile-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    border-radius: 12px;

    background: var(--white);
    border: 1px solid var(--border);

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;

    background: var(--navy);

    border-radius: 999px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 999px;

    font-weight: 750;
    font-size: 15px;

    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: var(--gold);
    color: var(--navy);

    box-shadow: 0 10px 28px rgba(200, 154, 69, 0.28);
}

.button-gold:hover {
    background: var(--gold-light);
}

.button-white {
    background: var(--white);
    color: var(--navy);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.button-dark {
    background: var(--navy);
    color: var(--white);

    margin-top: 27px;
}

.button-dark:hover {
    background: var(--gold);
    color: var(--navy);
}

.button-outline {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: transparent;
}

.button-outline:hover {
    background: var(--white);
    color: var(--navy);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    padding: 28px 0 0;
}

.hero-image-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background: var(--navy);

    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;
}

.hero-buttons {
    position: absolute;

    left: 5%;
    bottom: 6%;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
    padding: 24px 0 45px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--border);
}

.trust-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 22px;

    background: var(--white);
}

.trust-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff5df;

    color: var(--gold);

    font-weight: 900;
}

.trust-item strong {
    display: block;

    color: var(--navy);

    font-size: 17px;
}

.trust-item p {
    margin-top: 4px;

    color: var(--grey);

    font-size: 14px;
}


/* =========================================================
   GENERAL SECTION HEADING
========================================================= */

.small-title {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 0.15em;
}

.small-title::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--gold);
}

.small-title.light {
    color: var(--gold-light);
}

.section-heading {
    max-width: 800px;

    margin-bottom: 42px;
}

.section-heading h1 {
    margin-top: 12px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 56px);

    line-height: 1.08;
}

.section-heading p {
    max-width: 720px;

    margin-top: 17px;

    color: var(--grey);

    font-size: 17px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 90px 0;

    background: var(--light);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px;
}

.service-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(8, 21, 34, 0.07);

    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.service-card > img {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;
}

.service-card-content {
    padding: 28px;
}

.service-number {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 0.12em;
}

.service-card h2 {
    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    line-height: 1.2;
}

.service-card p {
    margin-top: 13px;

    color: var(--grey);
}

.service-link {
    display: inline-flex;

    gap: 8px;

    margin-top: 22px;

    color: var(--gold);

    font-weight: 800;
}

.service-link span {
    transition: 0.2s;
}

.service-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 60px;

    align-items: center;
}

.about-image img {
    width: 100%;

    border-radius: 26px;

    box-shadow: var(--shadow);
}

.about-content h2 {
    margin-top: 12px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.08;
}

.about-content p {
    margin-top: 18px;

    color: var(--grey);

    font-size: 16px;
}

.about-benefits {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    margin-top: 25px;
}

.about-benefits div {
    display: flex;
    align-items: center;

    gap: 10px;

    font-weight: 650;

    color: var(--navy);
}

.about-benefits span {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff5df;

    color: var(--gold);

    font-weight: 900;
}


/* =========================================================
   AREA
========================================================= */

.area-section {
    padding: 95px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(200, 154, 69, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-soft)
        );
}

.area-content {
    max-width: 850px;
}

.area-content h2 {
    margin-top: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 5vw, 60px);

    line-height: 1.08;
}

.area-content p {
    max-width: 720px;

    margin: 20px 0 30px;

    color: #dce3ea;

    font-size: 17px;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {
    padding: 80px 0;

    background: var(--white);
}

.contact-cta-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 35px;

    align-items: center;

    padding: 45px;

    border-radius: 28px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    box-shadow: var(--shadow);
}

.contact-cta h2 {
    margin-top: 11px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(31px, 4vw, 48px);

    line-height: 1.1;
}

.contact-cta p {
    max-width: 690px;

    margin-top: 15px;

    color: #dce3ea;
}

.contact-cta-buttons {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 60px 0 22px;

    color: #d6dee7;

    background: #06111d;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr 1fr;

    gap: 42px;
}

.footer-brand img {
    width: 175px;

    border-radius: 14px;
}

.footer-brand p {
    margin-top: 14px;

    color: var(--gold-light);

    font-weight: 650;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 17px;
}

.footer-column a,
.footer-column span {
    margin: 5px 0;

    color: #cbd4dd;

    font-size: 14px;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #9eabb8;

    font-size: 13px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 999;

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: var(--white);

    font-size: 14px;
    font-weight: 900;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

    transition: 0.2s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.03);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .header-contact-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .navigation {
        position: fixed;

        top: 92px;
        left: 20px;
        right: 20px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        padding: 14px;

        background: var(--white);

        border: 1px solid var(--border);
        border-radius: 18px;

        box-shadow: var(--shadow);
    }

    .navigation.open {
        display: flex;
    }

    .nav-link,
    .dropdown-button {
        width: 100%;

        text-align: left;
    }

    .dropdown-menu {
        position: static;

        display: none;

        min-width: 0;

        padding-left: 10px;

        border: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

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

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

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

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


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 28px);
    }

    .nav-container {
        min-height: 70px;
    }

    .header-logo {
        width: 135px;
        height: 48px;
    }

    .navigation {
        top: 80px;
    }


    /* HERO MOBILE */

    .hero-section {
        padding-top: 14px;
    }

    .hero-image-wrapper {
        border-radius: 20px;

        background: var(--white);
    }

    .hero-image {
        aspect-ratio: auto;

        min-height: 0;

        object-fit: contain;

        object-position: center;

        background: var(--white);
    }

    .hero-buttons {
        position: static;

        display: grid;

        grid-template-columns: 1fr;

        padding: 15px;

        background: var(--white);
    }

    .hero-buttons .button {
        width: 100%;
    }


    /* TRUST */

    .trust-section {
        padding-top: 15px;
    }

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


    /* SECTIONS */

    .services-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h1 {
        font-size: 36px;
    }


    /* SERVICE CARDS */

    .service-card {
        border-radius: 18px;
    }

    .service-card > img {
        aspect-ratio: auto;

        object-fit: contain;
    }

    .service-card-content {
        padding: 22px;
    }

    .service-card h2 {
        font-size: 25px;
    }


    /* ABOUT */

    .about-section {
        padding: 65px 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-benefits {
        grid-template-columns: 1fr;
    }


    /* AREA */

    .area-section {
        padding: 65px 0;
    }

    .area-content h2 {
        font-size: 38px;
    }


    /* CTA */

    .contact-cta {
        padding: 55px 0;
    }

    .contact-cta-grid {
        padding: 28px 22px;

        border-radius: 22px;
    }

    .contact-cta h2 {
        font-size: 34px;
    }

    .contact-cta-buttons .button {
        width: 100%;
    }


    /* FOOTER */

    .footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-brand img {
        width: 150px;
    }


    /* WHATSAPP */

    .whatsapp-button {
        width: 55px;
        height: 55px;

        right: 22px;
        bottom: 22px;
    }
}.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}.ai-image-note {
    margin-top: 8px;
    font-size: 12px;
    color: #7a7a7a;
    text-align: right;
    font-style: italic;
}
/* FINAL POLISH */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.direct-contact-actions { display:flex; flex-direction:column; gap:14px; margin:28px 0 20px; }
.contact-outline { border:1px solid var(--navy); color:var(--navy); }
.legal-page { padding:70px 0 90px; }
.legal-content { max-width:850px; }
.legal-content h1 { color:var(--navy); margin-bottom:24px; }
.legal-content h2 { color:var(--navy); margin:34px 0 10px; font-size:1.3rem; }
.legal-content p { margin:0 0 14px; }
.legal-placeholder { padding:16px 18px; background:#fff5dd; border:1px solid #e6c56e; border-radius:12px; margin:18px 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; animation:none !important; } }


/* =========================================================
   FINAL AMR FINISH — keeps original brand palette above
========================================================= */
.hero-clean-grid{display:grid;grid-template-columns:0.9fr 1.45fr;align-items:stretch;min-height:460px;background:var(--white);border-radius:24px;overflow:hidden;border:1px solid var(--border)}
.hero-copy{padding:64px 52px;display:flex;flex-direction:column;justify-content:center}
.hero-copy h1{font-family:Georgia,"Times New Roman",serif;color:var(--navy);font-size:clamp(40px,4vw,64px);line-height:1.06;margin:12px 0 20px}
.hero-copy p{color:var(--grey);font-size:18px;max-width:560px}
.hero-photo-wrap{position:relative;min-height:460px}
.hero-image-new{width:100%;height:100%;object-fit:cover}
.availability-section{padding:54px 0;background:var(--light);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.availability-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:36px;align-items:center}
.availability-grid h2{font-family:Georgia,"Times New Roman",serif;color:var(--navy);font-size:32px;line-height:1.2;margin-top:8px}
.availability-item{padding-left:28px;border-left:1px solid var(--border);display:flex;flex-direction:column;gap:5px}
.availability-item strong{color:var(--navy);font-size:17px}.availability-item span{color:var(--grey)}
.faq-section{padding:90px 0;background:var(--white)}.faq-wrap{max-width:980px}.section-heading.compact{margin-bottom:34px}
.faq-list{border-top:1px solid var(--border)}.faq-list details{border-bottom:1px solid var(--border);padding:0}.faq-list summary{list-style:none;cursor:pointer;padding:24px 4px;color:var(--navy);font-size:19px;font-weight:700;display:flex;justify-content:space-between;gap:20px}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary:after{content:"+";font-size:25px;font-weight:400;color:var(--grey)}.faq-list details[open] summary:after{content:"–"}.faq-list details p{padding:0 42px 24px 4px;color:var(--grey);max-width:850px}
.area-columns{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.area-box{background:var(--white);border:1px solid var(--border);border-radius:18px;padding:30px}.area-box h2{font-family:Georgia,"Times New Roman",serif;color:var(--navy);font-size:24px;margin-bottom:12px}.area-box p{color:var(--grey);line-height:1.85}
@media(max-width:900px){.hero-clean-grid{grid-template-columns:1fr}.hero-copy{padding:42px 30px}.hero-photo-wrap{min-height:300px}.availability-grid,.area-columns{grid-template-columns:1fr}.availability-item{padding:18px 0 0;border-left:0;border-top:1px solid var(--border)}}
@media(max-width:600px){.hero-copy h1{font-size:38px}.hero-copy p{font-size:16px}.hero-photo-wrap{min-height:240px}.faq-section{padding:64px 0}.area-box{padding:24px}}

/* ===== FINAL POLISH 2026-09-15 ===== */
/* Hero actions belong to the text column, never over the copy/photo. */
.hero-buttons{position:static;left:auto;bottom:auto;margin-top:28px;display:flex;gap:12px;flex-wrap:wrap}
.hero-copy .hero-buttons{width:100%}
.hero-copy .hero-buttons .button{min-width:0}
/* Tighter, calmer rhythm between trust and services. */
.trust-section{padding:18px 0 22px}
.services-section{padding:64px 0 76px}
/* Area teaser: restrained width and spacing. */
.area-section{padding:76px 0;background:linear-gradient(135deg,var(--navy),var(--navy-soft))}
.area-content{max-width:900px}
.area-content h2{max-width:820px;font-size:clamp(36px,4.4vw,54px)}
.area-content p{margin:18px 0 26px;max-width:760px}
/* Contact page: less empty vertical space, balanced cards. */
.contact-page{padding:58px 0!important}
.contact-grid{gap:28px!important}
.contact-info-box,.contact-form-box{padding:30px!important}
.contact-form-box>p{margin-bottom:22px}
.contact-cta{padding:58px 0}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-success{margin:0 0 20px;padding:14px 16px;border:1px solid #b8d8c1;border-radius:10px;background:#f1faf3;color:#234d2f;font-weight:600}
.contact-form button{justify-self:start;border:0;cursor:pointer}
@media(max-width:850px){.hero-buttons{margin-top:22px}.services-section{padding:52px 0 62px}.area-section{padding:60px 0}.contact-page{padding:44px 0!important}.contact-cta{padding:44px 0}}
