@font-face {
    font-family: "Urbanist";
    src: url("../fonts/Urbanist-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: optional;
}

@font-face {
    font-family: "Urbanist";
    src: url("../fonts/Urbanist-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: optional;
}

:root {
    --bg: #f2ede5;
    --surface: #ffffff;
    --surface-soft: #f9f6f1;
    --surface-dark: #0d2338;
    --surface-dark-soft: #193852;
    --header-bg: #282931;
    --surface-warm: #f6f0e7;
    --line: rgba(13, 35, 56, 0.12);
    --line-strong: rgba(13, 35, 56, 0.18);
    --text: #12263a;
    --text-soft: #3f5164;
    --accent: #d96a37;
    --accent-dark: #aa4f24;
    --accent-soft: rgba(217, 106, 55, 0.14);
    --shadow: 0 18px 42px rgba(13, 35, 56, 0.1);
    --shadow-soft: 0 22px 46px rgba(13, 35, 56, 0.08);
    --shadow-strong: 0 28px 56px rgba(13, 35, 56, 0.16);
    --radius: 28px;
    --radius-sm: 20px;
    --container: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Urbanist", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(217, 106, 55, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(13, 35, 56, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 18px),
        repeating-linear-gradient(0deg, rgba(18, 38, 58, 0.02) 0 1px, transparent 1px 22px),
        var(--bg);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--surface-dark);
    color: #fff;
}

.skip-link:focus {
    top: 1rem;
}

.back-to-top {
    position: fixed;
    right: clamp(0.8rem, 2vw, 1.6rem);
    bottom: clamp(0.8rem, 2vw, 1.5rem);
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.78rem 1rem 0.78rem 0.88rem;
    border-radius: 999px;
    background: #282931;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 16px 32px rgba(13, 35, 56, 0.18);
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    transform: translateY(-3px);
    background: #282931;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 36px rgba(13, 35, 56, 0.24);
}

.back-to-top svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: none;
}

.has-ui .back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.8rem);
}

.has-ui .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 1.5rem), var(--container));
    margin: 0 auto;
}

