:root {
    --ink: #121410;
    --ink-soft: #252820;
    --paper: #ffffff;
    --surface: #f4f3ee;
    --surface-strong: #ebe9e0;
    --gold: #d7a92f;
    --gold-dark: #9d7411;
    --text: #24271f;
    --muted: #686d61;
    --line: #d9d9d0;
    --danger: #a42621;
    --success: #256b3b;
    --shadow: 0 22px 65px rgba(13, 16, 10, 0.14);
    --container: 1180px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

button,
input,
textarea {
    font: inherit;
}

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

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.55rem, 5vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.3rem);
}

h3 {
    font-size: 1.35rem;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-150%);
}

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

.eyebrow {
    margin-bottom: 16px;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--dark {
    color: rgba(18, 20, 16, 0.7);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 2px solid var(--gold);
    border-radius: 2px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.065em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    border-color: #ebc453;
    background: #ebc453;
    transform: translateY(-2px);
}

.button--compact {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 0.72rem;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.62);
    background: transparent;
    color: #fff;
}

.button--ghost:hover {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
}

.button--dark {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.button--dark:hover {
    border-color: var(--ink-soft);
    background: var(--ink-soft);
    color: #fff;
}

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

.text-link span {
    display: inline-block;
    margin-left: 8px;
    color: var(--gold-dark);
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.topbar {
    min-height: 38px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    letter-spacing: 0.035em;
}

.topbar__inner,
.topbar__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.topbar__inner {
    min-height: 38px;
}

.topbar__links a {
    color: #fff;
    text-decoration: none;
}

.topbar__links a:last-child {
    color: var(--gold);
    font-weight: 800;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(18, 20, 16, 0.09);
    background: rgba(255, 255, 255, 0.97);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(18, 20, 16, 0.1);
}

.site-header__inner {
    display: grid;
    height: 100%;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    width: 210px;
    text-decoration: none;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.3vw, 34px);
}

.main-nav a {
    position: relative;
    padding-block: 30px;
    color: var(--ink);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 3px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin-block: 5px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 122px));
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.hero__media,
.hero__overlay,
.page-hero__media,
.page-hero__overlay,
.quality-section__media {
    position: absolute;
    inset: 0;
}

.hero__media {
    background: url("../img/hero.jpg") center 58% / cover no-repeat;
    transform: scale(1.02);
}

.hero__overlay {
    background: rgba(10, 12, 9, 0.68);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 610px;
    max-width: var(--container);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 85px 120px;
}

.hero h1 {
    max-width: 890px;
    margin-bottom: 26px;
    color: #fff;
    text-transform: uppercase;
}

.hero__lead {
    max-width: 670px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.hero__facts {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.hero__facts div {
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 15px;
    padding: 25px 34px;
    border-right: 1px solid var(--line);
}

.hero__facts div:last-child {
    border-right: 0;
}

.hero__facts strong {
    color: var(--gold-dark);
    font-size: 1.5rem;
    white-space: nowrap;
}

.hero__facts span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding-block: clamp(78px, 9vw, 128px);
}

.section--muted {
    background: var(--surface);
}

.section--dark {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(50px, 8vw, 120px);
}

.split h2,
.section-heading h2,
.media-split h2 {
    margin-bottom: 0;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose--lead {
    color: var(--muted);
    font-size: 1.12rem;
}

.prose--lead .text-link {
    display: inline-block;
    margin-top: 15px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 46px;
}

.section-heading > div {
    max-width: 720px;
}

.section-heading > p {
    max-width: 420px;
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading--center {
    display: block;
    text-align: center;
}

.section-heading--light h2 {
    color: #fff;
}

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.68);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 12px 36px rgba(18, 20, 16, 0.08);
}

.service-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 450ms ease;
}

.service-card:nth-child(2) img {
    object-position: center 62%;
}

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

.service-card__body {
    position: relative;
    min-height: 245px;
    padding: 34px;
}

.service-card__body > span {
    display: block;
    margin-bottom: 28px;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.service-card__body h3 {
    margin-bottom: 14px;
}

.service-card__body p {
    margin-bottom: 0;
    color: var(--muted);
}

.media-split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(55px, 8vw, 110px);
}

.media-split--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.media-split__image {
    position: relative;
}

