:root {
    --bg: #ece3d5;
    --bg-soft: #f6f0e8;
    --text: #0d3176;
    --accent: #356c4d;
    --accent-hover: #2a533c;
    --surface: #ffffff;
    --border: #d8cec0;
    --menu-size: 18px;
}

.legal-button {
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: var(--text);
    text-decoration: underline;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    font-family: "Lato", Arial, sans-serif;
    font-weight: 400;
    cursor: pointer;
}

.legal-button:hover {
    color: #72685a;
}

.footer-legal-wrap nav .legal-button {
    padding: 20px 0;
}

.map-consent {
    position: relative;
    width: 100%;
    height: 420px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.map-consent-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contacts-map iframe.map-consent-frame {
    height: 100%;
}

.map-consent-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 20px;
}

.map-consent-title {
    margin: 0 0 10px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #5f7d6a;
}

.map-consent-text {
    margin: 0 0 18px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #7f8e84;
}

.map-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2100;
}

.cookie-consent-inner {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 18px 20px;
    font-family: "Lato", Arial, sans-serif;
    color: #5c6f64;
    box-shadow: 0 8px 20px rgba(73, 92, 80, 0.14);
}

.cookie-consent-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-consent-title {
    margin: 0;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cookie-toggle-button {
    border: 0;
    background: #f3eee4;
    color: #6f7f75;
    border-radius: 10px;
    padding: 8px 12px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
}

.cookie-consent-text {
    margin: 8px 0 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
}

.cookie-consent-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.cookie-btn-primary {
    background: #e9e2d5;
    color: #4f6657;
}

.cookie-btn-neutral {
    background: #f3eee4;
    color: #6f7f75;
}

.cookie-btn-ghost {
    background: #f8f5ef;
    color: #778b7f;
}

.cookie-consent-panel {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(194, 205, 198, 0.55);
}

.cookie-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 11px 12px;
    background: rgba(246, 242, 234, 0.75);
    border-radius: 10px;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-option span {
    font-size: 14px;
    line-height: 1.45;
    color: #60786b;
}

.cookie-option strong {
    font-weight: 400;
}

.cookie-option-fixed {
    opacity: 0.88;
}

.cookie-consent-actions-secondary {
    margin-top: 12px;
}

@media (max-width: 900px) {
    .map-consent {
        height: 340px;
    }

    .cookie-consent {
        left: 8px;
        right: 8px;
        bottom: 8px;
        max-height: calc(100dvh - 16px);
    }

    .cookie-consent-inner {
        max-width: none;
        max-height: calc(100dvh - 16px);
        overflow-y: auto;
        border-radius: 12px;
        padding: 14px;
    }

    .cookie-consent-title {
        font-size: 17px;
    }

    .cookie-consent-text {
        font-size: 14px;
    }

    .cookie-consent-head {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cookie-toggle-button {
        width: 100%;
        min-height: 40px;
        text-align: center;
    }

    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-consent-actions .cookie-btn {
        width: 100%;
        min-height: 42px;
    }

    .cookie-option {
        padding: 10px 11px;
    }

    .cookie-option span {
        font-size: 13px;
        line-height: 1.4;
    }

    .cookie-consent-actions-secondary {
        margin-top: 10px;
    }

    .footer-legal-wrap nav .legal-button {
        padding: 8px 0;
        font-size: 13px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    color: var(--text);
    background: #ffffff;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background-color: #dac6b4;
    background-image: linear-gradient(
        90deg,
        #dac6b4 0%,
        #ffffff calc(50% - 200px),
        #ffffff calc(50% + 200px),
        #dac6b4 100%
    );
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1200px 100%;
}

.site-footer {
    height: 220px;
    background-color: #eae3d2;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-brand-wrap {
    flex-direction: column;
    padding: 0;
}

.site-footer-menu {
    height: 150px;
    background-color: #fdfaf3;
    border-top: 1px solid #e8decf;
}

.footer-menu-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav + .footer-nav {
    position: relative;
    padding-top: 12px;
}

.footer-nav + .footer-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 285px;
    border-top: 1px solid #e8decf;
    transform: translateX(-50%);
}

.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: var(--menu-size);
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 0 16px;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.footer-nav a:hover {
    color: #72685a;
}

.footer-nav a.is-active {
    color: #72685a;
}

.site-footer-legal {
    background-color: #ffffff !important;
    padding: 0;
    border-top: 0;
}

.footer-legal-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    background-color: #ffffff !important;
}

.site-footer-legal .container {
    background-color: #ffffff !important;
}

.footer-legal-wrap p {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    color: var(--text);
    padding: 20px 0;
}

.footer-legal-wrap nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-legal-wrap nav a {
    color: var(--text);
    text-decoration: underline;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 20px 0;
}

.footer-legal-wrap nav a:hover {
    color: #72685a;
}

.header-top {
    background: transparent;
}

.brand-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 0 32px;
    transition: padding 0.28s ease;
}

