:root {
    --ink: #172019;
    --ink-2: #2f3a31;
    --muted: #69736a;
    --forest: #123820;
    --forest-2: #0d2918;
    --leaf: #2f833c;
    --lime: #d5e938;
    --cream: #f7f6ed;
    --white: #ffffff;
    --cold: #edf5f6;
    --steel: #d7e3e5;
    --line: #d8dfd4;
    --meat: #b64234;
    --amber: #d7a42e;
    --shadow: 0 18px 44px rgba(18, 56, 32, 0.14);
    --shadow-soft: 0 10px 26px rgba(23, 32, 25, 0.08);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #f8faf6 0%, #f3f5ef 42%, #eef5f4 100%);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.58;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

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

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

p,
h1,
h2,
h3 {
    margin: 0;
}

p {
    color: var(--muted);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.shell {
    width: calc(100% - 34px);
    max-width: 1180px;
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon {
    width: 1.08em;
    height: 1.08em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    color: #eef7e9;
    background: var(--forest-2);
    box-shadow: 0 12px 30px rgba(13, 41, 24, 0.18);
    backdrop-filter: blur(14px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--leaf), var(--meat), var(--amber));
}

.header-top {
    background: #081f12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-top__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-block: 6px;
}

.header-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    min-width: 0;
}

.header-info a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-width: 0;
    color: #dce9d8;
    font-size: 0.84rem;
    font-weight: 780;
    line-height: 1.25;
}

.header-info a:hover {
    color: var(--lime);
}

.header-info .icon {
    color: var(--lime);
}

.header-info span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
    color: var(--white);
    animation: brand-enter 720ms ease both;
    transition: transform 180ms ease, opacity 180ms ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}

.brand-logo__mark {
    display: block;
    width: 82px;
    height: 70px;
    flex: 0 0 auto;
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-position: center 28%;
    background-size: 305%;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.34));
}

.brand-logo__wordmark {
    display: grid;
    gap: 5px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-logo__wordmark strong {
    color: #34883d;
    font-size: clamp(1.6rem, 3vw, 2.85rem);
    font-weight: 950;
    text-shadow: 0 0 24px rgba(93, 180, 67, 0.18);
}

.brand-logo__wordmark span {
    color: #c5da1f;
    font-size: clamp(0.92rem, 1.45vw, 1.34rem);
    font-weight: 650;
    text-shadow: 0 0 18px rgba(197, 218, 31, 0.18);
}

.menu-bar {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, #030603 0%, #071108 34%, #020502 64%, #08160a 100%);
    border-bottom: 1px solid rgba(213, 233, 56, 0.2);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.menu-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(213, 233, 56, 0.1), transparent);
    transform: translateX(-120%);
    animation: menu-sheen 7s ease-in-out infinite;
    pointer-events: none;
}

.menu-bar::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), var(--leaf), transparent 72%);
    opacity: 0.85;
}

.menu-bar__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 96px;
    align-items: center;
    gap: clamp(18px, 4vw, 48px);
}

.site-nav {
    display: flex;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    animation: nav-enter 780ms 120ms ease both;
}

html[dir="rtl"] .site-nav {
    justify-self: start;
    justify-content: flex-start;
}

.site-nav a,
.language-switch a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #dbe8d4;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 14px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lime), var(--leaf));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.language-switch a {
    min-width: 42px;
}

.language-switch .active {
    color: var(--forest-2);
    background: var(--lime);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(213, 233, 56, 0.34);
    background: rgba(213, 233, 56, 0.12);
    outline: none;
}

.nav-toggle.is-open {
    color: var(--forest-2);
    background: var(--lime);
    transform: translateY(-50%) rotate(90deg);
}