.media-split__image > img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-note {
    position: absolute;
    right: -25px;
    bottom: -25px;
    display: flex;
    width: 190px;
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    background: var(--gold);
    color: var(--ink);
}

.image-note strong {
    font-size: 1.6rem;
}

.image-note span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-split__content > p:not(.eyebrow) {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 38px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 31px;
}

.check-list li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 15px;
    height: 8px;
    border-bottom: 2px solid var(--gold-dark);
    border-left: 2px solid var(--gold-dark);
    content: "";
    transform: rotate(-45deg);
}

.check-list--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.quality-section {
    min-height: 690px;
    overflow: hidden;
}

.quality-section__media {
    left: 48%;
    background: url("../img/quality.jpg") center / cover no-repeat;
    opacity: 0.52;
}

.quality-section__content {
    position: relative;
    z-index: 1;
    margin-left: max(0px, calc((100% - var(--container)) / 2));
}

.quality-section__content > * {
    max-width: 575px;
}

.quality-section h2 {
    color: #fff;
}

.quality-list {
    display: grid;
    gap: 1px;
    margin-top: 44px;
    background: rgba(255, 255, 255, 0.12);
}

.quality-list div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 18px 0;
    background: var(--ink);
}

.quality-list strong {
    color: var(--gold);
}

.suppliers {
    overflow: hidden;
}

.supplier-label {
    margin: 35px 0 18px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 35px;
    padding-block: 22px 38px;
}

.logo-row--controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 820px;
    margin-inline: auto;
    border-bottom: 1px solid var(--line);
}

.logo-row img {
    width: 100%;
    max-width: 180px;
    max-height: 75px;
    margin-inline: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 180ms ease, opacity 180ms ease;
}

.logo-row img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.page-hero {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--ink);
}

.page-hero__media {
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.page-hero--specialization .page-hero__media {
    background-image: url("../img/pump-failure.jpg");
    background-position: center 43%;
}

.page-hero--about .page-hero__media {
    background-image: url("../img/about.webp");
    background-position: center 60%;
}

.page-hero--contact .page-hero__media {
    background-image: url("../img/contact.webp");
    background-position: center 48%;
}

.page-hero__overlay {
    background: rgba(10, 12, 9, 0.67);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 470px;
    max-width: var(--container);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 75px;
    color: #fff;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(2.55rem, 5vw, 4.5rem);
    text-transform: uppercase;
}

.page-hero__content > p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
}

.process-list {
    display: grid;
    margin: 0;
    padding: 0;
    counter-reset: none;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 35px;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.process-list > li > span {
    color: var(--gold-dark);
    font-size: 1.6rem;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 8px;
}

.process-list p {
    max-width: 800px;
    margin-bottom: 0;
    color: var(--muted);
}

.feature-band {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 90px;
}

.value-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.value-row span {
    padding: 8px 13px;
    border-left: 3px solid var(--gold);
    background: var(--surface);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.case-study__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.16);
}

.case-study__grid div {
    display: flex;
    min-height: 160px;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: var(--ink);
}

.case-study__grid strong {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1.75rem;
}

.case-study__grid span {
    color: rgba(255, 255, 255, 0.68);
}

.prose--light {
    color: rgba(255, 255, 255, 0.72);
}

.prose--wide {
    max-width: 900px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery__item {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: var(--ink);
    cursor: zoom-in;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: opacity 180ms ease, transform 320ms ease;
}

.gallery__item span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 35px 17px 16px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: left;
}

.gallery__item:hover img {
    opacity: 0.82;
    transform: scale(1.035);
}

.lightbox {
    width: min(92vw, 1050px);
    max-height: 90vh;
    padding: 0;
    border: 0;
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.82);
}

.lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.lightbox p {
    margin: 0;
    padding: 14px 60px 16px 18px;
}

.lightbox__close {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(50px, 8vw, 115px);
}

.contact-details > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-cards {
    display: grid;
    gap: 1px;
    margin: 35px 0;
    background: var(--line);
}

.contact-cards > * {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 20px 0;
    background: var(--paper);
    text-decoration: none;
}

