/* =========================================================
   LUXKRONE REINIGUNGSSERVICE
   PREMIUM STYLE SYSTEM
   ========================================================= */


/* =========================================================
   01 — DESIGN SYSTEM
   ========================================================= */

:root {
    --white: #ffffff;
    --paper: #f8f8f6;
    --paper-2: #f1f1ed;

    --ink: #171715;
    --ink-soft: #363632;
    --muted: #74746d;

    --line: rgba(23, 23, 21, 0.12);
    --line-light: rgba(255, 255, 255, 0.14);

    --gold: #b69a67;
    --gold-dark: #927844;
    --gold-soft: #d1bd92;

    --black: #10100f;

    --container: 1280px;
    --gutter: 42px;

    --header-height: 84px;

    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   02 — RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    background: var(--white);

    scroll-behavior: smooth;
    scroll-padding-top: 100px;

    overflow-x: hidden;
}


body {
    margin: 0;
    padding: 0;

    min-height: 100vh;

    background: var(--white);
    color: var(--ink);

    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img {
    display: block;
    width: 100%;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


::selection {
    background: var(--gold);
    color: var(--white);
}


/* =========================================================
   03 — GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04 — LOADER
   ========================================================= */

.loader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    transition:
        opacity 0.9s var(--ease),
        visibility 0.9s var(--ease);
}


.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.loader-inner {
    width: min(320px, calc(100% - 50px));

    text-align: center;
}


.loader-mark {
    width: 56px;
    height: 56px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.loader-name {
    margin-bottom: 20px;

    color: var(--ink);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
}


.loader-progress {
    position: relative;

    width: 100%;
    height: 1px;

    overflow: hidden;

    background: var(--paper-2);
}


.loader-progress::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 35%;
    height: 100%;

    background: var(--gold);

    animation: loader-line 1.7s var(--ease) infinite;
}


@keyframes loader-line {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(400%);
    }
}


/* =========================================================
   05 — HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid transparent;

    transition:
        height 0.45s var(--ease),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}


.site-header.scrolled {
    height: 72px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom-color: var(--line);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.035);
}


.header-inner {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 40px;
}


/* =========================================================
   06 — BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}


.brand-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;

    transition:
        background 0.4s var(--ease),
        color 0.4s var(--ease);
}


.brand:hover .brand-mark {
    background: var(--gold);
    color: var(--white);
}


.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.brand-text strong {
    color: var(--ink);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.20em;
}


.brand-text span {
    margin-top: 6px;

    color: var(--muted);

    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* =========================================================
   07 — DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 32px;

    margin-left: auto;
}


.desktop-nav a {
    position: relative;

    padding: 8px 0;

    color: var(--ink-soft);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.015em;

    transition: color 0.3s ease;
}


.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 1px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.4s var(--ease);
}


.desktop-nav a:hover {
    color: var(--ink);
}


.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   08 — HEADER CONTACT
   ========================================================= */

.header-contact {
    display: flex;
    align-items: center;

    gap: 20px;
}


.header-phone {
    color: var(--ink);

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   09 — BUTTONS
   ========================================================= */

.button {
    position: relative;

    min-height: 48px;

    padding: 13px 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;

    overflow: hidden;

    transition:
        color 0.4s var(--ease),
        background 0.4s var(--ease),
        border-color 0.4s var(--ease),
        transform 0.4s var(--ease);
}


.button::before {
    content: "";

    position: absolute;
    inset: 0;

    background: var(--white);

    transform: translateY(101%);

    transition: transform 0.45s var(--ease);
}


.button span,
.button > * {
    position: relative;
    z-index: 1;
}


.button:hover {
    transform: translateY(-2px);
}


.button:hover::before {
    transform: translateY(0);
}


.button-dark {
    background: var(--ink);
    color: var(--white);
}


.button-dark:hover {
    color: var(--ink);
}


.button-gold {
    background: var(--gold);
    color: var(--white);
}


.button-gold:hover {
    color: var(--ink);
}


.button-outline {
    border-color: rgba(23, 23, 21, 0.22);

    background: transparent;

    color: var(--ink);
}


.button-outline::before {
    background: var(--ink);
}


.button-outline:hover {
    color: var(--white);

    border-color: var(--ink);
}


.button-small {
    min-height: 43px;

    padding: 11px 17px;
}


.button-large {
    min-height: 55px;

    padding: 15px 27px;
}


/* =========================================================
   10 — MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
    width: 46px;
    height: 46px;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--line);

    background: var(--white);

    cursor: pointer;
}


.menu-button span {
    width: 19px;
    height: 1px;

    background: var(--ink);

    transition:
        transform 0.4s var(--ease),
        opacity 0.25s ease;
}


.menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}


.menu-button.active span:nth-child(2) {
    opacity: 0;
}


.menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   11 — MOBILE MENU
   ========================================================= */

.mobile-menu {
    position: fixed;

    top: var(--header-height);
    left: 0;

    width: 100%;
    height: calc(100vh - var(--header-height));

    padding: 35px var(--gutter);

    display: flex;
    flex-direction: column;

    background: rgba(255, 255, 255, 0.985);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px);

    transition:
        opacity 0.45s var(--ease),
        visibility 0.45s ease,
        transform 0.45s var(--ease);

    overflow-y: auto;
}