.brand-logo img {
    width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.17));
    transition: width 0.28s ease;
}

.brand-subtitle {
    margin: 10px 0 0;
    font-size: var(--menu-size);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--text);
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
    transition: margin 0.28s ease, font-size 0.28s ease;
}

.header-nav-line {
    background: transparent;
    border-top: 1px solid #dfcfbf;
    border-bottom: 1px solid #dfcfbf;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    padding: 7px 0;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: var(--menu-size);
    line-height: 1;
    letter-spacing: 0.04em;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.main-nav a:hover {
    color: #72685a;
}

.main-nav a.is-active {
    color: #72685a;
}

.site-header.is-compact .brand-wrap {
    padding: 21px 0 19px;
}

.site-header.is-compact .brand-logo img {
    width: 120px;
}

.site-header.is-compact .brand-subtitle {
    margin-top: 6px;
    font-size: 14px;
}

main {
    background: #ffffff;
}

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

.js-enabled .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
}

.js-enabled .reveal-item.is-visible {
    opacity: 1;
    transform: none;
}

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

.project-cta {
    margin: 100px 0;
    background: #f4f1ea;
    border-top: 1px solid #e8decf;
    border-bottom: 1px solid #e8decf;
}

.project-cta-content {
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
}

.project-cta-topline {
    margin: 0 0 18px;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    font-size: 41px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    font-weight: 400;
    color: var(--text);
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}


.project-cta h2 {
    margin: 0 0 28px;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    font-size: 41px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    font-weight: 400;
    color: var(--text);
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.project-cta-description {
    margin: 0;
    font-family: "Lato", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #8f877a;
}

.contacts-block {
    margin: 100px 0;
}

#kontakt {
    scroll-margin-top: 40px;
}

.contacts-body {
    background: #fbfaf8;
    border-bottom: 1px solid #e8decf;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
    align-items: start;
    font-family: "Lato", Arial, sans-serif;
}

.contacts-left {
    color: #8f877a;
}

.contacts-title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.04em;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    font-weight: 400;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.contacts-company {
    margin: 0 0 34px;
}

.contacts-company-name {
    font-family: "Lato", Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #8f877a;
}

.contacts-company-address {
    display: inline-block;
    margin-top: 13px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: #8f877a;
}

.contacts-left p {
    margin: 0 0 44px;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.contacts-table {
    margin: 0 0 16px;
}

.contacts-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 47px;
    margin: 0 0 31px;
}

.contacts-key,
.contacts-val {
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.contacts-val a {
    color: #8f877a;
    text-decoration: none;
}

.contacts-val a:hover {
    color: var(--text);
}

.contacts-map iframe {
    display: block;
    width: 100%;
    height: 420px;
}

.contacts-divider {
    margin: 0;
    border-top: 1px solid #e8decf;
}

.contacts-divider-wrap {
    width: 100%;
}

.contacts-body .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero {
    padding: 72px 0 56px;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: 48px;
}

.hero p {
    margin: 0 0 24px;
    max-width: 680px;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.button:hover {
    background: var(--accent-hover);
}

.section {
    padding: 24px 0 64px;
}

.index-main-image {
    background: #fbfaf8;
    margin: 100px 0;
    padding: 0;
}

.index-main-image .container {
    padding-top: 0;
    padding-bottom: 0;
}

.index-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.main-image-wrap {
    position: relative;
}

.main-image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 75%;
    background: rgba(255, 255, 255, 0.85);
    padding: 22px 26px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.22);
}

.main-image-caption-title,
.main-image-caption-text {
    margin: 0;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: var(--text);
}