@keyframes menu-sheen {
    0%,
    38% {
        transform: translateX(-120%);
    }

    58%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes brand-enter {
    from {
        transform: translateY(-10px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes nav-enter {
    from {
        transform: translateY(-8px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes dropdown-enter {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    min-height: 82svh;
    overflow: hidden;
    isolation: isolate;
    background: var(--forest-2);
}

.hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--lime), var(--leaf), var(--meat), var(--amber));
    z-index: 1;
}

.hero__image,
.hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    z-index: -2;
    object-fit: cover;
    object-position: center bottom;
    filter: saturate(1.05) contrast(1.02);
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(9, 25, 15, 0.86) 0%, rgba(9, 25, 15, 0.68) 34%, rgba(9, 25, 15, 0.2) 72%),
        linear-gradient(0deg, rgba(8, 17, 11, 0.5) 0%, rgba(8, 17, 11, 0.08) 42%);
}

html[dir="rtl"] .hero__shade {
    background:
        linear-gradient(270deg, rgba(9, 25, 15, 0.88) 0%, rgba(9, 25, 15, 0.7) 34%, rgba(9, 25, 15, 0.2) 72%),
        linear-gradient(0deg, rgba(8, 17, 11, 0.5) 0%, rgba(8, 17, 11, 0.08) 42%);
}

.hero__inner {
    display: flex;
    min-height: 82svh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-block: 70px 82px;
    color: var(--white);
}

html[dir="rtl"] .hero__inner {
    align-items: flex-end;
    text-align: right;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 13px;
    color: var(--meat);
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1.2;
    text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
    text-transform: none;
}

.hero__eyebrow {
    padding: 8px 10px;
    border: 1px solid rgba(213, 233, 56, 0.28);
    border-inline-start: 4px solid var(--lime);
    border-radius: 6px;
    color: #efff8c;
    background: rgba(13, 41, 24, 0.55);
}

.hero h1 {
    width: 100%;
    max-width: 760px;
    color: var(--white);
    font-size: clamp(3rem, 6.2vw, 6.7rem);
    line-height: 0.9;
    font-weight: 950;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.hero__subtitle {
    width: 100%;
    max-width: 730px;
    margin-top: 18px;
    color: #f3f8ea;
    font-size: clamp(1.08rem, 1.8vw, 1.52rem);
    font-weight: 850;
}

.hero__text {
    width: 100%;
    max-width: 660px;
    margin-top: 16px;
    color: #dfeadd;
    font-size: 1.03rem;
}

.hero__actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    min-width: 158px;
    padding: 12px 17px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 900;
    line-height: 1.22;
    text-align: center;
    overflow-wrap: anywhere;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
    color: var(--forest-2);
    background: var(--lime);
    box-shadow: 0 14px 28px rgba(213, 233, 56, 0.22);
}

.button--primary:hover {
    background: #e3f447;
}

.button--secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1px;
    width: 100%;
    max-width: 660px;
    margin-top: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
}

.hero__stats span {
    display: grid;
    min-height: 76px;
    padding: 12px 14px;
    align-content: center;
    color: #dfeadd;
    background: rgba(7, 20, 12, 0.58);
}

.hero__stats strong {
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.1;
}

.section {
    padding-block: 86px;
}

.band {
    position: relative;
}

.band--paper {
    background: var(--cream);
}

.band--white {
    background: var(--white);
}

.band--cold {
    background:
        linear-gradient(180deg, #edf5f6, #f7faf9);
}

.band--green {
    color: var(--white);
    background:
        linear-gradient(135deg, var(--forest-2), #15452a 58%, #253420);
    border-block: 1px solid rgba(213, 233, 56, 0.18);
}

.band--green p,
.band--green .eyebrow {
    color: #e4efdc;
}

.about-layout,
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
}

.section-copy,
.section-head {
    position: relative;
}

.section-copy h2,
.section-head h2,
.why-layout h2,
.contact-band h2 {
    width: 100%;
    max-width: 820px;
    color: var(--forest);
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.04;
    font-weight: 950;
    overflow-wrap: break-word;
}

.band--green h2,
.contact-band h2 {
    color: var(--white);
}

.section-copy p,
.section-head p,
.why-layout p,
.contact-band p {
    max-width: 760px;
    margin-top: 16px;
    font-size: 1rem;
}

.section-copy p {
    color: #566153;
}

.about-photo {
    position: relative;
    min-height: 350px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #dbe5cd;
    box-shadow: var(--shadow);
}

.about-photo::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, var(--leaf), var(--lime), var(--amber));
}

