:root {
    --background: #f6f4ef;
    --surface: #fffefb;
    --surface-soft: #efede7;
    --ink: #1e2428;
    --muted: #656d72;
    --line: #d9ddda;
    --brand: #315e4a;
    --brand-dark: #274b3c;
    --brand-light: #7fa691;
    --shadow: 0 24px 64px rgba(30, 36, 40, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 5%, rgba(49, 94, 74, 0.075), transparent 30rem),
        var(--background);
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    color: var(--ink);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.lightbox-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 3000;
    top: 10px;
    inset-inline-start: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--ink);
    color: white;
    text-decoration: none;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.scroll-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(49, 94, 74, 0.42);
    outline-offset: 4px;
}

/* Keep the wolf looking into the composition: toward the truck in Hebrew,
   toward the content in LTR languages. */
html[dir="rtl"] .brand-icon,
html[dir="rtl"] .footer-brand-icon {
    transform: scaleX(-1);
}

html[dir="rtl"] .hero-watermark {
    transform: scaleX(-1) rotate(-2deg);
}

.header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    padding: 14px 24px;
    background-color: rgba(246, 244, 239, 0.90);
    border-bottom: 1px solid rgba(217, 221, 218, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
    color: var(--ink);
    text-decoration: none;
}

.brand-full-logo {
    display: none;
    width: 238px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 7px 13px rgba(18, 24, 22, 0.10));
    mix-blend-mode: multiply;
}

html[lang="he"] .brand-full-logo {
    display: block;
}

html[lang="he"] .brand-icon,
html[lang="he"] .brand-text {
    display: none;
}

html:not([lang="he"]) .brand-full-logo {
    display: none;
}


.brand-icon {
    width: 70px;
    height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 7px 12px rgba(13, 23, 16, 0.12));
    transform-origin: center;
    transition: transform 0.25s ease;
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1px;
    color: #20262a;
    background: linear-gradient(180deg, #6f787d 0%, #20262a 43%, #111619 66%, #4f595e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.main-navigation a {
    position: relative;
    color: #596166;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background-color: var(--brand);
    transition: width 0.2s ease;
}

html[dir="ltr"] .main-navigation a::after {
    right: auto;
    left: 0;
}

.main-navigation a:hover {
    color: var(--ink);
}

.main-navigation a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 7px;
}

/* On larger screens the wrapper is layout-neutral. On phones it becomes
   a compact floating menu panel instead of pushing the hero downward. */
.mobile-menu-panel {
    display: contents;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #cfd4d1;
    border-radius: 11px;
    background-color: rgba(255, 254, 251, 0.82);
    color: var(--ink);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 999px;
    background-color: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-inner.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header-inner.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header-inner.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.language-button {
    border: 1px solid #cfd4d1;
    background-color: rgba(255, 254, 251, 0.68);
    color: var(--ink);
    padding: 8px 11px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.language-button.active {
    background-color: var(--ink);
    color: white;
    border-color: var(--ink);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 82px);
    width: calc(100% - 48px);
    max-width: 1360px;
    margin: 18px auto 34px;
    padding: clamp(26px, 3vw, 42px);
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(20px, 2.4vw, 34px);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(217, 221, 218, 0.92);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 46%, rgba(49, 94, 74, 0.065), transparent 35rem),
        linear-gradient(135deg, rgba(255, 254, 251, 0.94), rgba(239, 237, 231, 0.55));
    box-shadow: 0 18px 55px rgba(30, 36, 40, 0.055);
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-inline: clamp(8px, 1.6vw, 22px);
}

