/* =========================================================
   LOCAL FONTS
========================================================= */

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    background: #f5f5f2;
    color: #202522;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --dark: #202522;
    --dark-soft: #292f2b;
    --green: #607a55;
    --green-light: #a5b99a;
    --light: #f5f5f2;
    --white: #ffffff;
    --border: rgba(32, 37, 34, 0.12);

    --container: 1240px;
    --radius: 14px;
    --transition: 0.35s ease;
}


/* =========================================================
   GENERAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--green);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.15;
}

h2 {
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -0.035em;
}

h1 span,
h2 span {
    display: block;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 25px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green);
    color: var(--white);
}

.button-primary:hover {
    background: #506848;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.button-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.button-outline {
    border-color: var(--border);
    color: var(--dark);
}

.button-outline:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    color: var(--white);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        padding var(--transition);
}

.site-header.scrolled {
    background: rgba(32, 37, 34, 0.96);

    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12);
}

.inner-page-header {
    background: var(--dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 92px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;

    width: auto;
    height: 58px;
    max-width: 190px;

    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 14px;
    font-weight: 500;
}

.desktop-nav > a:not(.nav-button) {
    opacity: 0.88;

    transition:
        opacity var(--transition);
}

.desktop-nav > a:not(.nav-button):hover {
    opacity: 1;
}

.nav-button {
    padding: 12px 18px;

    border-radius: 8px;

    background: var(--green);
}

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--white);

    transition:
        transform var(--transition);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;

    color: var(--white);

    font-family: "Montserrat", sans-serif;
    font-size: 25px;
}

.mobile-menu-button {
    margin-top: 10px;

    padding: 14px 22px;

    border-radius: 8px;

    background: var(--green);

    font-family: "Inter", sans-serif;
    font-size: 15px;
}


/* =========================================================
   STARTSEITE – HERO
========================================================= */

.hero {
    position: relative;

    min-height: 92vh;

    display: flex;
    align-items: center;

    color: var(--white);

    overflow: hidden;
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(20, 24, 22, 0.88) 0%,
            rgba(20, 24, 22, 0.64) 50%,
            rgba(20, 24, 22, 0.28) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding-top: 80px;
}

.hero-eyebrow {
    color: var(--green-light);
}

.hero h1 {
    max-width: 850px;

    font-size: clamp(48px, 6.3vw, 82px);

    letter-spacing: -0.055em;
}

.hero-text {
    max-width: 680px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;

    z-index: 3;

    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-services {
    display: flex;
    justify-content: space-between;

    padding: 19px 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}


/* =========================================================
   STARTSEITE – TRUST
========================================================= */

.trust-bar {
    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    padding: 34px 25px;

    border-right: 1px solid var(--border);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;

    font-family: "Montserrat", sans-serif;
    font-size: 19px;
}

.trust-item span {
    display: block;

    margin-top: 4px;

    color: #68706b;

    font-size: 13px;
}


/* =========================================================
   STARTSEITE – ÜBER UNS
========================================================= */

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;

    align-items: center;
}