.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


.mobile-menu nav {
    display: flex;
    flex-direction: column;
}


.mobile-menu a {
    position: relative;

    padding: 20px 0;

    border-bottom: 1px solid var(--line);

    color: var(--ink);

    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.mobile-menu a:hover {
    padding-left: 8px;

    color: var(--gold-dark);
}


.mobile-menu-contact {
    margin-top: auto;

    padding-top: 40px;
}


.mobile-menu-contact span {
    display: block;

    margin-bottom: 8px;

    color: var(--muted);

    font-size: 9px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.mobile-menu-contact a {
    padding: 0;

    border: 0;

    font-family: var(--sans);

    font-size: 16px;
    font-weight: 600;
}


/* =========================================================
   12 — HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    padding-top: var(--header-height);

    background: var(--paper);

    overflow: hidden;
}


.hero-container {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    min-height: calc(100vh - var(--header-height));

    margin: auto;

    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);

    align-items: center;

    gap: 75px;
}


.hero-content {
    position: relative;

    z-index: 3;

    padding: 75px 0;
}


.hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}


.hero-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    background: var(--gold);
}


.hero h1 {
    max-width: 700px;

    margin: 0 0 27px;

    color: var(--ink);

    font-family: var(--serif);

    font-size: clamp(54px, 6vw, 91px);
    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -0.048em;
}


.hero-description {
    max-width: 510px;

    margin: 0 0 34px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   13 — HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    height: min(690px, calc(100vh - 135px));

    min-height: 550px;

    overflow: hidden;

    background: var(--paper-2);
}


.hero-visual::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    border: 1px solid rgba(255, 255, 255, 0.25);
}


.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1.4s var(--ease-soft);
}


.hero-visual:hover .hero-image {
    transform: scale(1.045);
}


.hero-floating-card {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 4;

    width: min(280px, calc(100% - 50px));

    padding: 21px 23px;

    background: rgba(255, 255, 255, 0.95);

    border-left: 2px solid var(--gold);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.13);
}


.hero-floating-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 700;
}


.hero-floating-card span {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


.hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 25px;

    z-index: 5;

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    display: flex;
    justify-content: flex-end;

    transform: translateX(-50%);
}


.hero-bottom-text {
    color: var(--muted);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   14 — TRUST
   ========================================================= */

.trust-strip {
    background: var(--ink);

    color: var(--white);
}


.trust-grid {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.trust-item {
    min-height: 120px;

    padding: 25px 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--line-light);
}


.trust-item:last-child {
    border-right: 0;
}


.trust-item strong {
    margin-bottom: 5px;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;
}


.trust-item span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;
}


/* =========================================================
   15 — GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 135px 0;
}


.section-heading {
    max-width: 850px;

    margin-bottom: 72px;
}


.section-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 23px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}


.section-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background: var(--gold);
}


.section-heading h2 {
    margin: 0;

    color: var(--ink);

    font-family: var(--serif);

    font-size: clamp(44px, 5.2vw, 69px);
    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -0.042em;
}


.section-heading p {
    max-width: 620px;

    margin: 23px 0 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   16 — SERVICES
   ========================================================= */

.services {
    background: var(--white);
}


.services-list {
    border-top: 1px solid var(--line);
}


.service-row {
    position: relative;

    min-height: 100px;

    display: grid;

    grid-template-columns: 70px minmax(0, 1fr) 260px 30px;

    align-items: center;

    gap: 30px;

    border-bottom: 1px solid var(--line);

    transition:
        padding 0.55s var(--ease),
        background 0.55s ease;
}


.service-row::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.6s var(--ease);
}