.main-image-caption-title {
    font-family: "Lato", Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-image-caption-text {
    font-weight: 400;
    font-family: "Lato", Arial, sans-serif;
    color: var(--text);
}

.index-services {
    margin: 100px 0;
    padding: 0;
    background: #eae3d2;
}

.index-services .container {
    padding-top: 0;
    padding-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.service-card-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    margin: 0 12px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
    font-family: "Lato", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-card-label::after {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230d3176'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m12.75 15 3-3m0 0-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    flex: 0 0 auto;
}

.services-page-heading {
    margin: 100px 0 0;
    scroll-margin-top: 40px;
}

.services-page-heading .contacts-title {
    margin-bottom: 24px;
}

.services-page-body {
    margin: 0 0 100px;
    border-bottom: 1px solid #e8decf;
}

.services-page-body-1 {
    background: #f4f1ea;
}

.services-page-body-2 {
    background: #eae3d2;
}

.services-page-body-3 {
    background: #fbfaf8;
}

.services-page-body-4 {
    background: #ece3d5;
}

.services-page-body .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.services-page-grid-reverse .services-page-image {
    order: 2;
}

.services-page-grid-reverse .services-page-text {
    order: 1;
}

.services-page-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.services-page-text {
    font-family: "Lato", Arial, sans-serif;
    color: #8f877a;
}

.services-page-text p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.services-page-text p:last-child {
    margin-bottom: 0;
}

.index-about-heading {
    margin: 100px 0 0;
}

#uber-uns {
    scroll-margin-top: 40px;
}

.index-about-heading .contacts-title {
    margin-bottom: 24px;
}

.index-about-heading .contacts-divider {
    margin-bottom: 0;
}

.index-about {
    background: #f4f1ea;
    margin: 0 0 100px;
    border-bottom: 1px solid #e8decf;
}

.index-about .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.index-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.index-about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.index-about-image {
    position: relative;
}

.index-about-caption {
    position: absolute;
    left: 20px;
    width: 60%;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 20px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.index-about-caption-title,
.index-about-caption-text {
    margin: 0;
    color: var(--text);
    letter-spacing: 0.04em;
}

.index-about-caption-title {
    font-family: "Lato", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
}

.index-about-caption-text {
    font-family: "Lato", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

.index-about-content {
    font-family: "Lato", Arial, sans-serif;
    color: #8f877a;
}

.index-about-content h3 {
    margin: 0 0 10px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #8f877a;
}

.index-about-content p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.index-about-content p:last-child {
    margin-bottom: 0;
}

.index-erfahrung-heading {
    margin: 100px 0 0;
}

.index-erfahrung-heading .contacts-title {
    margin-bottom: 24px;
}

.index-erfahrung {
    margin: 0 0 100px;
    background: #fbfaf8;
    border-bottom: 1px solid #e8decf;
}

.index-erfahrung .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.index-erfahrung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.index-erfahrung-card h3 {
    margin: 0 0 12px;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: var(--text);
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.index-erfahrung-card a {
    display: block;
    position: relative;
}

.index-erfahrung-card img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.index-erfahrung-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 46px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.index-erfahrung-arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230d3176'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m12.75 15 3-3m0 0-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.index-values {
    margin: 100px 0;
    background: #eae3d2;
    border-top: 1px solid #e8decf;
    border-bottom: 1px solid #e8decf;
}

.index-values .container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.value-card {
    text-align: center;
}

.value-label {
    margin: 0 0 16px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.45em;
    color: #8f877a;
}

.value-title {
    margin: 0;
    font-family: "EB Garamond", Garamond, "Times New Roman", serif;
    font-size: 41px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--text);
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.legal-heading {
    margin: 100px 0 0;
}

.legal-heading .contacts-title {
    margin-bottom: 24px;
}

.legal-heading .contacts-divider {
    margin-bottom: 0;
}

.legal-body {
    background: #f4f1ea;
    border-bottom: 1px solid #e8decf;
    margin: 0 0 100px;
}

.legal-body .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.legal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.legal-column {
    font-family: "Lato", Arial, sans-serif;
    color: #8f877a;
}

.legal-column h2 {
    margin: 0 0 10px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #8f877a;
}

.legal-column p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

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

.experience-heading {
    margin: 100px 0 0;
}

.experience-heading .contacts-title {
    margin-bottom: 24px;
}

.experience-body {
    background: #f4f1ea;
    border-bottom: 1px solid #e8decf;
    margin: 0 0 100px;
}

.experience-body-alt {
    background: #eae3d2;
}

.experience-body-contact {
    background: #fbfaf8;
}

.experience-body .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.experience-card img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.17);
}

.experience-card-content {
    margin-top: 16px;
    font-family: "Lato", Arial, sans-serif;
    color: #8f877a;
}

.experience-card-content h2 {
    margin: 0 0 10px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: #8f877a;
}

.experience-card-content p {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.experience-card-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 22px;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .main-nav a {
        font-size: 16px;
    }

    .site-footer {
        height: auto;
        padding: 36px 0;
    }

    .site-footer-menu {
        height: auto;
        padding: 28px 0;
    }

    .footer-menu-wrap {
        gap: 16px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .footer-nav a {
        padding: 0 8px;
        font-size: 16px;
    }

    .project-cta-topline,
    .project-cta h2 {
        font-size: 34px;
    }

    .project-cta-description {
        font-size: 12px;
        letter-spacing: 0.32em;
    }

    .main-image-caption {
        width: calc(100% - 40px);
    }

    .main-image-caption-title {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .index-erfahrung-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .index-about-grid,
    .contacts-grid,
    .legal-columns,
    .services-page-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-page-grid-reverse .services-page-image,
    .services-page-grid-reverse .services-page-text {
        order: initial;
    }

    .contacts-map iframe {
        height: 360px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 760px) {
    .site-header {
        background-image: linear-gradient(
            90deg,
            #e6dbd1 0%,
            #ffffff calc(50% - 120px),
            #ffffff calc(50% + 120px),
            #e6dbd1 100%
        );
        background-size: 100% 100%;
    }

    .header-nav-line {
        background-image: linear-gradient(
            90deg,
            #e6dbd1 0%,
            #ffffff calc(50% - 120px),
            #ffffff calc(50% + 120px),
            #e6dbd1 100%
        );
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-wrap {
        padding: 24px 0 22px;
    }

    .brand-logo img {
        width: 160px;
    }

    .brand-subtitle {
        font-size: 15px;
    }

    .site-header.is-compact .brand-wrap {
        padding: 14px 0 13px;
    }

    .site-header.is-compact .brand-logo img {
        width: 67px;
    }

    .site-header.is-compact .brand-subtitle {
        margin-top: 6px;
        font-size: 12px;
    }

    .main-nav {
        gap: 12px 18px;
        padding: 10px 0;
    }

    .main-nav a {
        font-size: 15px;
    }

    .project-cta,
    .index-main-image,
    .index-services,
    .index-values,
    .contacts-block {
        margin: 60px 0;
    }

    .index-about,
    .services-page-body,
    .index-erfahrung,
    .legal-body,
    .experience-body {
        margin: 0 0 60px;
    }

    .index-about-heading,
    .services-page-heading,
    .index-erfahrung-heading,
    .legal-heading,
    .experience-heading {
        margin: 60px 0 0;
    }

    .project-cta-content {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .project-cta-topline,
    .project-cta h2 {
        font-size: 28px;
        line-height: 1.1;
    }

    .project-cta-description {
        font-size: 11px;
        letter-spacing: 0.2em;
        line-height: 1.5;
    }

    .main-image-caption {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 12px;
        padding: 14px 16px;
    }

    .main-image-caption-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .main-image-caption-text {
        font-size: 15px;
    }

    .main-image-wrap img {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .index-erfahrung-card h3 {
        font-size: 26px;
    }

    .index-erfahrung-arrow {
        width: 48px;
        height: 40px;
        right: 10px;
        bottom: 10px;
    }

    .index-erfahrung-arrow::after {
        width: 22px;
        height: 22px;
    }

    .service-card-label {
        margin: 0 10px;
        bottom: 12px;
        padding: 14px 12px;
        font-size: 13px;
    }

    .service-card-label::after {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .index-about .container,
    .services-page-body .container,
    .contacts-body .container,
    .index-values .container,
    .legal-body .container,
    .experience-body .container {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .contacts-title {
        font-size: 28px;
    }

    .contacts-company-name {
        font-size: 22px;
    }

    .contacts-left p,
    .contacts-key,
    .contacts-val {
        font-size: 16px;
    }

    .contacts-row {
        grid-template-columns: 72px 1fr;
        gap: 20px;
        margin: 0 0 20px;
    }

    .contacts-map iframe {
        height: 320px;
    }

    .index-about-caption {
        left: 12px;
        width: calc(100% - 24px);
        bottom: 12px;
        padding: 14px 14px;
    }

    .index-about-caption-title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .index-about-caption-text {
        font-size: 15px;
    }

    .footer-legal-wrap {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-legal-wrap p,
    .footer-legal-wrap nav a {
        padding: 8px 0;
        font-size: 13px;
    }

    .footer-legal-wrap p {
        text-align: center;
    }

    .footer-legal-wrap nav {
        padding-bottom: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-label {
        font-size: 12px;
    }

    .value-title {
        font-size: 34px;
    }
}