.about-image {
    height: 650px;

    overflow: hidden;

    border-radius: var(--radius);
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.about-content {
    max-width: 620px;
}

.about-content h2 {
    margin-bottom: 28px;
}

.about-content p {
    margin-bottom: 18px;

    color: #59615c;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;

    color: var(--dark);

    font-weight: 600;
}

.text-link span {
    color: var(--green);

    transition:
        transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   STARTSEITE – LEISTUNGEN
========================================================= */

.services-section {
    background: var(--dark);

    color: var(--white);
}

.section-heading {
    display: flex;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;
}

.section-heading > p {
    align-self: end;

    max-width: 400px;

    color: #8f9993;
}

.section-heading-light .eyebrow {
    color: var(--green-light);
}

.section-heading h2 {
    max-width: 700px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.service-card {
    overflow: hidden;

    background: var(--dark-soft);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(165, 185, 154, 0.4);
}

.service-image {
    height: 310px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-content {
    position: relative;

    padding: 30px 32px 34px;
}

.service-content h3 {
    margin-top: 10px;

    font-size: 28px;
}

.service-content p {
    max-width: 450px;

    margin-top: 13px;

    color: #9da59f;

    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 22px;

    color: var(--white);

    font-size: 13px;
    font-weight: 600;
}

.service-link span {
    color: var(--green-light);

    transition:
        transform var(--transition);
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   STARTSEITE – LEISTUNGSDETAILS
========================================================= */

.service-detail {
    padding: 120px 0;

    background: var(--white);
}

.service-detail-reverse {
    background: var(--light);
}

.service-detail-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.service-detail-reverse .service-detail-content {
    order: 2;
}

.service-detail-reverse .service-detail-image {
    order: 1;
}

.service-detail-content {
    max-width: 570px;
}

.service-detail-content h2 {
    margin-bottom: 28px;
}

.service-detail-content > p:not(.eyebrow) {
    color: #626a65;
}

.check-list {
    display: grid;
    gap: 11px;

    margin-top: 30px;

    list-style: none;
}

.check-list li {
    position: relative;

    padding-left: 26px;

    font-size: 14px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--green);

    font-weight: 700;
}

.service-detail-image {
    height: 600px;

    overflow: hidden;

    border-radius: var(--radius);
}

.service-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   STARTSEITE – WARUM AKGÜN
========================================================= */

.why-section {
    background: var(--light);
}

.advantages-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.advantage {
    padding: 35px 28px;

    border-top: 1px solid var(--border);
}



.advantage h3 {
    margin-bottom: 12px;

    font-size: 23px;
}

.advantage p {
    color: #68706b;

    font-size: 14px;
}


/* =========================================================
   STARTSEITE – CTA
========================================================= */

.cta-section {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;

    color: var(--white);

    overflow: hidden;
}

.cta-background,
.cta-overlay {
    position: absolute;
    inset: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cta-overlay {
    background: rgba(20, 25, 22, 0.76);
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.cta-content .eyebrow {
    color: var(--green-light);
}

.cta-content h2 {
    margin-bottom: 35px;

    font-size: clamp(42px, 5vw, 66px);
}


/* =========================================================
   STARTSEITE – REGION
========================================================= */

.region-section {
    background: var(--white);
}

.region-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.region-content {
    max-width: 680px;
}

.region-content h2 {
    margin-bottom: 28px;
}

.region-content > p:not(.eyebrow) {
    color: #626a65;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 30px;
}

.region-list span {
    padding: 9px 13px;

    border: 1px solid var(--border);
    border-radius: 6px;

    color: #59615c;

    font-size: 12px;
}

.region-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 350px;

    padding: 50px;

    border-radius: var(--radius);

    background: var(--dark);

    color: var(--white);

    text-align: center;
}

.region-accent span {
    color: var(--green-light);

    font-size: 18px;
}

.region-accent strong {
    margin: 7px 0;

    font-family: "Montserrat", sans-serif;
    font-size: 42px;
}


/* =========================================================
   STARTSEITE – KONTAKT
========================================================= */

.contact-section {
    background: var(--light);
}

.contact-heading {
    max-width: 700px;

    margin-bottom: 65px;
}

.contact-heading h2 {
    margin-bottom: 22px;
}

.contact-heading > p:last-child {
    color: #626a65;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 100px;

    align-items: start;
}

.contact-info {
    padding-top: 10px;
}

.contact-item {
    padding: 25px 0;

    border-top: 1px solid var(--border);
}

.contact-item:last-of-type {
    border-bottom: 1px solid var(--border);
}

.contact-item span {
    display: block;

    margin-bottom: 6px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.contact-item a {
    font-family: "Montserrat", sans-serif;

    font-size: 22px;
    font-weight: 600;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.contact-form {
    padding: 38px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}

.form-field label {
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9ddd9;
    border-radius: 7px;

    outline: none;

    background: #fafaf8;

    color: var(--dark);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(96, 122, 85, 0.1);
}

.form-submit {
    width: 100%;
}

.form-note {
    margin-top: 15px;

    color: #8a918d;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #181c1a;

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 0.7fr 0.8fr;

    gap: 80px;

    padding: 75px 0;
}

.footer-brand p {
    max-width: 330px;

    margin-top: 20px;

    color: #858d88;

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 12px;

    color: var(--green-light);

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-column a {
    color: #a6ada8;

    font-size: 13px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #707873;

    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-credit {
    opacity: 0.55;

    transition:
        opacity 0.3s ease;
}

.footer-credit:hover {
    opacity: 1;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   INNER PAGE – HERO
========================================================= */

.page-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    color: var(--white);

    overflow: hidden;
}

.page-hero-background,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(20, 24, 22, 0.88),
            rgba(20, 24, 22, 0.48)
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding-top: 80px;
}

.page-hero-content .eyebrow {
    color: var(--green-light);
}

.page-hero-content h1 {
    font-size: clamp(48px, 6vw, 76px);

    letter-spacing: -0.05em;
}

.page-hero-content p:last-child {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
}


/* =========================================================
   REFERENCES
========================================================= */

.references-section {
    background: var(--light);
}

.references-heading {
    margin-bottom: 40px;
}

.reference-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 35px;
}

.reference-filter {
    padding: 10px 17px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: transparent;

    color: #59615c;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.reference-filter:hover,
.reference-filter.active {
    background: var(--dark);

    border-color: var(--dark);

    color: var(--white);
}


/* =========================================================
   REFERENCE GALLERY
========================================================= */

.reference-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 280px;

    gap: 18px;
}

.reference-item {
    position: relative;

    min-width: 0;

    padding: 0;

    border: 0;
    border-radius: var(--radius);

    overflow: hidden;

    background: var(--dark);

    cursor: pointer;
}

.reference-item-large {
    grid-row: span 2;
}

.reference-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        opacity 0.4s ease;
}

.reference-item:hover img {
    transform: scale(1.045);
}

.reference-caption {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;

    padding: 55px 24px 22px;

    background:
        linear-gradient(
            transparent,
            rgba(15, 18, 16, 0.86)
        );

    color: var(--white);

    text-align: left;
}

.reference-caption span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reference-caption strong {
    margin-top: 4px;

    font-family: "Montserrat", sans-serif;

    font-size: 17px;
}

.reference-item.hidden {
    display: none;
}

.reference-note {
    margin-top: 25px;

    color: #858d88;

    font-size: 12px;
}


/* =========================================================
   REFERENCE CTA
========================================================= */

.reference-cta {
    background: var(--dark);

    color: var(--white);
}

.reference-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding-top: 85px;
    padding-bottom: 85px;
}

.reference-cta .eyebrow {
    color: var(--green-light);
}

.reference-cta h2 {
    font-size: clamp(34px, 4vw, 50px);
}


/* =========================================================
   REFERENCE LIGHTBOX
========================================================= */

.reference-lightbox {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(12, 15, 13, 0.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.reference-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;

    max-width: 1200px;
    max-height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    display: block;

    max-width: 100%;
    max-height: 78vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-title {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
    font-weight: 500;

    text-align: center;
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    z-index: 2;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--white);

    font-size: 32px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.18);

    transform: rotate(90deg);
}


/* =========================================================
   SERVICE PAGE – HERO
========================================================= */

.service-page-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);
}

.service-page-hero-image,
.service-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.service-page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.service-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(20, 24, 22, 0.9),
            rgba(20, 24, 22, 0.45)
        );
}

.service-page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    padding-top: 80px;
}