.service-row:hover {
    padding-left: 15px;
    padding-right: 15px;

    background: var(--paper);
}


.service-row:hover::before {
    width: 100%;
}


.service-number {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.service-row h3 {
    margin: 0;

    color: var(--ink);

    font-family: var(--serif);

    font-size: 23px;
    font-weight: 400;

    line-height: 1.2;
}


.service-row p {
    margin: 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}


.service-arrow {
    color: var(--gold);

    font-size: 18px;

    transition:
        transform 0.45s var(--ease),
        color 0.3s ease;
}


.service-row:hover .service-arrow {
    transform: translateX(6px);

    color: var(--gold-dark);
}


/* =========================================================
   17 — IMAGE BREAK
   ========================================================= */

.image-break {
    position: relative;

    height: 600px;

    overflow: hidden;

    background: var(--ink);
}


.image-break img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.2s var(--ease-soft);
}


.image-break:hover img {
    transform: scale(1.025);
}


.image-break-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(16, 16, 15, 0.68) 0%,
            rgba(16, 16, 15, 0.28) 48%,
            rgba(16, 16, 15, 0.03) 100%
        );
}


.image-break-content {
    position: absolute;

    left: max(
        var(--gutter),
        calc((100% - var(--container)) / 2)
    );

    bottom: 85px;

    z-index: 2;

    max-width: 570px;
}


