/* =========================================================
   Global Drinks — production page
   Простая flex-верстка без наложений элементов.
   ========================================================= */

.production-page {
    --red: #e1251b;
    --red-dark: #bf1710;
    --black: #171717;
    --text: #272727;
    --muted: #777;
    --line: #dedede;
    --soft: #f5f5f3;
    --white: #fff;
    color: var(--text);
    background: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

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

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

.production-page a {
    color: inherit;
}

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

/* ---------- Hero ---------- */

.production-hero {
    padding: 24px 0 0;
    background: #fff;
}

.production-hero__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8.6;
    background: #ddd;
}

.production-hero__image > img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.production-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14));
    pointer-events: none;
}

.production-hero__logo {
    position: absolute;
    z-index: 2;
    top: 18%;
    right: 1%;
    display: flex;
    align-items: center;
    gap: 18px;
}
.production-hero__logo img{
width: clamp(80px, 11vw, 200px);
}
.production-hero__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(62px, 7vw, 100px);
    aspect-ratio: 1;
    color: #fff;
    background: var(--red);
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: -3px;
}

.production-hero__logo-text {
    color: #111;
    font-size: clamp(22px, 2.7vw, 40px);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.06em;
}

.production-hero__title {
    position: absolute;
    z-index: 2;
    left: 6%;
    bottom: 9%;
    max-width: 680px;
    color: #111;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 950;
    line-height: .96;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.production-hero__title span {
    color: var(--red);
}

/* ---------- Contacts ---------- */

.production-contact {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.production-contact__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 0 42px;
}

.production-contact__address {
    flex: 1 1 auto;
}

.production-label {
    margin-bottom: 9px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.production-contact p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

.production-contact__details {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 21px;
    font-size: 16px;
    font-weight: 800;
}

.production-contact__details a {
    text-decoration: none;
    transition: color .2s ease;
}

.production-contact__details a:hover {
    color: var(--red);
}

/* ---------- Sections ---------- */

.production-section {
    padding: 86px 0;
    border-bottom: 1px solid var(--line);
}

.production-section__heading {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 42px;
}

.production-section__number {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.production-section h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.production-section h3 {
    margin: 0 0 5px;
    color: var(--red);
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 900;
    line-height: 1.1;
}

.production-section p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.65;
}

.production-lead {
    max-width: 680px;
    font-size: clamp(19px, 2vw, 24px) !important;
    line-height: 1.45 !important;
}

/* ---------- About ---------- */

.production-about__body,
.production-storage__body {
    display: flex;
    align-items: stretch;
    gap: clamp(35px, 6vw, 90px);
}

.production-about__text,
.production-storage__text {
    flex: 1 1 48%;
    min-width: 0;
}

.production-about__image,
.production-storage__image {
    flex: 1 1 52%;
    min-width: 0;
}

.production-image-card {
    overflow: hidden;
    background: #eee;
}

.production-image-card img {
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform .5s ease;
}

.production-image-card:hover img {
    transform: scale(1.025);
}

.production-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 45px;
}

.production-stat {
    flex: 1 1 160px;
    min-width: 150px;
    padding-top: 18px;
    border-top: 3px solid var(--red);
}

.production-stat strong {
    display: block;
    color: var(--red);
    font-size: clamp(16px, 3vw, 25px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.055em;
}

.production-stat span {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

/* ---------- Service blocks ---------- */

.production-service {
    display: flex;
    align-items: stretch;
    gap: clamp(35px, 6vw, 90px);
}

.production-service--reverse {
    flex-direction: row-reverse;
}

.production-service__info {
    flex: 1 1 48%;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 12px 0;
}

.production-service__brand {
    flex: 0 0 145px;
    color: #60777d;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
}

.production-service__brand--khs {
    color: #5d5d5d;
    font-size: 40px;
    letter-spacing: -.1em;
}

.production-service__brand--automha {
    color: #222;
    font-size: 26px;
    letter-spacing: -.07em;
}

.production-service__info > div:last-child {
    flex: 1 1 auto;
    min-width: 0;
}

.production-service__country {
    margin-bottom: 22px !important;
    color: #777;
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.production-service__image {
    flex: 1 1 52%;
    min-width: 0;
    min-height: 360px;
}

.production-service__image img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.production-page ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.production-page li {
    position: relative;
    padding-left: 23px;
    font-size: 16px;
    line-height: 1.55;
}

.production-page li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 8px;
    height: 8px;
    background: var(--red);
}

/* ---------- Formats ---------- */

.production-format {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
}

.production-format > div {
    flex: 1 1 190px;
    padding: 20px;
    background: var(--soft);
    border-left: 4px solid var(--red);
}

.production-format strong,
.production-format span {
    display: block;
}

.production-format strong {
    margin-bottom: 6px;
    color: var(--black);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.production-format span {
    color: #555;
    font-size: 15px;
}

/* ---------- Features ---------- */

.production-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.production-feature {
    flex: 1 1 25%;
    min-width: 230px;
    display: flex;
    gap: 20px;
    padding: 30px 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.production-feature__icon {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.production-feature strong {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.production-feature p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ---------- Storage ---------- */

.production-storage__text {
    padding-top: 4px;
}

.production-storage__text p {
    max-width: 620px;
}

/* ---------- Bottom image ---------- */

.production-bottom-image {
    width: 100%;
    overflow: hidden;
    background: #222;
}

.production-bottom-image img {
    height: clamp(220px, 27vw, 420px);
    object-fit: cover;
    object-position: center;
    filter: grayscale(.8) contrast(1.05);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .production-container {
        width: min(100% - 36px, 760px);
    }

    .production-hero__title {
        max-width: 560px;
    }

    .production-contact__inner,
    .production-about__body,
    .production-storage__body,
    .production-service,
    .production-service--reverse {
        flex-direction: column;
    }

    .production-contact__details {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 30px;
        padding-top: 0;
    }

    .production-about__image,
    .production-storage__image,
    .production-service__image {
        width: 100%;
    }

    .production-image-card img,
    .production-service__image img {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .production-service__info {
        width: 100%;
    }

    .production-feature {
        flex-basis: 50%;
    }
}

@media (max-width: 600px) {
    .production-container {
        width: calc(100% - 28px);
    }

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

    .production-hero__image {
        aspect-ratio: 1 / 1.08;
    }

    .production-hero__image > img {
        object-position: 56% center;
    }

    .production-hero__logo {
        top: 24px;
        right: 20px;
        gap: 9px;
    }

    .production-hero__logo-mark {
        width: 50px;
    }

    .production-hero__logo-text {
        font-size: 20px;
    }

    .production-hero__title {
        left: 20px;
        right: 20px;
        bottom: 28px;
        font-size: clamp(27px, 9vw, 42px);
    }

    .production-contact__inner {
        gap: 24px;
        padding: 28px 0 32px;
    }

    .production-contact p {
        font-size: 14px;
    }

    .production-contact__details {
        flex-direction: column;
        font-size: 14px;
    }

    .production-section {
        padding: 58px 0;
    }

    .production-section__heading {
        gap: 10px;
        margin-bottom: 30px;
    }

    .production-section h2 {
        font-size: 27px;
    }

    .production-service__info {
        flex-direction: column;
        gap: 15px;
    }

    .production-service__brand,
    .production-service__brand--khs,
    .production-service__brand--automha {
        flex-basis: auto;
        font-size: 28px;
    }

    .production-stats {
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }

    .production-stat {
        min-width: 0;
    }

    .production-stat strong {
        font-size: 34px;
    }

    .production-format {
        flex-direction: column;
    }

    .production-feature {
        flex-basis: 100%;
        min-width: 0;
        padding: 24px 20px;
    }

    .production-bottom-image img {
        height: 220px;
    }
}
/* =========================================================
   PRODUCTION — legacy layout override
   ========================================================= */

html#page-production,
body#page-production {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body#page-production #container {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

body#page-production #content {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body#page-production .production-page {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}