.service-page-hero-content .eyebrow {
    color: var(--green-light);
}

.service-page-hero-content h1 {
    max-width: 800px;

    font-size: clamp(48px, 6vw, 78px);

    letter-spacing: -0.055em;
}

.service-page-hero-content h1 span {
    color: var(--green-light);
}

.service-page-hero-content > p:not(.eyebrow) {
    max-width: 620px;

    margin: 25px 0 32px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
}


/* =========================================================
   SERVICE PAGE – INTRO
========================================================= */

.service-intro {
    background: var(--white);
}

.service-intro-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 90px;

    align-items: center;
}

.service-intro-content {
    max-width: 620px;
}

.service-intro-content h2 {
    margin-bottom: 25px;

    font-size: clamp(38px, 4vw, 55px);
}

.service-intro-content h2 span {
    color: var(--green);
}

.service-intro-content p {
    margin-bottom: 18px;

    color: #66706a;
}

.service-intro-image {
    height: 560px;

    overflow: hidden;

    border-radius: var(--radius);
}

.service-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   SERVICE PAGE – ANGEBOTE
========================================================= */

.service-offerings {
    background: var(--light);
}

.service-offering-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.service-offering {
    overflow: hidden;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-offering:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.07);
}

.service-offering-image {
    height: 230px;

    overflow: hidden;
}

.service-offering-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.service-offering:hover .service-offering-image img {
    transform: scale(1.045);
}

.service-offering-content {
    padding: 30px;
}

.service-offering-text {
    display: flex;
    align-items: center;
}

.service-offering-text .service-offering-content {
    padding: 35px;
}

.service-offering-text h3 {
    margin-top: 10px;
}

.service-offering h3 {
    margin-bottom: 12px;

    font-family: "Montserrat", sans-serif;

    font-size: 19px;
}

.service-offering p {
    color: #707873;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SERVICE PAGE – SHOWCASE
========================================================= */

.service-showcase {
    background: var(--white);
}

.service-showcase-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 18px;

    height: 430px;
}

.showcase-image {
    display: block;

    overflow: hidden;

    border-radius: var(--radius);
}

.showcase-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.showcase-image:hover img {
    transform: scale(1.045);
}

.showcase-image-large {
    grid-row: span 1;
}


/* =========================================================
   SERVICE PAGE – CTA
========================================================= */

.service-cta {
    background: var(--green);

    color: var(--white);
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding-top: 85px;
    padding-bottom: 85px;
}

.service-cta .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.service-cta h2 {
    max-width: 800px;

    font-size: clamp(35px, 4vw, 52px);
}