.hero-watermark {
    position: absolute;
    z-index: -1;
    top: -138px;
    inset-inline-end: -155px;
    width: min(610px, 112%);
    opacity: 0.052;
    filter: grayscale(1) contrast(1.08) brightness(0.82);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 96%);
    pointer-events: none;
    transform: rotate(-2deg);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.hero-kicker {
    margin: 0 0 13px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    font-size: clamp(50px, 6.1vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.hero-slogan {
    max-width: 690px;
    margin: 0 0 20px;
    font-size: clamp(26px, 2.85vw, 38px);
    line-height: 1.28;
    font-weight: 780;
    color: var(--ink);
}

.hero-slogan span {
    display: block;
}

.hero-slogan .slogan-care {
    color: var(--brand);
}

.hero-text {
    max-width: 640px;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

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

.whatsapp-button {
    background-color: #25D366;
    color: white;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.call-button {
    background-color: var(--ink);
    color: white;
    box-shadow: 0 12px 26px rgba(17, 24, 20, 0.14);
}


.hero-media {
    position: relative;
    min-width: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.hero-photo-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: clamp(520px, 64vh, 650px);
    border-radius: 28px;
    background-color: #e4e3de;
    box-shadow: 0 24px 64px rgba(30, 36, 40, 0.14);
}

.hero-photo-frame::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: inherit;
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 100%;
    min-height: clamp(520px, 64vh, 650px);
    display: block;
    object-fit: cover;
    /* Landscape desktop/tablet: keep the full cab/front of the Hino visible. */
    object-position: 18% center;
    transform: scale(1);
    transform-origin: center;
}

.hero-photo-shine {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(0deg, rgba(10, 17, 12, 0.10), transparent 36%);
    pointer-events: none;
}


.section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 92px 24px;
    scroll-margin-top: 92px;
}

.section h2 {
    margin: 0 0 38px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

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

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background-color: var(--surface);
    box-shadow: 0 10px 30px rgba(20, 30, 23, 0.035);
}

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    inset-inline-end: -54px;
    bottom: -54px;
    border-radius: 50%;
    background-color: rgba(49, 94, 74, 0.075);
}

.service-index {
    display: block;
    margin-bottom: 42px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 850;
}

.service-card h3 {
    margin: 0 0 11px;
    font-size: 22px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background-color: #e4e3de;
    cursor: pointer;
    text-align: inherit;
    box-shadow: 0 12px 32px rgba(19, 29, 22, 0.07);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 13, 10, 0.28), transparent 48%);
    pointer-events: none;
}

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

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-owner img {
    object-position: center 28%;
}

.gallery-label {
    position: absolute;
    z-index: 2;
    inset-inline-end: 16px;
    bottom: 16px;
    padding: 9px 13px;
    border-radius: 999px;
    background-color: rgba(17, 24, 20, 0.78);
    color: white;
    font-size: 14px;
    font-weight: 750;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.advantage-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #1e2824, #27342e);
    color: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(16, 24, 18, 0.10);
}

.advantage-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    inset-inline-end: -88px;
    bottom: -88px;
    border-radius: 50%;
    background-color: rgba(127, 166, 145, 0.12);
}

.advantage-number {
    display: block;
    margin-bottom: 34px;
    color: var(--brand-light);
    font-size: 13px;
    font-weight: 800;
}

.advantage-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.advantage-card p {
    margin: 0;
    color: #d4dad6;
    font-size: 16px;
    line-height: 1.65;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-card {
    background-color: var(--surface);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.process-number {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ink);
    color: white;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 800;
}

.process-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 22px;
}

.faq-item summary {
    padding: 21px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 750;
}

.faq-item p {
    margin: 0;
    padding: 0 0 21px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.reviews-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #1d2723, #26332d);
    color: white;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 48px rgba(14, 22, 16, 0.12);
}

.reviews-box::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    inset-inline-end: -170px;
    top: -170px;
    border-radius: 50%;
    background-color: rgba(127, 166, 145, 0.12);
}

.reviews-content,
.review-preview {
    position: relative;
    z-index: 1;
}

.reviews-content h2 {
    margin: 0 0 14px;
}

.reviews-content p {
    max-width: 600px;
    margin: 0 0 28px;
    color: #d5dbd7;
    font-size: 18px;
    line-height: 1.65;
}

.review-button {
    background-color: white;
    color: var(--ink);
}

.review-preview {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: 18px;
}

.review-stars {
    margin-bottom: 18px;
    color: #71d887;
    font-size: 24px;
    letter-spacing: 3px;
}

.review-preview p {
    margin: 0;
    color: #d0d7d2;
    font-size: 16px;
    line-height: 1.65;
}