.section-shell {
    position: relative;
    padding: clamp(3.2rem, 5vw, 5.2rem) 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(40, 41, 49, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(13, 35, 56, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: 151px;
    max-width: 100%;
    height: auto;
    flex: none;
}

.brand-copy {
    display: grid;
    gap: 0.14rem;
}

.brand-copy strong {
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.brand-copy span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-inline: auto;
}

.site-nav a {
    padding: 0.48rem 0.78rem;
    border-radius: 14px;
    background: #334454;
    border: 1px solid #435768;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    transform: translateY(-1px);
    background: #405565;
    border-color: #51687a;
    color: #fff;
    box-shadow: 0 12px 20px rgba(8, 18, 29, 0.14);
}

.contact-link-row {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    max-width: 100%;
    color: inherit;
    font-weight: 700;
    line-height: 1.35;
}

.contact-link-row > :last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(170, 79, 36, 0.12);
    color: var(--accent-dark);
    flex: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.contact-link-icon svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-link-row-inverse {
    color: #fff;
}

.contact-link-row-inverse .contact-link-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.header-phone,
.header-mail,
.header-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.66rem 0.42rem 0.48rem;
    border-radius: 999px;
    background: #334454;
    color: #fff;
    border: 1px solid #435768;
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.header-phone {
    padding: 0.38rem 0.58rem 0.38rem 0.44rem;
    font-size: 0.84rem;
}

.header-phone:hover,
.header-phone:focus-visible,
.header-mail:hover,
.header-mail:focus-visible,
.header-instagram:hover,
.header-instagram:focus-visible {
    transform: translateY(-1px);
    background: #405565;
    border-color: #51687a;
    box-shadow: 0 10px 18px rgba(7, 18, 29, 0.16);
}

.header-phone .contact-link-icon,
.header-mail .contact-link-icon,
.header-instagram .contact-link-icon {
    width: 1.8rem;
    height: 1.8rem;
    background: #425667;
    border-color: #51687a;
    color: #fff;
    box-shadow: none;
}

.header-mail,
.header-instagram {
    gap: 0;
    padding: 0;
}

.header-mail:hover,
.header-mail:focus-visible,
.header-instagram:hover,
.header-instagram:focus-visible {
    background: #405565;
    border-color: #51687a;
}

.header-phone-value,
.header-mail-value,
.header-instagram-value {
    line-height: 1;
}

.header-mail-value,
.header-instagram-value {
    display: none;
}

.hero-section {
    padding-top: 0.7rem;
    padding-bottom: 1.85rem;
}

.hero-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.hero-grid,
.about-grid,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.hero-copy,
.hero-panel,
.about-box,
.info-card,
.reference-card,
.contact-shell,
.contact-card,
.legal-content {
    border-radius: var(--radius);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(1.15rem, 2vw, 1.65rem);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    animation: rise-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: rgba(217, 106, 55, 0.12);
    color: var(--accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-dark .eyebrow,
.contact-shell .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1,
.section-heading h2,
.legal-content h1,
.contact-copy h2 {
    font-family: "Urbanist", "Segoe UI", sans-serif;
}

h1 {
    max-width: 15ch;
    font-size: clamp(1.8rem, 2.7vw, 2.55rem);
    line-height: 1.02;
    font-weight: 700;
    text-wrap: pretty;
}

.hero-copy h1 {
    max-width: none;
    width: 100%;
}

.hero-lead,
.section-heading p,
.about-copy p,
.legal-content p {
    margin: 1rem 0 0;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.section-heading h2::after,
.about-copy h2::after,
.contact-copy h2::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 0.2rem;
    margin-top: 0.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(217, 106, 55, 0.12));
}

.section-heading-light h2::after {
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.44));
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.hero-actions .button {
    min-height: 2.9rem;
    padding: 0.72rem 1.05rem;
    font-size: 0.95rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

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

.button-primary {
    background: var(--surface-dark);
    color: #fff;
    box-shadow: 0 14px 24px rgba(13, 35, 56, 0.16);
}

.button-secondary {
    background: #fff;
    border-color: var(--line-strong);
    color: var(--text);
    box-shadow: 0 10px 22px rgba(13, 35, 56, 0.06);
}

.button:active,
.contact-action:active,
.partner-logo-card:active,
.career-inline-link:active,
.back-to-top:active {
    transform: translateY(0) scale(0.985);
}

.hero-highlights,
.contact-points {
    display: grid;
    gap: 0.45rem;
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-highlights li,
.contact-points li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-weight: 600;
}

.hero-highlights li {
    font-size: 0.88rem;
    line-height: 1.35;
}

.hero-highlights li::before,
.contact-points li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.38rem;
    flex: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--surface-dark));
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1rem, 1.8vw, 1.25rem);
    background: linear-gradient(160deg, var(--surface-dark), var(--surface-dark-soft));
    color: #fff;
    box-shadow: var(--shadow);
    animation: rise-in 0.74s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.08s;
}

.hero-panel::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 32px;
    transform: rotate(16deg);
    background: rgba(255, 255, 255, 0.06);
}

.panel-badge {
    display: inline-flex;
    margin-bottom: 0.55rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-panel-copy,
.section-heading-light p,
.reference-content p,
.contact-copy p,
.contact-note {
    color: rgba(255, 255, 255, 0.82);
}

.hero-panel-copy {
    position: relative;
    z-index: 1;
}

.hero-panel-copy + .hero-panel-copy {
    margin-top: 0.55rem;
}

.hero-panel-copy-quiet {
    color: rgba(255, 255, 255, 0.68);
}

.stats-grid,
.card-grid,
.reference-grid,
.about-points,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0.8rem 0 0;
}

.stat-card {
    min-width: 0;
    padding: 0.7rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card:nth-child(3):last-child {
    grid-column: 1 / -1;
}

.stat-card strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.stat-card span {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.8rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 1.6rem;
}

.section-heading h2,
.legal-content h1,
.contact-copy h2 {
    font-size: clamp(1.95rem, 3.8vw, 3rem);
    line-height: 1.04;
    text-wrap: balance;
}

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

.info-card,
.about-point,
.about-box,
.contact-card,
.legal-content {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line-strong);
    box-shadow: 0 12px 30px rgba(13, 35, 56, 0.06);
}