.service-cta h2 span {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   RESPONSIVE – TABLET
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section {
        padding: 90px 0;
    }

    .about-grid,
    .service-detail-grid,
    .region-grid,
    .contact-grid {
        gap: 55px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        padding: 25px 18px;
    }

    .trust-item strong {
        font-size: 17px;
    }
}


/* =========================================================
   RESPONSIVE – SERVICE PAGE
========================================================= */

@media (max-width: 900px) {

    .service-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .service-intro-image {
        height: 450px;
    }

    .service-offering-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE – MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .section {
        padding: 75px 0;
    }

    .header-inner {
        min-height: 76px;
    }

    .logo img {
        height: 48px;
        max-width: 160px;
    }

    /* Hero */

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .hero-text {
        margin-top: 22px;

        font-size: 16px;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-services {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        padding: 15px 0;

        font-size: 10px;
    }

    /* Trust */

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 20px 12px;

        border-bottom: 1px solid var(--border);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    /* General grids */

    .about-grid,
    .service-detail-grid,
    .region-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {
        height: 560px;
    }

    /* Section headings */

    .section-heading {
        flex-direction: column;

        margin-bottom: 40px;
    }

    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    /* Service details */

    .service-detail {
        padding: 75px 0;
    }

    .service-detail-reverse .service-detail-content,
    .service-detail-reverse .service-detail-image {
        order: initial;
    }

    .service-detail-image {
        height: 400px;
    }

    /* Advantages */

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */

    .cta-section {
        min-height: 520px;
    }

    /* Region */

    .region-accent {
        min-height: 270px;
    }

    .region-accent strong {
        font-size: 34px;
    }

    /* Contact */

    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .button {
        width: 100%;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    /* Inner pages */

    .page-hero {
        min-height: 460px;
    }

    .page-hero-content {
        padding-top: 70px;
    }

    .page-hero-content h1 {
        font-size: 44px;
    }

    .page-hero-content p:last-child {
        font-size: 15px;
    }

    /* References */

    .reference-gallery {
        grid-template-columns: 1fr;

        grid-auto-rows: 300px;
    }

    .reference-item-large {
        grid-row: span 1;
    }

    .reference-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        padding-top: 65px;
        padding-bottom: 65px;
    }

    .reference-cta .button {
        width: 100%;
    }

    /* Lightbox */

    .reference-lightbox {
        padding: 20px;
    }

    .lightbox-image {
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;

        font-size: 27px;
    }

    /* Service page */

    .service-page-hero {
        min-height: 560px;
    }

    .service-page-hero-content {
        padding-top: 70px;
    }

    .service-page-hero-content h1 {
        font-size: 45px;
    }

    .service-page-hero-content > p:not(.eyebrow) {
        font-size: 15px;
    }

    .service-intro-image {
        height: 380px;
    }

    .service-offering-grid {
        grid-template-columns: 1fr;
    }

    .service-offering-image {
        height: 220px;
    }

    .service-offering-icon {
        margin-bottom: 25px;
    }

    .service-showcase-grid {
        grid-template-columns: 1fr;

        height: auto;
    }

    .showcase-image {
        height: 280px;
    }

    .service-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        padding-top: 65px;
        padding-bottom: 65px;
    }

    .service-cta .button {
        width: 100%;
    }
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
    background: var(--light);
}

.legal-section {
    padding-top: 100px;
    padding-bottom: 120px;

    background: var(--light);
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin: 0 0 40px;

    color: var(--dark);
}

.legal-content h3 {
    margin-top: 55px;
    margin-bottom: 18px;

    color: var(--dark);

    font-family: "Montserrat", sans-serif;
    font-size: 23px;
}

.legal-content p {
    margin: 0 0 22px;

    color: #59615c;

    line-height: 1.8;
}

.legal-content ul {
    margin: 0 0 25px;
    padding-left: 22px;

    color: #59615c;
}

.legal-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.legal-content li::marker {
    color: var(--green);
}

.legal-content a {
    color: var(--dark);

    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--green);
}

.legal-content .eyebrow {
    margin-bottom: 14px;
}

.legal-date {
    margin-top: 60px !important;

    color: #858d88;

    font-size: 12px;
}

/* =========================================================
   LEGAL PAGE HERO
========================================================= */

.legal-page-hero {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;

    background: var(--dark);

    color: var(--white);

    overflow: hidden;
}

.legal-page-hero .page-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;

    color: var(--white);
}

.legal-page-hero .eyebrow {
    color: var(--green-light);
}

.legal-page-hero h1 {
    color: var(--white);

    font-size: clamp(48px, 6vw, 76px);

    letter-spacing: -0.05em;
}

.legal-page-hero h1 span {
    color: var(--green-light);
}

.legal-page-hero .page-hero-content > p:not(.eyebrow) {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
}