.contact-box {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 14px 36px rgba(19, 29, 22, 0.05);
}

.contact-box h2 {
    margin: 0 0 9px;
    font-size: clamp(30px, 4vw, 44px);
}

.contact-box p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-phone {
    color: var(--ink);
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    direction: ltr;
}

.footer {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #687168;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-full-logo {
    display: none;
    width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 7px 14px rgba(18, 24, 22, 0.10));
    mix-blend-mode: multiply;
}

html[lang="he"] .footer-full-logo {
    display: block;
}

html[lang="he"] .footer-brand-dynamic {
    display: none;
}

.footer-brand-dynamic {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-brand-icon {
    width: 62px;
    height: 58px;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.25s ease;
    filter: drop-shadow(0 6px 10px rgba(18, 24, 22, 0.10));
}

.footer-brand-copy {
    display: grid;
    gap: 3px;
}

.footer-brand strong {
    font-size: 16px;
    font-weight: 900;
    color: #20262a;
    background: linear-gradient(180deg, #6f787d 0%, #20262a 44%, #111619 66%, #4f595e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand span {
    color: #687168;
    font-size: 13px;
}

.footer a {
    color: #687168;
    text-decoration: none;
    direction: ltr;
    font-weight: 700;
}

.mobile-contact-bar {
    display: none;
}

.lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background-color: rgba(0, 0, 0, 0.91);
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    width: min(1100px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 14px;
}

.lightbox-content p {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 650;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}


@media (max-width: 1050px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-navigation {
        order: 3;
        width: 100%;
    }

    .hero {
        width: calc(100% - 36px);
        gap: 26px;
        padding: 30px;
    }

    .hero-photo-frame,
    .hero-photo {
        min-height: 480px;
    }
}

/* Tablet portrait: switch the hero to one clear column before it becomes cramped.
   Landscape tablets stay in the desktop two-column layout. */
@media (max-width: 920px) and (min-width: 701px) {
    .hero {
        min-height: auto;
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 14px auto 30px;
        padding: 32px;
        border-radius: 28px;
    }

    .hero-copy {
        order: 1;
        max-width: 760px;
        padding-inline: 12px;
    }

    .hero-media {
        order: 2;
    }

    .hero h1 {
        font-size: clamp(50px, 9vw, 68px);
    }

    .hero-slogan {
        max-width: 720px;
        font-size: clamp(28px, 4.5vw, 36px);
    }

    .hero-text {
        max-width: 680px;
    }

    .hero-photo-frame,
    .hero-photo {
        min-height: 0;
        height: 430px;
    }

    .hero-photo-frame {
        border-radius: 24px;
    }

    .hero-photo {
        object-position: 43% center;
        transform: scale(1.02);
    }

    .hero-watermark {
        top: -88px;
        inset-inline-end: -110px;
        width: min(520px, 82%);
        opacity: 0.045;
    }
}

/* Phones: compact navigation, smaller type, a visible truck photo,
   and the fixed contact bar instead of duplicate hero buttons. */
@media (max-width: 700px) {
    body {
        padding-bottom: 76px;
    }

    .header {
        padding: 9px 12px;
    }

    .header-inner {
        position: relative;
        align-items: center;
        gap: 8px 10px;
    }

    .brand {
        gap: 8px;
    }

    .brand-full-logo {
        width: 205px;
    }

    .brand-icon {
        width: 50px;
        height: 48px;
    }

    .brand-text {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-inline-start: auto;
        flex: 0 0 auto;
    }

    .mobile-menu-panel {
        position: absolute;
        z-index: 140;
        top: calc(100% + 9px);
        inset-inline: 0;
        display: none;
        gap: 8px;
        padding: 10px;
        border: 1px solid rgba(207, 212, 209, 0.96);
        border-radius: 16px;
        background-color: rgba(255, 254, 251, 0.97);
        box-shadow: 0 18px 48px rgba(30, 36, 40, 0.16);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .header-inner.menu-open .mobile-menu-panel {
        display: grid;
    }

    .main-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .main-navigation a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background-color: rgba(255, 254, 251, 0.82);
        color: var(--ink);
        text-align: center;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 750;
    }

    .main-navigation a::after {
        display: none;
    }

    .language-switcher {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding-top: 1px;
    }

    .language-button {
        width: 100%;
        min-height: 44px;
        padding: 7px 6px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        width: calc(100% - 16px);
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 8px auto 22px;
        padding: 22px 16px 20px;
        border-radius: 22px;
    }

    .hero-copy {
        order: 1;
        padding-inline: 2px;
    }

    .hero-media {
        order: 2;
    }

    .hero-kicker {
        margin-bottom: 9px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .hero h1 {
        margin-bottom: 12px;
        font-size: clamp(39px, 11.5vw, 48px);
        line-height: 1.00;
    }

    .hero-slogan {
        margin-bottom: 14px;
        font-size: clamp(23px, 6.7vw, 29px);
        line-height: 1.23;
    }

    .hero-text {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.52;
    }

    .hero-actions {
        display: none;
    }

    .hero-photo-frame,
    .hero-photo {
        min-height: 0;
        height: clamp(205px, 55vw, 245px);
    }

    .hero-photo-frame {
        border-radius: 18px;
        box-shadow: 0 16px 38px rgba(30, 36, 40, 0.12);
    }

    .hero-photo {
        object-position: 43% center;
        transform: scale(1.015);
    }

    .hero-watermark {
        top: -42px;
        inset-inline-end: -72px;
        width: min(360px, 94%);
        opacity: 0.035;
    }

    .section {
        padding: 60px 18px;
    }

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

    .services-grid,
    .advantages-grid,
    .process-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 340px;
    }

    .gallery-item-wide,
    .gallery-item-wide img {
        min-height: 230px;
    }

    .reviews-box {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .contact-box {
        padding: 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-phone {
        text-align: center;
        padding: 14px 20px;
        border: 1px solid #d8ded9;
        border-radius: 12px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 32px;
    }

    .mobile-contact-bar {
        position: fixed;
        z-index: 1000;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding:
            10px
            12px
            calc(10px + env(safe-area-inset-bottom));
        background-color: rgba(255, 255, 255, 0.96);
        border-top: 1px solid #dde4de;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-contact-bar a {
        min-height: 50px;
        padding: 13px 12px;
        border-radius: 11px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: 800;
    }

    .mobile-whatsapp {
        background-color: #25D366;
        color: white;
    }

    .mobile-call {
        background-color: var(--ink);
        color: white;
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 520px) {
    .brand-full-logo {
        width: 188px;
    }

    .brand-text {
        font-size: 17px;
    }

    .hero {
        padding-inline: 14px;
    }

    .hero h1 {
        font-size: clamp(38px, 11.2vw, 44px);
    }

    .hero-slogan {
        font-size: clamp(22px, 6.3vw, 27px);
    }
}

@media (hover: hover) {
    .brand:hover .brand-full-logo {
        filter: drop-shadow(0 9px 16px rgba(18, 24, 22, 0.14));
    }

    .brand:hover .brand-icon {
        transform: translateY(-1px);
    }

    html[dir="rtl"] .brand:hover .brand-icon {
        transform: scaleX(-1) translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Final landscape image rule: the source hero photo is 16:9. Matching the
   frame to that ratio prevents any crop, so the full truck is always visible
   on MacBook and landscape iPad. */
@media (min-width: 921px) {
    .hero-photo-frame {
        min-height: 0;
        aspect-ratio: 16 / 9;
        background-color: #e4e3de;
    }

    .hero-photo {
        min-height: 0;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none;
    }
}

/* Desktop-only final hero polish:
   keep the full 16:9 Hino photo, but remove the viewport-height forcing that
   created excessive empty space above and below the hero content on MacBook.
   iPad and iPhone layouts are intentionally unchanged. */
@media (min-width: 1280px) {
    .hero {
        min-height: auto;
        padding-block: 48px;
    }

    .hero-copy,
    .hero-media {
        align-self: center;
    }
}

/* Final MacBook spacing polish:
   tighten only the gap between the hero and the services section.
   Tablet and phone spacing stays exactly as before. */
@media (min-width: 1280px) {
    #services.section {
        padding-top: 62px;
    }
}