.info-card {
    padding: 1.35rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card:hover,
.info-card:focus-within,
.reference-card:hover,
.reference-card:focus-within {
    transform: translateY(-3px);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(217, 106, 55, 0.18), rgba(217, 106, 55, 0.08));
    color: var(--accent-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(170, 79, 36, 0.12);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.info-card h3,
.reference-content h3,
.about-box h3,
.contact-card h3,
.legal-content h2 {
    font-size: 1.18rem;
}

.info-card p,
.about-box p,
.contact-card p,
.legal-content li {
    margin: 0.7rem 0 0;
    color: var(--text-soft);
}

.service-card {
    display: grid;
    align-content: end;
    min-height: clamp(16rem, 26vw, 20rem);
    background-color: #1a3043;
    background-image:
        linear-gradient(180deg, rgba(5, 12, 18, 0.06), rgba(5, 12, 18, 0.32) 40%, rgba(5, 12, 18, 0.84) 100%),
        var(--service-card-image);
    background-position: center center, var(--service-card-position, center center);
    background-repeat: no-repeat;
    background-size: 100% 100%, cover;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(13, 35, 56, 0.12);
    isolation: isolate;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 22px 40px rgba(13, 35, 56, 0.16);
}

.service-card .service-icon {
    margin-bottom: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 22px rgba(5, 12, 18, 0.16);
}

.service-card h3 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.service-card p {
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.service-card--echtholz {
    --service-card-image: url("../images/services/echtholz.jpg");
    --service-card-position: center bottom;
}

.service-card--pvc-linoleum {
    --service-card-image: url("../images/services/pvc-linoleum.jpg");
    --service-card-position: center top;
}

.service-card--teppichboden {
    --service-card-image: url("../images/services/teppichboden.jpg");
    --service-card-position: center top;
}

.service-card--vinyl-design {
    --service-card-image: url("../images/services/vinyl-design.jpg");
    --service-card-position: center top;
}

.service-card--reparatur,
.service-card--analyse {
    --service-card-image: url("../images/services/weitere-serviceleistungen.jpg");
    --service-card-position: center top;
}

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(217, 106, 55, 0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #0c2236, #163551);
}

.showcase-intro {
    margin-bottom: 0;
}

.showcase-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    color: #fff;
    font-weight: 700;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.showcase-inline-link .instagram-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.showcase-inline-link:hover,
.showcase-inline-link:focus-visible {
    transform: translateX(2px);
}

.reference-grid {
    gap: 1rem;
}

.reference-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.reference-card:hover,
.reference-card:focus-within {
    border-color: rgba(255, 255, 255, 0.28);
}

.reference-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.reference-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 12, 18, 0.08), rgba(5, 12, 18, 0.02) 34%, rgba(5, 12, 18, 0.76) 100%);
    pointer-events: none;
}

.reference-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.reference-slide {
    min-width: 100%;
    height: 100%;
}

.reference-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.96) contrast(1.02);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.reference-card:hover .reference-slide img,
.reference-card:focus-within .reference-slide img {
    transform: scale(1.035);
    filter: saturate(1.02) contrast(1.05);
}

.reference-overlay {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 3;
    display: grid;
    gap: 0.28rem;
}

.reference-overlay-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    background: rgba(40, 41, 49, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reference-overlay strong {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.reference-progress {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: 1rem;
    z-index: 3;
    height: 0.22rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.reference-progress-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #fff, #ffd8bc);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.28);
    transition: width 0.45s ease;
}

.reference-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem;
    pointer-events: none;
}

.reference-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 999px;
    background: #282931;
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.reference-arrow:hover,
.reference-arrow:focus-visible {
    transform: translateY(-1px);
    background: #334454;
}

.reference-dots {
    position: absolute;
    left: 50%;
    bottom: 0.95rem;
    z-index: 4;
    display: flex;
    gap: 0.4rem;
    transform: translateX(-50%);
}

.reference-dot {
    width: 0.55rem;
    height: 0.65rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    cursor: pointer;
    transition: width 0.24s ease, background-color 0.24s ease, opacity 0.24s ease;
}

.reference-dot.is-active {
    background: #fff;
    width: 1.45rem;
}

.reference-content {
    padding: 1.15rem;
}

.reference-content span {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #ffd0b3;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.reference-content strong {
    display: inline-flex;
    margin-top: 1rem;
    color: #fff;
    font-size: 0.92rem;
}

.reference-content h3 {
    line-height: 1.14;
}

.reference-content p {
    max-width: 30ch;
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    background: rgba(217, 106, 55, 0.12);
    border: 1px solid rgba(170, 79, 36, 0.12);
    color: var(--accent-dark);
    flex: none;
}

.instagram-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partner-band {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.partner-band-copy h3 {
    font-size: 1.12rem;
    color: #fff;
}

.partner-band-copy p {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.partner-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 0.8rem 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line-strong);
    box-shadow: 0 12px 30px rgba(13, 35, 56, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.partner-logo-card:hover,
.partner-logo-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(13, 35, 56, 0.09);
}

.partner-logo-card img {
    width: 100%;
    max-width: 10rem;
    max-height: 2.4rem;
    object-fit: contain;
    filter: saturate(0.82) contrast(1.03);
    transition: transform 0.24s ease, filter 0.24s ease;
}

.partner-logo-card:hover img,
.partner-logo-card:focus-visible img {
    transform: scale(1.02);
    filter: saturate(1) contrast(1.05);
}

.about-grid {
    align-items: start;
}

.about-copy {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.about-copy > p {
    margin: 0;
}

.about-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 0;
}

.about-point {
    padding: 1rem 1.1rem;
    border-radius: 20px;
}

.about-point::after {
    content: "";
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 0 0 0.25rem rgba(217, 106, 55, 0.12);
}

.about-point h3 {
    font-size: 1rem;
    line-height: 1.45;
    padding-left: 0.85rem;
}

.about-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.about-image-card {
    overflow: hidden;
    margin: 0;
    width: 100%;
    justify-self: stretch;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line-strong);
    box-shadow: 0 12px 30px rgba(13, 35, 56, 0.06);
}

.about-image-card img {
    width: 100%;
    height: auto;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.about-image-card:hover img,
.about-image-card:focus-within img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.04);
}