.about-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(0deg, rgba(10, 20, 12, 0.34), transparent);
    pointer-events: none;
}

.about-photo img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center;
}

.about-proofs {
    grid-column: 1 / -1;
}

.section-head {
    max-width: 900px;
    margin-bottom: 34px;
}

.section-head--compact {
    max-width: 780px;
}

.proof-grid,
.service-grid,
.commit-grid {
    display: grid;
    gap: 14px;
}

.proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.commit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.service-panel,
.commit-card,
.meat-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.proof-card::before,
.service-panel::before,
.commit-card::before,
.meat-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--leaf), var(--lime), var(--amber));
}

.proof-card,
.commit-card {
    padding: 22px;
}

.proof-card h3,
.service-panel h3,
.commit-card h3,
.meat-card h3 {
    color: var(--forest);
    font-size: 1.08rem;
    line-height: 1.22;
    font-weight: 920;
}

.proof-card p,
.service-panel p,
.commit-card p,
.meat-card p {
    margin-top: 8px;
    color: #667164;
    font-size: 0.94rem;
}

.icon-box,
.meat-card__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(47, 131, 60, 0.14);
    border-radius: 8px;
    color: var(--forest);
    background: #eef7df;
}

.icon-box--large {
    width: 54px;
    height: 54px;
}

.service-panel {
    display: flex;
    flex-direction: column;
    padding: 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

.service-panel__photo {
    position: relative;
    height: 172px;
    margin: 0;
    overflow: hidden;
    background: #edf3e5;
}

.service-panel__photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(12, 25, 14, 0.28), transparent);
    pointer-events: none;
}

.service-panel__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.service-panel:hover .service-panel__photo img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.service-panel h3 {
    margin: 22px 30px 0;
}

.service-panel > p {
    margin-inline: 30px;
}