.image-break-content h2 {
    margin: 0 0 17px;

    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(43px, 5.2vw, 68px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.04em;
}


.image-break-content p {
    max-width: 480px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   18 — COMPANY
   ========================================================= */

.company {
    background: var(--paper);
}


.company-grid {
    display: grid;

    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;

    gap: 105px;
}


.company-visual {
    position: relative;
}


.company-visual::before {
    content: "";

    position: absolute;

    top: -18px;
    left: -18px;

    width: 80px;
    height: 80px;

    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);

    pointer-events: none;
}


.company-visual img {
    aspect-ratio: 4 / 5;

    object-fit: cover;
}


.company-content h2 {
    margin: 0 0 26px;

    color: var(--ink);

    font-family: var(--serif);

    font-size: clamp(43px, 5vw, 65px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.04em;
}


.company-content p {
    max-width: 620px;

    margin: 0 0 17px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


.company-signature {
    margin-top: 38px;

    padding-top: 25px;

    border-top: 1px solid var(--line);
}


.company-signature strong {
    display: block;

    margin-bottom: 4px;

    color: var(--ink);

    font-size: 13px;
}


.company-signature span {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   19 — QUALITY
   ========================================================= */

.quality {
    background: var(--white);
}


.quality-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.quality-card {
    min-height: 280px;

    padding: 34px 31px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition:
        background 0.45s ease,
        transform 0.45s var(--ease);
}


.quality-card:hover {
    background: var(--paper);

    transform: translateY(-5px);
}


.quality-number {
    display: block;

    margin-bottom: 82px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.quality-card h3 {
    margin: 0 0 10px;

    color: var(--ink);

    font-family: var(--serif);

    font-size: 24px;
    font-weight: 400;
}


.quality-card p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   20 — PROCESS
   ========================================================= */

.process {
    background: var(--paper);
}


.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
}


.process-step {
    padding: 35px 30px 15px;

    border-right: 1px solid var(--line);
}


.process-step:last-child {
    border-right: 0;
}


.process-number {
    display: block;

    margin-bottom: 50px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.process-step h3 {
    margin: 0 0 11px;

    color: var(--ink);

    font-family: var(--serif);

    font-size: 24px;
    font-weight: 400;
}


.process-step p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   21 — GOLD BANNER
   ========================================================= */

.service-banner {
    padding: 95px 0;

    background: var(--gold);

    color: var(--white);
}


.service-banner-inner {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.service-banner h2 {
    max-width: 760px;

    margin: 0;

    font-family: var(--serif);

    font-size: clamp(40px, 4.7vw, 62px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.035em;
}


.service-banner .button {
    flex-shrink: 0;

    background: var(--white);

    color: var(--ink);
}


.service-banner .button::before {
    background: var(--ink);
}


.service-banner .button:hover {
    color: var(--white);
}


/* =========================================================
   22 — CONTACT
   ========================================================= */

.contact {
    background: var(--ink);

    color: var(--white);
}


.contact .section-label {
    color: var(--gold-soft);
}


.contact-heading {
    max-width: 800px;

    margin-bottom: 75px;
}


.contact-heading h2 {
    margin: 0;

    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(46px, 5.5vw, 73px);
    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.contact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line-light);
}


.contact-item {
    padding: 31px 26px;

    border-right: 1px solid var(--line-light);
}


.contact-item:last-child {
    border-right: 0;
}


.contact-item span {
    display: block;

    margin-bottom: 13px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.contact-item a,
.contact-item strong {
    color: var(--white);

    font-size: 16px;
    font-weight: 500;
}


.contact-item a {
    transition: color 0.3s ease;
}


.contact-item a:hover {
    color: var(--gold-soft);
}


.contact-cta {
    margin-top: 52px;
}


/* =========================================================
   23 — FOOTER
   ========================================================= */

.footer {
    background: var(--black);

    color: var(--white);
}


.footer-main {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin: auto;

    padding: 75px 0 60px;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 55px;
}


.footer-column h3 {
    margin: 0 0 20px;

    color: var(--white);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    line-height: 2;
}


.footer-column a {
    display: block;

    transition: color 0.3s ease;
}


.footer-column a:hover {
    color: var(--white);
}


.footer-brand strong {
    display: block;

    margin-bottom: 11px;

    color: var(--white);

    font-size: 16px;
    letter-spacing: 0.18em;
}


.footer-brand p {
    max-width: 290px;
}


.footer-bottom {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin: auto;

    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--line-light);

    color: rgba(255, 255, 255, 0.28);

    font-size: 9px;
}


/* =========================================================
   24 — SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.9s var(--ease-soft),
        transform 0.9s var(--ease-soft);
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   25 — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    :root {
        --gutter: 30px;
    }


    .desktop-nav {
        gap: 20px;
    }


    .header-phone {
        display: none;
    }


    .hero-container {
        grid-template-columns: 0.9fr 1.1fr;

        gap: 40px;
    }


    .hero h1 {
        font-size: clamp(48px, 6vw, 72px);
    }


    .hero-visual {
        min-height: 500px;
        height: 600px;
    }


    .company-grid {
        gap: 60px;
    }


    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .quality-card:nth-child(2) {
        border-right: 0;
    }


    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .process-step:nth-child(2) {
        border-right: 0;
    }


    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 1px solid var(--line);
    }


    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   26 — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    :root {
        --gutter: 18px;
        --header-height: 68px;
    }


    html {
        scroll-padding-top: 80px;
    }


    body {
        font-size: 14px;
    }


    .container {
        width: calc(100% - 36px);
    }


    /* HEADER */

    .site-header {
        height: var(--header-height);

        padding-top: env(safe-area-inset-top);
    }


    .site-header.scrolled {
        height: 64px;
    }


    .header-inner {
        width: calc(100% - 36px);

        gap: 12px;
    }


    .desktop-nav,
    .header-contact {
        display: none;
    }


    .menu-button {
        display: flex;

        margin-left: auto;
    }


    .brand {
        gap: 9px;
    }


    .brand-mark {
        width: 36px;
        height: 36px;

        font-size: 10px;
    }


    .brand-text strong {
        font-size: 12px;
        letter-spacing: 0.16em;
    }


    .brand-text span {
        margin-top: 4px;

        font-size: 6px;
        letter-spacing: 0.16em;
    }


    /* MOBILE MENU */

    .mobile-menu {
        top: var(--header-height);

        height: calc(100dvh - var(--header-height));

        padding:
            25px 18px
            calc(25px + env(safe-area-inset-bottom));
    }


    .mobile-menu a {
        padding: 18px 0;

        font-size: 24px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top: var(--header-height);
    }


    .hero-container {
        width: calc(100% - 36px);

        min-height: auto;

        display: flex;
        flex-direction: column;

        gap: 0;
    }


    .hero-content {
        width: 100%;

        padding: 58px 0 34px;
    }


    .hero-eyebrow {
        margin-bottom: 18px;

        font-size: 8px;
        letter-spacing: 0.15em;
    }


    .hero-eyebrow::before {
        width: 24px;
    }


    .hero h1 {
        max-width: 100%;

        margin-bottom: 20px;

        font-size: clamp(43px, 12.5vw, 58px);

        line-height: 0.96;
    }


    .hero-description {
        margin-bottom: 27px;

        font-size: 13px;

        line-height: 1.75;
    }


    .hero-buttons {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .hero-buttons .button {
        width: 100%;
    }


    .button {
        min-height: 51px;

        padding: 13px 18px;
    }


    .hero-visual {
        width: 100%;

        height: auto;
        min-height: 0;

        aspect-ratio: 4 / 3;
    }


    .hero-image {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        transform: none;
    }


    .hero-visual:hover .hero-image {
        transform: none;
    }


    .hero-floating-card {
        right: 12px;
        bottom: 12px;

        width: auto;
        max-width: 220px;

        padding: 14px 15px;
    }


    .hero-floating-card strong {
        font-size: 11px;
    }


    .hero-floating-card span {
        font-size: 9px;
    }


    .hero-bottom {
        position: static;

        width: 100%;

        padding: 15px 0 20px;

        transform: none;

        justify-content: flex-start;
    }


    .hero-bottom-text {
        font-size: 7px;
    }


    /* TRUST */

    .trust-grid {
        width: 100%;

        grid-template-columns: 1fr 1fr;
    }


    .trust-item {
        min-height: 95px;

        padding: 18px 16px;
    }


    .trust-item:nth-child(2) {
        border-right: 0;
    }


    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid var(--line-light);
    }


    .trust-item strong {
        font-size: 10px;
    }


    .trust-item span {
        font-size: 8px;
    }


    /* SECTIONS */

    .section {
        padding: 80px 0;
    }


    .section-heading {
        margin-bottom: 45px;
    }


    .section-label {
        margin-bottom: 18px;

        font-size: 8px;
    }


    .section-label::before {
        width: 25px;
    }


    .section-heading h2 {
        font-size: clamp(38px, 11vw, 52px);

        line-height: 1;
    }


    .section-heading p {
        margin-top: 17px;

        font-size: 13px;

        line-height: 1.75;
    }


    /* SERVICES */

    .service-row {
        min-height: 70px;

        grid-template-columns: 30px minmax(0, 1fr) 18px;

        gap: 10px;

        padding: 18px 0;
    }


    .service-row:hover {
        padding-left: 0;
        padding-right: 0;

        background: transparent;
    }


    .service-row::before {
        height: 1px;
    }


    .service-number {
        align-self: start;

        padding-top: 4px;

        font-size: 8px;
    }


    .service-row h3 {
        font-size: 18px;

        line-height: 1.15;
    }


    .service-row p {
        display: none;
    }


    .service-arrow {
        font-size: 16px;
    }


    /* IMAGE BREAK */

    .image-break {
        height: 430px;
    }


    .image-break img {
        object-position: center;
    }


    .image-break-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(16, 16, 15, 0.08) 0%,
                rgba(16, 16, 15, 0.72) 100%
            );
    }


    .image-break-content {
        left: 18px;
        right: 18px;
        bottom: 42px;

        max-width: none;
    }


    .image-break-content h2 {
        margin-bottom: 14px;

        font-size: clamp(38px, 11vw, 51px);
    }


    .image-break-content p {
        font-size: 11px;

        line-height: 1.7;
    }


    /* COMPANY */

    .company-grid {
        display: flex;
        flex-direction: column;

        gap: 40px;
    }


    .company-visual {
        order: 1;

        width: 100%;
    }


    .company-content {
        order: 2;
    }


    .company-visual::before {
        top: -10px;
        left: -10px;

        width: 55px;
        height: 55px;
    }


    .company-visual img {
        aspect-ratio: 4 / 3;
    }


    .company-content h2 {
        margin-bottom: 20px;

        font-size: clamp(39px, 11vw, 52px);
    }


    .company-content p {
        font-size: 13px;

        line-height: 1.8;
    }


    .company-signature {
        margin-top: 28px;

        padding-top: 20px;
    }


    /* QUALITY */

    .quality-grid {
        grid-template-columns: 1fr;
    }


    .quality-card {
        min-height: 0;

        padding: 27px 20px;
    }


    .quality-card:nth-child(2) {
        border-right: 1px solid var(--line);
    }


    .quality-card:hover {
        transform: none;
    }


    .quality-number {
        margin-bottom: 35px;
    }


    .quality-card h3 {
        font-size: 22px;
    }


    .quality-card p {
        font-size: 10px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-step {
        padding: 27px 0;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }


    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 0;
    }


    .process-step:last-child {
        border-bottom: 0;
    }


    .process-number {
        margin-bottom: 27px;
    }


    .process-step h3 {
        font-size: 22px;
    }


    .process-step p {
        font-size: 10px;
    }


    /* BANNER */

    .service-banner {
        padding: 65px 0;
    }


    .service-banner-inner {
        width: calc(100% - 36px);

        flex-direction: column;

        align-items: flex-start;

        gap: 27px;
    }


    .service-banner h2 {
        font-size: clamp(37px, 10.5vw, 50px);
    }


    .service-banner .button {
        width: 100%;
    }


    /* CONTACT */

    .contact-heading {
        margin-bottom: 45px;
    }


    .contact-heading h2 {
        font-size: clamp(40px, 11vw, 55px);
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .contact-item {
        padding: 22px 0;

        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }


    .contact-item:last-child {
        border-bottom: 0;
    }


    .contact-item a,
    .contact-item strong {
        font-size: 15px;

        overflow-wrap: anywhere;
    }


    .contact-cta {
        margin-top: 38px;
    }


    .contact-cta .button {
        width: 100%;
    }


    /* FOOTER */

    .footer-main {
        width: calc(100% - 36px);

        grid-template-columns: 1fr;

        gap: 38px;

        padding: 55px 0 45px;
    }


    .footer-column p,
    .footer-column a {
        font-size: 10px;
    }


    .footer-bottom {
        width: calc(100% - 36px);

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }
}


/* =========================================================
   27 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    :root {
        --gutter: 14px;
    }


    .header-inner {
        width: calc(100% - 24px);
    }


    .brand-mark {
        width: 34px;
        height: 34px;
    }


    .brand-text strong {
        font-size: 11px;
    }


    .brand-text span {
        display: none;
    }


    .menu-button {
        width: 44px;
        height: 44px;
    }


    .hero-container {
        width: calc(100% - 28px);
    }


    .hero-content {
        padding-top: 48px;
    }


    .hero h1 {
        font-size: 40px;
    }


    .hero-description {
        font-size: 12px;
    }


    .hero-visual {
        aspect-ratio: 1 / 1;
    }


    .hero-floating-card {
        right: 8px;
        bottom: 8px;

        max-width: 185px;

        padding: 11px 12px;
    }


    .hero-floating-card strong {
        font-size: 10px;
    }


    .hero-floating-card span {
        font-size: 8px;
    }


    .section {
        padding: 68px 0;
    }


    .section-heading h2,
    .company-content h2 {
        font-size: 37px;
    }


    .service-row {
        grid-template-columns: 27px minmax(0, 1fr) 15px;

        gap: 8px;
    }


    .service-row h3 {
        font-size: 16px;
    }


    .image-break {
        height: 360px;
    }


    .image-break-content h2 {
        font-size: 36px;
    }


    .contact-heading h2 {
        font-size: 39px;
    }
}


/* =========================================================
   28 — VERY SMALL PHONES
   ========================================================= */

@media (max-width: 340px) {

    .hero h1 {
        font-size: 36px;
    }


    .hero-description {
        font-size: 11.5px;
    }


    .trust-grid {
        grid-template-columns: 1fr;
    }


    .trust-item {
        min-height: 78px;

        border-right: 0 !important;
        border-top: 1px solid var(--line-light);
    }


    .trust-item:first-child {
        border-top: 0;
    }


    .service-row h3 {
        font-size: 15px;
    }


    .quality-card h3 {
        font-size: 20px;
    }


    .process-step h3 {
        font-size: 20px;
    }
}


/* =========================================================
   29 — TOUCH DEVICES
   ========================================================= */

@media (hover: none) and (pointer: coarse) {

    .button:hover {
        transform: none;
    }


    .button:hover::before {
        transform: translateY(101%);
    }


    .service-row:hover {
        padding-left: 0;
        padding-right: 0;

        background: transparent;
    }


    .service-row:hover::before {
        width: 0;
    }


    .quality-card:hover {
        background: transparent;

        transform: none;
    }


    .hero-visual:hover .hero-image {
        transform: none;
    }


    .image-break:hover img {
        transform: none;
    }
}


/* =========================================================
   30 — LANDSCAPE SMARTPHONE
   ========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    .hero-container {
        min-height: auto;
    }


    .hero-content {
        padding-top: 45px;
        padding-bottom: 35px;
    }


    .hero-visual {
        aspect-ratio: 16 / 8;

        min-height: 0;
    }


    .mobile-menu {
        padding-top: 15px;
    }


    .mobile-menu a {
        padding: 11px 0;

        font-size: 20px;
    }
}


/* =========================================================
   31 — ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);

    outline-offset: 4px;
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }


    .reveal {
        opacity: 1;

        transform: none;
    }


    .hero-image,
    .image-break img {
        transform: none !important;
    }
}