.about-image-card figcaption {
    position: relative;
    padding: 1rem 1.1rem 1.1rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
    border-top: 1px solid rgba(13, 35, 56, 0.08);
}

.about-image-card figcaption::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 1.1rem;
    width: 3rem;
    height: 0.12rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(217, 106, 55, 0));
}

.about-image-details {
    display: grid;
    gap: 0.25rem;
    padding: 0 1.1rem 1.15rem;
    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.45;
}

.about-image-details p {
    margin: 0;
}

.about-image-details strong {
    color: var(--text);
}

.about-box {
    padding: 1.45rem;
}

.about-process-box {
    margin-top: 0.1rem;
}

.accent-box {
    background:
        radial-gradient(circle at top left, rgba(217, 106, 55, 0.18), transparent 32%),
        linear-gradient(145deg, #282931, #334454);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 46px rgba(13, 35, 56, 0.14);
}

.accent-box h3 {
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.15;
}

.accent-box p {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 0.005em;
    text-wrap: pretty;
}

.process-list {
    margin: 0.9rem 0 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.process-list li + li {
    margin-top: 0.6rem;
}

.career-inline {
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
    padding: 1.05rem 1.15rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #282931, #334454);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 34px rgba(13, 35, 56, 0.1);
    color: #fff;
}

.career-inline-copy {
    display: grid;
    gap: 0.35rem;
}

.career-inline-kicker {
    display: inline-block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.career-inline h3 {
    font-size: 1.08rem;
    line-height: 1.15;
}

.career-inline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.career-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    justify-self: start;
    padding: 0.64rem 0.95rem;
    border-radius: 999px;
    background: #334454;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 800;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.career-inline-link .contact-link-icon {
    width: 1.9rem;
    height: 1.9rem;
    background: #425667;
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.career-inline-link:hover,
.career-inline-link:focus-visible {
    transform: translateY(-2px);
    background: #3d5263;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 22px rgba(7, 18, 29, 0.12);
}

.contact-shell {
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.1rem);
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--surface-dark), var(--surface-dark-soft));
    color: #fff;
    box-shadow: var(--shadow);
}

.contact-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-cta-panel {
    position: relative;
    overflow: hidden;
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-actions {
    display: grid;
    gap: 0.75rem;
}

.contact-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.85rem 1.1rem;
    padding-left: 3.7rem;
    padding-right: 3.7rem;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line-strong);
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(7, 18, 29, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.contact-action-primary {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 28px rgba(170, 79, 36, 0.2);
}

.contact-action .contact-link-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
}

.contact-action-label {
    display: block;
    width: 100%;
    text-align: center;
}

.contact-action-primary .contact-link-icon {
    background: #bf5c2f;
    border-color: #bf5c2f;
    color: #fff;
    box-shadow: none;
}

.contact-action:hover,
.contact-action:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(7, 18, 29, 0.12);
}

.contact-note {
    margin: 0.9rem 0 0;
}

.contact-card {
    padding: 1.2rem 1.25rem;
}

.contact-card-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.05rem;
    margin-top: 0.95rem;
    padding: 0.8rem 1rem;
    padding-left: 3.55rem;
    padding-right: 3.55rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(13, 35, 56, 0.06);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-action:hover,
.contact-card-action:focus-visible {
    background: #fff;
    border-color: rgba(170, 79, 36, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(13, 35, 56, 0.08);
}

.contact-card-action .contact-link-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
}