.contact-cards span,
.company-list dt,
.bank-details dt {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-cards strong {
    color: var(--ink);
    font-size: 1.12rem;
}

.contact-cards a:hover strong {
    color: var(--gold-dark);
}

.company-list,
.bank-details dl {
    margin: 0;
}

.company-list div,
.bank-details dl div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.company-list dd,
.bank-details dd {
    margin: 0;
}

.bank-details {
    margin-top: 28px;
    border-bottom: 1px solid var(--line);
}

.bank-details summary {
    padding: 14px 0;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.bank-details dl {
    padding-bottom: 18px;
}

.form-panel {
    padding: clamp(32px, 5vw, 62px);
    background: var(--surface);
}

.contact-form {
    display: grid;
    gap: 21px;
    margin-top: 35px;
}

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

.contact-form label:not(.consent) {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.contact-form label > span {
    color: var(--muted);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbcbbf;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
}

.contact-form input {
    min-height: 51px;
    padding: 10px 13px;
}

.contact-form textarea {
    min-height: 155px;
    padding: 13px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-dark);
    outline: 2px solid rgba(215, 169, 47, 0.3);
}

.consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.consent input {
    width: 18px;
    min-height: 18px;
    margin: 2px 0 0;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-status {
    min-height: 26px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-status.is-error {
    color: var(--danger);
}

.form-status.is-success {
    color: var(--success);
}

.contact-form .button[disabled] {
    cursor: wait;
    opacity: 0.62;
}

.page-title {
    background: var(--ink);
    color: #fff;
}

.page-title__inner {
    padding-block: 80px;
}

.page-title h1 {
    margin-bottom: 0;
    color: #fff;
}

.prose--legal {
    max-width: 820px;
}

.prose--legal h2 {
    margin: 52px 0 18px;
    font-size: 1.7rem;
}

.prose--legal h2:first-child {
    margin-top: 0;
}

.emergency-bar {
    background: var(--gold);
}

.emergency-bar__inner {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.emergency-bar__inner > div {
    display: flex;
    flex-direction: column;
}

.emergency-bar strong {
    color: var(--ink);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.site-footer {
    padding-block: 75px 0;
    background: #10120f;
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
    gap: 50px;
}

.brand--footer {
    padding: 13px;
    background: #fff;
}

.footer-brand p {
    max-width: 310px;
    margin-top: 20px;
}

.site-footer h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 0.79rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-footer address {
    font-style: normal;
}

.site-footer address a {
    color: #fff;
    text-decoration: none;
}

.footer-links,
.company-data {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover,
.site-footer address a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 65px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

.mobile-call {
    display: none;
}

@media (max-width: 1060px) {
    :root {
        --header-height: 74px;
    }

    .site-header__inner {
        grid-template-columns: 190px 1fr auto;
        gap: 18px;
    }

    .brand {
        width: 185px;
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        gap: 22px;
    }

    .hero__facts {
        width: min(calc(100% - 40px), var(--container));
    }

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

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

@media (max-width: 820px) {
    body {
        padding-bottom: 64px;
        font-size: 16px;
    }

    .topbar {
        display: none;
    }

    .site-header__inner {
        display: flex;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 90;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        padding: 25px 20px 90px;
        background: #fff;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 20px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 0.94rem;
    }

    .main-nav a::after {
        top: 0;
        right: auto;
        bottom: 0;
        width: 4px;
        height: auto;
    }

    .hero {
        min-height: auto;
    }

    .hero__overlay {
        background: rgba(10, 12, 9, 0.75);
    }

    .hero__content {
        min-height: 570px;
        padding-block: 80px 130px;
    }

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

    .hero__facts div {
        min-height: 96px;
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
        padding: 18px;
    }

    .hero__facts strong {
        font-size: 1.15rem;
    }

    .hero__facts span {
        font-size: 0.65rem;
    }

    .split,
    .media-split,
    .media-split--reverse,
    .feature-band,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
    }

    .service-card img {
        height: 100%;
        min-height: 310px;
    }

    .media-split__image > img {
        min-height: 420px;
    }

    .quality-section__media {
        left: 30%;
        opacity: 0.44;
    }

    .quality-section__content {
        margin-left: auto;
    }

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

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

    .case-study__grid {
        grid-template-columns: 1fr;
    }

    .case-study__grid div {
        min-height: 125px;
    }

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

    .mobile-call {
        position: fixed;
        z-index: 150;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 64px;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: var(--gold);
        color: var(--ink);
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-call span {
        padding-right: 12px;
        border-right: 1px solid rgba(18, 20, 16, 0.3);
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 590px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand {
        width: 170px;
    }

    .hero__content {
        min-height: 610px;
        padding-block: 70px 160px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        overflow-wrap: break-word;
    }

    .hero__media {
        background-position: 43% center;
    }

    .hero__overlay {
        background: rgba(10, 12, 9, 0.6);
    }

    .hero__actions,
    .hero__actions .button {
        width: 100%;
    }

    .hero__facts {
        width: 100%;
    }

    .hero__facts div {
        min-height: 104px;
        padding: 14px 10px;
    }

    .hero__facts span {
        line-height: 1.3;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading,
    .emergency-bar__inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading {
        display: flex;
        gap: 16px;
    }

    .service-card {
        display: block;
    }

    .service-card img {
        height: 250px;
        min-height: 0;
    }

    .service-card__body {
        min-height: 0;
        padding: 28px;
    }

    .media-split__image > img {
        min-height: 340px;
    }

    .image-note {
        right: -8px;
        bottom: -20px;
        width: 155px;
        min-height: 115px;
        padding: 20px;
    }

    .check-list--columns,
    .form-row {
        grid-template-columns: 1fr;
    }

    .quality-section__media {
        left: 0;
        opacity: 0.28;
    }

    .logo-row,
    .logo-row--controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .page-hero,
    .page-hero__content {
        min-height: 430px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        overflow-wrap: break-word;
    }

    .process-list li {
        grid-template-columns: 58px 1fr;
        gap: 18px;
    }

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

    .gallery__item,
    .gallery__item img {
        min-height: 330px;
    }

    .form-panel {
        padding: 30px 20px;
    }

    .company-list div,
    .bank-details dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .emergency-bar__inner {
        padding-block: 32px;
    }

    .emergency-bar__inner .button {
        width: 100%;
    }

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

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

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

/* --------------------------------------------------------------------------
   Vizuálny refresh 2026 – prémiový industriálny štýl
   -------------------------------------------------------------------------- */

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/oswald-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/oswald-latin-ext.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --ink: #11120f;
    --ink-soft: #20231d;
    --paper: #ffffff;
    --surface: #f5f3ed;
    --surface-strong: #e8e5dc;
    --gold: #d9ad3b;
    --gold-dark: #8b6410;
    --text: #252820;
    --muted: #666b60;
    --line: #d8d7cf;
    --shadow: 0 28px 75px rgba(16, 18, 14, 0.16);
    --container: 1240px;
    --header-height: 88px;
}

body {
    background: #fbfaf7;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

h1,
h2,
h3 {
    font-family: "Oswald", "Arial Narrow", sans-serif;
    letter-spacing: -0.018em;
    line-height: 1.03;
}

h2 {
    max-width: 900px;
    font-size: clamp(2.55rem, 4.2vw, 4.3rem);
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.55rem, 2vw, 2.05rem);
    font-weight: 600;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 19px;
    color: var(--gold-dark);
    font-size: 0.7rem;
    letter-spacing: 0.19em;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.hero__eyebrow::before,
.eyebrow--dark::before {
    display: none;
}

.button {
    position: relative;
    min-height: 56px;
    padding: 16px 27px;
    border-width: 1px;
    border-radius: 0;
    overflow: hidden;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    box-shadow: none;
}

.button::after {
    margin-left: 13px;
    content: "↗";
    font-size: 1rem;
    line-height: 1;
    transition: transform 180ms ease;
}

.button:hover::after {
    transform: translate(3px, -3px);
}

.button--compact {
    min-height: 46px;
    padding: 12px 18px;
}

.topbar {
    min-height: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c0d0b;
    font-size: 0.69rem;
    letter-spacing: 0.06em;
}

.topbar__inner {
    min-height: 36px;
}

.topbar__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
}

.topbar__status i,
.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(217, 173, 59, 0.12);
}

.site-header {
    height: var(--header-height);
    border-bottom: 1px solid rgba(17, 18, 15, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 45px rgba(17, 18, 15, 0.1);
}

.site-header__inner {
    grid-template-columns: 225px 1fr auto;
    gap: 42px;
}

.brand {
    width: 215px;
}

.main-nav {
    gap: clamp(21px, 2.4vw, 38px);
}

.main-nav a {
    padding-block: 31px;
    font-size: 0.71rem;
    letter-spacing: 0.095em;
}

.main-nav a::after {
    bottom: 21px;
    height: 2px;
}

.hero {
    min-height: min(820px, calc(100vh - 124px));
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__media {
    background-position: center 56%;
    filter: saturate(0.85) contrast(1.06);
    transform: scale(1.015);
}

.hero__overlay {
    background: rgba(8, 10, 7, 0.62);
}

.hero__line {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.hero__line--top {
    top: 88px;
    right: 0;
    left: 0;
    height: 1px;
}

.hero__line--side {
    top: 0;
    bottom: 0;
    left: calc(50% + 385px);
    width: 1px;
}

.hero__content {
    display: grid;
    min-height: 670px;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: center;
    gap: clamp(55px, 7vw, 100px);
    padding-block: 70px 145px;
}

.hero__copy {
    position: relative;
    max-width: 870px;
}

.hero__eyebrow {
    color: var(--gold);
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 30px;
    font-size: clamp(4rem, 6.5vw, 6.65rem);
    font-weight: 600;
    letter-spacing: -0.027em;
    line-height: 0.9;
}

.hero h1 span {
    display: block;
}

.hero__title-accent {
    color: var(--gold);
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 34px;
    padding-left: 21px;
    border-left: 2px solid var(--gold);
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero__quick-contact {
    position: relative;
    align-self: end;
    margin-bottom: 66px;
    padding: 30px;
    border-top: 3px solid var(--gold);
    background: rgba(12, 14, 11, 0.88);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.25);
}

.hero__quick-label {
    display: block;
    margin-bottom: 29px;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero__quick-contact strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.hero__quick-contact p {
    margin-bottom: 24px;
    font-size: 0.89rem;
    line-height: 1.55;
}

.hero__quick-contact a {
    display: block;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.hero__quick-contact small {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #f8f7f3;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.hero__facts div {
    display: grid;
    min-height: 118px;
    grid-template-columns: 34px auto 1fr;
    align-items: center;
    gap: 17px;
    padding: 26px 30px;
}

.hero__facts div > span {
    align-self: start;
    padding-top: 6px;
    color: #999b93;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero__facts strong {
    color: var(--gold-dark);
    font-family: "Oswald", sans-serif;
    font-size: 2.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero__facts small {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.45;
    text-transform: uppercase;
}

.section {
    padding-block: clamp(92px, 10vw, 148px);
}

.intro-section {
    background: #fbfaf7;
}

.split--intro {
    position: relative;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.split--intro::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(55% + 5px);
    width: 1px;
    background: var(--line);
    content: "";
}

.prose--lead {
    align-self: end;
    padding-bottom: 7px;
    font-size: 1.08rem;
}

.section--muted {
    border-block: 1px solid #e6e3da;
    background: var(--surface);
}

.section-heading {
    position: relative;
    margin-bottom: 58px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.section-heading::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 86px;
    height: 3px;
    background: var(--gold);
    content: "";
}

.section-heading--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
    grid-template-rows: repeat(2, minmax(285px, auto));
    gap: 18px;
}

.service-card {
    border: 1px solid #e1dfd6;
    background: #fff;
    box-shadow: none;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 55px rgba(19, 21, 17, 0.12);
    transform: translateY(-5px);
}

.service-card:first-child {
    display: grid;
    grid-row: 1 / 3;
    grid-template-rows: minmax(390px, 1fr) auto;
}

.service-card:first-child img {
    height: 100%;
    min-height: 390px;
}

.service-card:not(:first-child) {
    display: grid;
    grid-template-columns: minmax(135px, 0.72fr) minmax(210px, 1.28fr);
}

.service-card:not(:first-child) img {
    height: 100%;
    min-height: 285px;
}

.service-card__body {
    min-height: 0;
    padding: 32px;
}

.service-card:first-child .service-card__body {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 18px;
    padding: 36px 38px;
}

.service-card:first-child .service-card__body > span {
    grid-row: 1 / 3;
}

.service-card__body > span {
    margin-bottom: 21px;
    color: var(--gold-dark);
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
}

.service-card__body h3 {
    margin-bottom: 11px;
}

.service-card__body p {
    font-size: 0.9rem;
    line-height: 1.65;
}

.media-split {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.media-split__image::before {
    position: absolute;
    z-index: -1;
    top: 26px;
    right: -26px;
    bottom: -26px;
    left: 26px;
    border: 1px solid var(--gold);
    content: "";
}

.media-split__image > img {
    min-height: 560px;
    box-shadow: 0 30px 75px rgba(20, 22, 18, 0.2);
}

.image-note {
    right: -27px;
    bottom: 38px;
    width: 185px;
    min-height: 145px;
    border-left: 1px solid rgba(17, 18, 15, 0.2);
    background: var(--gold);
}

.image-note strong {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.check-list li {
    padding: 13px 0 13px 37px;
    border-bottom: 1px solid var(--line);
}

.quality-section {
    min-height: 760px;
    border-block: 0;
}

.quality-section::after {
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
    content: "";
}

.quality-section__media {
    left: 50%;
    opacity: 0.66;
    filter: saturate(0.55) contrast(1.12);
}

.quality-section__content > * {
    max-width: 535px;
}

.quality-section h2,
.case-study h2 {
    font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.quality-list {
    margin-top: 45px;
    background: transparent;
}

.quality-list div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quality-list strong {
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
}

.suppliers {
    background: #fff;
}

.logo-row {
    gap: 0;
    padding-block: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.logo-row--controls {
    max-width: none;
    border-bottom: 0;
}

.logo-row img {
    width: 100%;
    max-width: none;
    height: 128px;
    max-height: none;
    padding: 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    object-fit: contain;
}

.supplier-label {
    margin-top: 42px;
    text-align: left;
}

.page-hero {
    min-height: 550px;
}

.page-hero__content {
    min-height: 550px;
    padding-block: 90px;
}

.page-hero__overlay {
    background: rgba(8, 10, 7, 0.66);
}

.page-hero h1 {
    max-width: 960px;
    font-size: clamp(3.7rem, 6.5vw, 6.3rem);
    font-weight: 600;
    line-height: 0.92;
}

.process-list li {
    grid-template-columns: 110px 1fr;
    padding: 42px 0;
    transition: padding-left 180ms ease, border-color 180ms ease;
}

.process-list li:hover {
    padding-left: 16px;
    border-color: var(--gold);
}

.process-list > li > span {
    color: var(--gold-dark);
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
}

.case-study__grid div {
    border-top: 2px solid var(--gold);
}

.case-study__grid strong {
    font-family: "Oswald", sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
}

.gallery {
    gap: 8px;
}

.gallery__item {
    border-bottom: 3px solid transparent;
}

.gallery__item:hover {
    border-color: var(--gold);
}

.contact-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.contact-cards {
    background: transparent;
}

.contact-cards > * {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.form-panel {
    position: relative;
    border-top: 4px solid var(--gold);
    background: #efede6;
    box-shadow: 0 28px 70px rgba(17, 18, 15, 0.12);
}

.contact-form input,
.contact-form textarea {
    border: 0;
    border-bottom: 1px solid #aaa99f;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-dark);
    outline: 0;
    box-shadow: inset 0 -2px 0 var(--gold);
}

.emergency-bar {
    position: relative;
    overflow: hidden;
}

.emergency-bar::after {
    position: absolute;
    top: -65px;
    right: 10%;
    width: 1px;
    height: 280px;
    background: rgba(17, 18, 15, 0.25);
    content: "";
    transform: rotate(28deg);
}

.site-footer {
    background: #0d0e0c;
}

.brand--footer {
    background: #f7f6f1;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.09);
}

.reveal-ready .reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-ready .service-card:nth-child(2),
.reveal-ready .gallery__item:nth-child(2) {
    transition-delay: 80ms;
}

.reveal-ready .service-card:nth-child(3),
.reveal-ready .gallery__item:nth-child(3) {
    transition-delay: 150ms;
}

.reveal-ready .gallery__item:nth-child(4) {
    transition-delay: 220ms;
}

@media (max-width: 1120px) {
    .site-header__inner {
        grid-template-columns: 200px 1fr;
        gap: 22px;
    }

    .brand {
        width: 195px;
    }

    .header-cta {
        display: none;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 7vw, 5.5rem);
    }

    .hero__quick-contact {
        padding: 25px;
    }

    .service-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 770px;
    }

    .hero__content {
        display: flex;
        min-height: 650px;
        align-items: flex-start;
        justify-content: center;
        padding-block: 90px 160px;
    }

    .hero__quick-contact,
    .hero__line--side {
        display: none;
    }

    .hero__copy {
        max-width: 760px;
    }

    .hero__facts div {
        grid-template-columns: 25px 1fr;
        gap: 4px 10px;
    }

    .hero__facts small {
        grid-column: 2;
    }

    .split--intro::before,
    .quality-section::after {
        display: none;
    }

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

    .service-card:first-child {
        grid-row: auto;
    }

    .service-card:not(:first-child) {
        grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
    }

    .media-split__image::before {
        right: -14px;
        bottom: -14px;
        left: 14px;
    }

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

@media (max-width: 820px) {
    :root {
        --header-height: 74px;
    }

    .site-header__inner {
        display: flex;
    }

    .brand {
        width: 180px;
    }

    .main-nav a {
        padding: 21px 12px;
        font-size: 0.86rem;
    }

    .hero__line--top {
        top: 74px;
    }

    .hero__facts {
        width: 100%;
    }

    .hero__facts div {
        min-height: 110px;
        padding: 19px 15px;
    }

    .hero__facts strong {
        font-size: 1.65rem;
    }

    .media-split__image > img {
        min-height: 440px;
    }

    .quality-section__media {
        left: 26%;
        opacity: 0.36;
    }

    .quality-section__content > * {
        max-width: 620px;
    }

    .page-hero,
    .page-hero__content {
        min-height: 500px;
    }
}

@media (max-width: 590px) {
    .hero {
        min-height: 735px;
    }

    .hero__media {
        background-position: 44% center;
    }

    .hero__overlay {
        background: rgba(8, 10, 7, 0.59);
    }

    .hero__content {
        min-height: 625px;
        justify-content: flex-start;
        padding-block: 70px 150px;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: clamp(2.85rem, 13.5vw, 3.45rem);
        line-height: 0.92;
        overflow-wrap: normal;
    }

    .hero__lead {
        margin-bottom: 27px;
        padding-left: 15px;
        font-size: 0.93rem;
        line-height: 1.65;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .hero__actions .button {
        min-height: 53px;
        padding: 12px 9px;
        font-size: 0.62rem;
    }

    .hero__actions .button::after {
        margin-left: 6px;
    }

    .hero__facts div {
        min-height: 110px;
        grid-template-columns: 1fr;
        gap: 0;
        align-content: center;
        padding: 14px 10px;
    }

    .hero__facts div > span {
        display: none;
    }

    .hero__facts strong,
    .hero__facts small {
        grid-column: 1;
    }

    .hero__facts strong {
        font-size: 1.45rem;
    }

    .hero__facts small {
        font-size: 0.56rem;
    }

    h2 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .section-heading {
        gap: 18px;
        margin-bottom: 38px;
        padding-bottom: 24px;
    }

    .service-card:first-child,
    .service-card:not(:first-child) {
        display: block;
    }

    .service-card:first-child img,
    .service-card:not(:first-child) img {
        height: 255px;
        min-height: 0;
    }

    .service-card:first-child .service-card__body {
        display: block;
        padding: 28px;
    }

    .service-card__body {
        padding: 28px;
    }

    .media-split__image > img {
        min-height: 350px;
    }

    .image-note {
        right: -5px;
        bottom: 24px;
        width: 150px;
        min-height: 110px;
    }

    .quality-section {
        min-height: 720px;
    }

    .quality-section__media {
        left: 0;
        opacity: 0.23;
    }

    .logo-row,
    .logo-row--controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-row img {
        height: 105px;
        padding: 27px;
    }

    .page-hero h1 {
        font-size: clamp(2.9rem, 13vw, 3.7rem);
        line-height: 0.94;
    }

    .process-list li {
        grid-template-columns: 53px 1fr;
        padding: 34px 0;
    }

    .form-panel {
        padding: 36px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready .reveal-item {
        opacity: 1;
        transform: none;
    }
}
