:root {
    --bg: #111111;
    --surface: #1b1b1b;
    --yellow: #ffd400;
    --text: #ffffff;
    --muted: #cccccc;
    --wa: #25d366;
    --ink: #111111;
    --radius: 14px;
    --maxw: 960px;
    --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    padding-bottom: calc(76px + env(safe-area-inset-bottom)); /* room for mobile sticky bar */
}

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

a {
    color: inherit;
}

.section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 40px 20px;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

@media (min-width: 700px) {
    body {
        padding-bottom: 0;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--yellow);
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero__inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 64px 20px 48px;
    text-align: center;
}

.hero__eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-radius: 999px;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-size: clamp(2rem, 8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--yellow);
}

.hero__sub {
    margin: 12px 0 28px;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ===== Buttons (reused by sticky bar) ===== */
.btn-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: var(--radius);
}

.btn--call {
    background: var(--yellow);
    color: var(--ink);
}

.btn--wa {
    background: var(--wa);
    color: var(--ink);
}

/* near-black text per WCAG */

@media (min-width: 700px) {
    .hero__inner {
        padding: 96px 20px 72px;
    }

    .btn-row {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
}

/* ===== Service intro + feature chips ===== */
.intro {
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
}

.chips {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.chips li {
    background: var(--surface);
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== Highlight cards ===== */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.card {
    background: var(--surface);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.card__icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card__text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.card__cards {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}

/* ===== Trust strip ===== */
.trust {
    text-align: center;
}

.trust__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    background: var(--yellow);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 24px 20px;
}

.trust__name {
    margin: 0;
    font-weight: 800;
    font-size: 1.4rem;
}

.trust__plate {
    margin: 8px 0;
    display: inline-block;
    padding: 4px 12px;
    background: var(--ink);
    color: var(--yellow);
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.trust__slogan {
    margin: 8px 0 0;
    font-weight: 600;
    font-style: italic;
}

@media (min-width: 700px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Section titles ===== */
.section__title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--yellow);
}

/* ===== Gallery ===== */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ===== Map ===== */
.map__intro {
    max-width: 640px;
    margin: 0 auto 18px;
    text-align: center;
    color: var(--muted);
}

.map__frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--yellow);
}

.map__frame iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.map__link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 800;
    color: var(--yellow);
    text-decoration: none;
}

/* ===== Footer ===== */
.footer {
    border-top: 4px solid var(--yellow);
    background: #000;
}

.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 28px 20px;
    text-align: center;
}

.footer__name {
    margin: 0;
    font-weight: 800;
    color: var(--yellow);
}

.footer__phone {
    font-weight: 800;
    text-decoration: none;
    color: var(--yellow);
}

.footer__copy {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

@media (min-width: 700px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid img {
        height: 260px;
    }
}

/* ===== Sticky mobile call bar (mobile only) ===== */
.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
}

.sticky-bar__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
    font-weight: 800;
    text-decoration: none;
    color: var(--ink);
}

.sticky-bar__btn--call {
    background: var(--yellow);
}

.sticky-bar__btn--wa {
    background: var(--wa);
}

.nowrap {
    white-space: nowrap;
}

@media (min-width: 700px) {
    .sticky-bar {
        display: none;
    }
}