.contact-card-meta {
    margin-top: 0.75rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-card-list,
.legal-contact-list {
    display: grid;
    gap: 0.72rem;
}

.contact-card a,
.site-footer a,
.legal-content a {
    color: var(--accent-dark);
    font-weight: 700;
}

.legal-shell {
    min-height: calc(100vh - 14rem);
}

.legal-content {
    max-width: 52rem;
    padding: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-content h2 {
    margin-top: 1.8rem;
}

.site-footer {
    padding: 1.7rem 0 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.16));
    border-top: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0.9rem;
}

.site-footer h2 {
    font-size: 1rem;
}

.site-footer p {
    margin: 0.45rem 0 0;
    color: var(--text-soft);
}

.footer-contact-plain {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.footer-contact-plain p {
    margin: 0;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 5.75rem minmax(0, 1fr);
    align-items: baseline;
    gap: 0.5rem;
}

.footer-contact-label {
    color: var(--text-soft);
    font-weight: 600;
}

.footer-contact-plain a {
    color: var(--text);
    font-weight: 700;
}

.footer-contact-plain a:hover,
.footer-contact-plain a:focus-visible {
    color: var(--accent-dark);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-inline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.footer-legal-inline a {
    color: var(--text);
    font-weight: 700;
}

.footer-legal-inline a:hover,
.footer-legal-inline a:focus-visible {
    color: var(--accent-dark);
}

@media (min-width: 700px) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

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

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

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

    .career-inline {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .contact-card:last-child,
    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .hero-wrap {
        max-width: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.18fr) 18.5rem;
        gap: 0.8rem;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1.06fr) minmax(19rem, 0.94fr);
        align-items: stretch;
    }

    .about-copy,
    .about-aside {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
    }

    .about-aside {
        padding-top: 3.55rem;
    }

    .about-image-card {
        width: 100%;
        justify-self: stretch;
    }

    .about-process-box,
    .about-aside .accent-box {
        margin-top: auto;
    }

    .contact-shell {
        grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.9fr);
        align-items: center;
    }

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

    .partner-band {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
        align-items: center;
    }

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

    .contact-card:last-child,
    .footer-grid > :last-child {
        grid-column: auto;
    }
}

@media (max-width: 1023px) {
    .site-header {
        position: static;
    }

    .header-inner {
        display: grid;
        gap: 0.85rem;
    }

    .site-nav {
        width: 100%;
        margin-inline: 0;
    }

    .header-actions {
        justify-self: start;
    }

    .brand-copy strong {
        font-size: 0.86rem;
    }
}

@media (max-width: 699px) {
    body {
        line-height: 1.55;
    }

    .section-shell {
        padding: 2.75rem 0;
    }

    .brand-copy span {
        display: none;
    }

    .brand-copy strong {
        font-size: 0.8rem;
    }

    .site-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .site-nav a,
    .header-phone,
    .header-mail,
    .header-instagram {
        justify-content: flex-start;
        text-align: left;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .header-phone,
    .header-mail,
    .header-instagram {
        width: auto;
        padding: 0;
        background: transparent;
        border-color: transparent;
    }

    .site-nav a {
        padding: 0.44rem 0.68rem;
        font-size: 0.84rem;
        border-radius: 12px;
    }

    .header-phone-value {
        display: none;
    }

    .header-mail-value {
        display: none;
    }

    .header-instagram-value {
        display: none;
    }

    .header-phone,
    .header-mail,
    .header-instagram {
        justify-content: center;
        gap: 0;
    }

    .header-phone .contact-link-icon,
    .header-mail .contact-link-icon,
    .header-instagram .contact-link-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .header-phone:hover,
    .header-phone:focus-visible,
    .header-mail:hover,
    .header-mail:focus-visible,
    .header-instagram:hover,
    .header-instagram:focus-visible {
        background: transparent;
        border-color: transparent;
    }

    .back-to-top {
        width: 3rem;
        height: 3rem;
        justify-content: center;
        padding: 0;
        border-radius: 999px;
    }

    .back-to-top span {
        display: none;
    }

    .hero-actions {
        display: grid;
    }

    .hero-wrap {
        max-width: none;
    }

    .button {
        width: 100%;
    }

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

    .stat-card:nth-child(3):last-child {
        grid-column: auto;
    }

    .hero-copy,
    .hero-panel,
    .about-box,
    .contact-shell,
    .contact-card,
    .legal-content {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