.service-panel:nth-child(1)::before {
    background: linear-gradient(90deg, var(--meat), #e7a29a, var(--amber));
}

.service-panel:nth-child(1) .icon-box {
    color: #8a2f25;
    background: #fae7e2;
    border-color: #f3cac2;
}

.service-panel:nth-child(2)::before {
    background: linear-gradient(90deg, var(--leaf), var(--lime), #9dbb44);
}

.service-panel:nth-child(3)::before {
    background: linear-gradient(90deg, var(--amber), var(--lime), var(--leaf));
}

.service-panel:nth-child(3) .icon-box {
    color: #6f5610;
    background: #fff6d6;
    border-color: #eadb92;
}

.service-panel ul {
    display: grid;
    gap: 10px;
    margin: 20px 30px 30px;
    padding-top: 18px;
    border-top: 1px solid #e6ebe1;
}

.service-panel li {
    position: relative;
    padding-inline-start: 28px;
    color: var(--ink-2);
}

.service-panel li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.72em;
    width: 10px;
    height: 10px;
    border: 2px solid var(--leaf);
    border-radius: 50%;
    background: var(--white);
}

.meat-card::before {
    background: linear-gradient(90deg, var(--meat), #d57f58, var(--amber));
}

.products-section--produce {
    background:
        linear-gradient(180deg, #f7f6ed 0%, #f2f8ef 100%);
}

.products-section--produce .eyebrow {
    color: var(--leaf);
}

.produce-card::before {
    background: linear-gradient(90deg, var(--leaf), var(--lime), var(--amber));
}

.produce-card .meat-card__photo {
    background: #eef4e7;
}

.meat-slider {
    position: relative;
    overflow: hidden;
    padding-block: 4px;
}

.meat-slider::before,
.meat-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(82px, 18vw);
    z-index: 2;
    pointer-events: none;
}

.meat-slider::before {
    inset-inline-start: 0;
    background: linear-gradient(90deg, #edf5f6, rgba(237, 245, 246, 0));
}

.meat-slider::after {
    inset-inline-end: 0;
    background: linear-gradient(270deg, #edf5f6, rgba(237, 245, 246, 0));
}

.products-section--produce .meat-slider::before {
    background: linear-gradient(90deg, #f7f6ed, rgba(247, 246, 237, 0));
}

.products-section--produce .meat-slider::after {
    background: linear-gradient(270deg, #f2f8ef, rgba(242, 248, 239, 0));
}

.meat-track {
    display: flex;
    width: max-content;
    animation: meat-scroll 78s linear infinite;
    will-change: transform;
}

.produce-track {
    animation-duration: 64s;
}

.meat-track:hover {
    animation-play-state: paused;
}

.meat-track__set {
    display: flex;
    gap: 16px;
    padding-inline-end: 16px;
}

.meat-card {
    display: grid;
    flex: 0 0 clamp(238px, 23vw, 310px);
    grid-template-rows: 190px auto;
    min-height: 264px;
    padding: 0;
    background: #fffefd;
}

.meat-card__photo {
    position: relative;
    height: 190px;
    margin: 0;
    overflow: hidden;
    background: #f4f0e7;
}

.meat-card__photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44px;
    background: linear-gradient(0deg, rgba(23, 32, 25, 0.18), transparent);
    pointer-events: none;
}

.meat-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.meat-card:hover .meat-card__photo img {
    transform: scale(1.035);
}

.meat-card__body {
    display: grid;
    align-content: start;
    padding: 16px 18px 18px;
}

.meat-card h3 {
    font-size: 1.08rem;
}

.meat-card p {
    color: #747d70;
    margin-top: 0;
}

.products-empty {
    max-width: 720px;
    color: var(--muted);
    font-weight: 800;
}

@keyframes meat-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes meat-scroll-rtl {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

html[dir="rtl"] .meat-track {
    animation-name: meat-scroll-rtl;
}

@media (prefers-reduced-motion: reduce) {
    .menu-bar::before,
    .brand-logo,
    .site-nav,
    .site-nav.is-open,
    .meat-track {
        animation: none;
    }
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.why-layout p {
    color: #edf7e5;
    font-size: 1.08rem;
}

.contact-band {
    color: var(--white);
    background:
        linear-gradient(135deg, #0d1510 0%, #16251a 48%, #26321f 100%);
}

.contact-band p {
    color: #d8e1d5;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.78fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 0;
    font-style: normal;
}

.contact-list a {
    display: flex;
    min-width: 0;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.contact-list a:hover {
    border-color: rgba(213, 233, 56, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.contact-list .icon-box {
    margin-bottom: 0;
    color: var(--lime);
    background: rgba(213, 233, 56, 0.11);
    border-color: rgba(213, 233, 56, 0.16);
}

.contact-list strong {
    display: block;
    color: var(--white);
    font-size: 0.92rem;
}

.contact-list span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #d8e1d5;
}

.site-footer {
    padding-block: 46px 30px;
    color: #dfe8d9;
    background:
        radial-gradient(circle at 18% 0%, rgba(213, 233, 56, 0.12), transparent 34%),
        linear-gradient(135deg, #030804 0%, #07170c 52%, #0c1108 100%);
    border-top: 1px solid rgba(213, 233, 56, 0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(250px, 0.85fr) minmax(320px, 1fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: stretch;
}

.footer-brand,
.footer-info,
.footer-map {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-logo .brand-logo__mark {
    width: 70px;
    height: 60px;
}

.footer-logo .brand-logo__wordmark strong {
    font-size: 1.7rem;
}

.footer-logo .brand-logo__wordmark span {
    font-size: 0.94rem;
}

.footer-brand p {
    max-width: 330px;
    color: #d8e1d5;
    font-weight: 700;
}

.footer-info {
    display: grid;
    gap: 10px;
    margin: 0;
    font-style: normal;
}

.footer-info a {
    display: flex;
    min-width: 0;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-info a:hover,
.footer-info a:focus-visible,
.footer-map a:hover,
.footer-map a:focus-visible {
    border-color: rgba(213, 233, 56, 0.38);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
    outline: none;
}

.footer-info .icon {
    color: var(--lime);
    margin-top: 3px;
}

.footer-info strong {
    display: block;
    color: var(--white);
    font-size: 0.86rem;
    line-height: 1.2;
}

.footer-info span {
    min-width: 0;
    color: #d8e1d5;
    overflow-wrap: anywhere;
}

.footer-map {
    display: grid;
    gap: 10px;
}

.footer-map iframe {
    width: 100%;
    min-height: 230px;
    border: 0;
    border-radius: 8px;
    background: #101910;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.footer-map a {
    display: inline-flex;
    width: fit-content;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(213, 233, 56, 0.18);
    border-radius: 999px;
    color: var(--lime);
    background: rgba(213, 233, 56, 0.08);
    font-weight: 900;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-map .icon {
    width: 1em;
    height: 1em;
}

html[dir="rtl"] .button .icon:last-child,
html[dir="rtl"] .footer-map .icon {
    transform: scaleX(-1);
}

@media (max-width: 1040px) {
    .header-top__inner {
        align-items: flex-start;
    }

    .header-info {
        gap: 7px 12px;
    }

    .header-info__address {
        flex-basis: 100%;
    }

    .menu-bar__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 80px;
        position: relative;
    }

    .brand-logo__mark {
        width: 62px;
        height: 56px;
    }

    .brand-logo__wordmark strong {
        font-size: 1.5rem;
    }

    .brand-logo__wordmark span {
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: inline-flex;
        position: absolute;
        inset-inline-end: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 24;
    }

    .site-nav {
        position: absolute;
        inset-inline: 0;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid rgba(213, 233, 56, 0.18);
        border-radius: 8px;
        background: rgba(2, 5, 2, 0.98);
        box-shadow: var(--shadow);
        z-index: 20;
    }

    .site-nav.is-open {
        display: flex;
        animation: dropdown-enter 180ms ease both;
    }

    .site-nav a {
        justify-content: center;
    }

    html[dir="rtl"] .site-nav a {
        justify-content: center;
    }

    .about-layout,
    .split,
    .why-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid,
    .commit-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-map {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .header-top__inner {
        flex-direction: column;
        gap: 8px;
        padding-block: 8px;
    }

    .header-info {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        justify-items: center;
        text-align: center;
    }

    .header-info a {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
    }

    .language-switch {
        align-self: center;
    }

    .brand-logo {
        gap: 10px;
    }

    .brand-logo__mark {
        width: 54px;
        height: 50px;
    }

    .brand-logo__wordmark {
        gap: 3px;
    }

    .brand-logo__wordmark strong {
        font-size: 1.22rem;
    }

    .brand-logo__wordmark span {
        font-size: 0.78rem;
    }

    .hero,
    .hero__inner {
        min-height: 78svh;
    }

    .hero__image {
        object-position: 58% bottom;
    }

    .hero__inner {
        padding-block: 48px 64px;
    }

    .hero__text {
        font-size: 0.97rem;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.4rem);
        max-width: 100%;
    }

    .hero__subtitle,
    .hero__text,
    .hero__actions,
    .hero__stats {
        max-width: 100%;
    }

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

    .hero__stats span {
        min-height: 64px;
    }

    .section {
        padding-block: 58px;
    }

    .about-photo,
    .about-photo img {
        min-height: 280px;
    }

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

    .service-panel__photo {
        height: 210px;
    }

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

    .footer-logo .brand-logo__mark {
        width: 58px;
        height: 52px;
    }

    .footer-logo .brand-logo__wordmark strong {
        font-size: 1.35rem;
    }

    .footer-logo .brand-logo__wordmark span {
        font-size: 0.8rem;
    }

    .footer-map {
        grid-column: auto;
    }

    .footer-map iframe {
        min-height: 210px;
    }
}

@media (max-width: 460px) {
    .shell {
        width: calc(100% - 24px);
    }

    .language-switch a {
        min-width: 38px;
        padding-inline: 9px;
    }

    .brand-logo {
        gap: 8px;
    }

    .brand-logo__mark {
        width: 46px;
        height: 44px;
    }

    .brand-logo__wordmark strong {
        font-size: 1.05rem;
    }

    .brand-logo__wordmark span {
        font-size: 0.68rem;
    }

    .hero__actions,
    .contact-actions {
        width: 100%;
    }

    .button {
        width: 100%;
        min-width: 0;
    }

    .meat-card {
        min-height: 264px;
        grid-template-rows: 156px auto;
    }
}
