/* ============================================================
   STUDIO NEDO — MAIN STYLESHEET
   Werte direkt aus dem Figma Dev Mode Export
   ============================================================ */

/* --- Public Sans (Variable Font, self-hosted) --- */
@font-face {
    font-family: 'Public Sans';
    src: url('../fonts/PublicSans.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Public Sans';
    src: url('../fonts/PublicSans-Italic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* --- PP Rader Font Faces --- */
@font-face {
    font-family: 'PP Rader';
    src: url('../fonts/PPRader-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PP Rader';
    src: url('../fonts/PPRader-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Custom Properties (direkt aus Figma) --- */
:root {
    --color-bg:          #F4F3F1;
    --color-gray-light:  #D9D9D9;
    --color-gray:        #C1BDBB;
    --color-brown:       #523E32;
    --color-terracotta:  #9C4D3E;
    --color-dark:        #323232;

    --font-display: 'PP Rader', sans-serif;
    --font-body:    'Public Sans', sans-serif;

    /* Horizontaler Abstand aus Figma: 50px */
    --gutter: 50px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;        /* Verhindert horizontales Scrollen durch translateX(100%) des Nav-Overlays */
    scrollbar-gutter: stable;  /* Reserviert Scrollbar-Platz dauerhaft — kein Layout-Shift beim Öffnen des Menüs */
}

body {
    background-color: var(--color-bg);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.prose p + p {
    margin-top: 1em;
}

/* K-G: Silbentrennung in allen Text-Containern */
.prose,
.section-hero__headline,
.section-manifesto__body,
.section-contact__text,
.section-services__body,
.section-reviews__scroll,
.page-legal__text,
.phasen-slide__body,
.section-about__text,
.section-ethos__body,
.section-leistungen-hero__body,
.section-leistungen-liste__body {
    hyphens: auto;
    overflow-wrap: break-word;
}

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

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

ul {
    list-style: none;
}

/* --- Bild-Platzhalter --- */
.img-placeholder {
    background-color: var(--color-gray-light);
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Terracotta-Link (aus Figma: border-bottom, Public Sans 700, 18px, #9C4D3E) --- */
.link-terracotta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 340px;
    border-bottom: 1px solid var(--color-terracotta);
    padding-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 105%;
    color: var(--color-terracotta);
    transition: opacity 0.2s;
}

.link-terracotta:hover {
    opacity: 0.75;
}

.link-terracotta::after {
    content: '';
    display: block;
    width: 1cap;
    height: 1cap;
    background-image: url('/assets/images/link_arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* --- PP Rader Display Stil --- */
.rader {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.05;
}


/* ============================================================
   HEADER — aus Figma: 82px hoch, glassmorphism
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 82px;
    background: rgba(244, 243, 241, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-gray);
    box-shadow: 0px 8px 4px rgba(50, 50, 50, 0.05);
}

.site-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
}

/* Logo: Höhe = Cap-Height von PP Rader 24px, damit optisch bündig mit Versalien daneben */
.site-header__logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 24px;
}

.site-header__logo img {
    height: 1cap;
    width: auto;
}


/* CTA in der Mitte: "Starte dein Projekt" */
.site-header__cta {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--color-dark);
    transition: opacity 0.2s;
}

.site-header__cta:hover {
    opacity: 0.6;
}

/* MENÜ rechts */
.site-header__menu {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 170px;
    text-align: right;
    transition: opacity 0.2s;
}

.site-header__menu:hover {
    opacity: 0.6;
}


/* ============================================================
   NAV OVERLAY — Ganzseitiges Menü
   Aus Figma: Terracotta, PP Rader 80px, slide in/out von rechts
   ============================================================ */

/* Overlay: verdeckt den gesamten Viewport, sitzt über dem Header */
.site-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--color-terracotta);
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    overflow: hidden;
}

.site-nav.is-open {
    transform: translateX(0);
}

/* Body-Scroll sperren wenn Menü offen */
body.nav-is-open {
    overflow: hidden;
}

/* Logoprint-Dekoration (wie im Footer, opacity 0.05) */
.site-nav::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 33%;
    background-image: url('/assets/images/logoprint.svg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center bottom;
    opacity: 0.05;
    pointer-events: none;
}

/* Inneres Layout: max-width 1440px, identisch mit allen anderen Sektionen */
.site-nav__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 var(--gutter);
}

/* Header-Zeile im Overlay: Logo links, Zurück rechts */
/* Höhe identisch mit .site-header (82px) */
.site-nav__header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.site-nav__logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 24px;
}

.site-nav__logo-img {
    height: 1cap;
    width: auto;
    /* Logo-SVG ist dunkel — auf Terracotta hell machen */
    filter: brightness(0) invert(1);
}

/* "Zurück"-Button: gespiegeltes Gegenstück zu .site-header__menu */
.site-nav__close {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 170px;
    text-align: right;
    transition: opacity 0.2s;
}

.site-nav__close:hover {
    opacity: 0.6;
}

/* Aus Figma: Nav-Links beginnen bei ~35% von links (503px / 1440px) */
.site-nav__content {
    flex: 1;
    display: flex;
    align-items: center;
}

.site-nav__links {
    padding-left: 33.8%;
}

/* Aus Figma: PP Rader 80px, uppercase, weiß, letter-spacing 0.05em, line-height 120% */
.site-nav__links a {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 80px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: opacity 0.2s;
}

.site-nav__links a:hover {
    opacity: 0.65;
}

/* Untere Leiste: Instagram links, Copyright rechts */
/* Aus Figma: Instagram bei links 503px (= 33.8% padding), Copyright rechts */
.site-nav__bottom {
    display: flex;
    align-items: center;
    padding-bottom: 36px;
    flex-shrink: 0;
    padding-left: 33.8%;
}

/* CTA im Nav-Overlay: nur auf Mobile sichtbar */
.site-nav__cta {
    display: none;
}


/* ============================================================
   HERO SECTION
   Aus Figma: Text bei top 129px (= Header 82px + Padding),
   Bild full-width 628px hoch
   ============================================================ */

.section-hero {
    padding-top: 82px; /* Fester Header */
}

/* Zwei-Spalten Textreihe: Headline links, Intro rechts */
.section-hero__text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 64px var(--gutter) 40px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Aus Figma: PP Rader, 400, 48px, letter-spacing 0.05em */
.section-hero__headline {
    flex: 1 1 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

.section-hero__headline span {
    display: block;
}

/* Aus Figma: Public Sans, 400, 24px, line-height 140% */
.section-hero__intro {
    flex: 0 0 659px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-dark);
}

/* Aus Figma: 1440px breit, 628px hoch */
.section-hero__image {
    position: relative;
    height: 628px;
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.section-hero__image .img-placeholder {
    width: 100%;
    height: 100%;
}

/* Slideshow: alle Bilder übereinander, Crossfade via opacity */
.section-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.section-hero__slide.is-active {
    opacity: 1;
}


/* ============================================================
   MANIFESTO SECTION
   Aus Figma: Label links (50px), Text rechts (ab 730px)
   Darunter: 2 Bilder je 50% Breite, 482px hoch
   ============================================================ */


.section-manifesto__upper {
    display: flex;
    gap: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Linke Hälfte: nur das Label */
.section-manifesto__label-col {
    flex: 1 1 0;
    padding: 48px 0;
    display: flex;
    align-items: flex-start;
}

/* Aus Figma: Public Sans, 700, 28px, #C1BDBB */
.section-manifesto__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-gray);
}

/* Rechte Hälfte: Text + Link */
.section-manifesto__text-col {
    flex: 0 0 659px;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Aus Figma: Public Sans, 400, 18px, line-height 140% */
.section-manifesto__body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}

/* Zwei Bilder nebeneinander — Figma: 823px / 597px ≈ 2fr / 1.45fr → 2fr 1fr */
.section-manifesto__images {
    display: grid;
    grid-template-columns: 2fr 1.45fr;
    gap: 21px;
    height: 482px;
}

.section-manifesto__image {
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.section-manifesto__image img,
.section-manifesto__image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   PROJEKTE SECTION
   Aus Figma: Horizontaler Scroll, Karten 433x618px, Gap 21px
   ============================================================ */

.section-projects {
    padding: 0 var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

.section-projects__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 88px 0 var(--gutter);
}

/* Aus Figma: PP Rader, 400, 36px */
.section-projects__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* Vor/Zurück Navigation */
.section-projects__nav {
    display: flex;
    gap: 91px;
    align-items: center;
}

/* Track-Wrapper: bricht aus Section-Padding aus, versteckt Klone, blendet Ränder weich aus */
.section-projects__track-wrapper {
    margin: 0 calc(-1 * var(--gutter));
}

/* Scroll-Track: kein natives Scroll, Position wird per JS-Transform gesteuert */
.section-projects__scroll {
    display: flex;
    flex-direction: row;
    gap: 21px;
    will-change: transform;
}

.project-card {
    flex: 0 0 433px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card__image {
    width: 433px;
    height: 618px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-gray-light);
}

.project-card__image img,
.project-card__image .img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.03);
}

/* Aus Figma: padding 24px 0 48px, gap 12px */
.project-card__info {
    padding: 24px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Aus Figma: PP Rader, 400, 32px */
.project-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* Aus Figma: Public Sans, 400, 18px */
.project-card__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}

/* "Alle Projekte ansehen" Link — linksbündig mit der 3. Projektkarte */
.section-projects__footer {
    padding: 24px 0 var(--gutter);
    padding-left: calc(2 * (433px + 21px));
}

/* Desktop: Counter versteckt */
.section-projects__counter {
    display: none;
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray);
}


/* ============================================================
   KONTAKT SECTION (Anfrage)
   Aus Figma: Links #523E32 (617px), rechts Bild (830px)
   ============================================================ */

.section-contact {
    display: grid;
    grid-template-columns: 617fr 823fr;
    min-height: 800px;
    overflow: hidden;
    scroll-margin-top: 82px;
}

.section-contact__left {
    background: var(--color-brown);
    padding: var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

/* Aus Figma: PP Rader, 400, 36px, #F4F3F1 */
.section-contact__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
}

/* Aus Figma: Public Sans, 400, 18px, #F4F3F1 */
.section-contact__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-bg);
    max-width: 433px;
}


.section-contact__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-bg);
    border: none;
    border-bottom: 1px solid rgba(244, 243, 241, 0.5);
    padding-bottom: 12px;
    padding-right: 5px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s;
}

.section-contact__link:hover {
    opacity: 0.7;
}

.section-contact__link::after {
    content: '';
    display: block;
    width: 1cap;
    height: 1cap;
    background-image: url('/assets/images/link_arrow_light.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transform: rotate(135deg);
}

/* Expandable form */
.section-contact__form-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-contact__form-wrap.is-open {
    max-height: 700px;
}

.section-contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 4px;
}

.section-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.section-contact__form-field input,
.section-contact__form-field textarea {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-bg);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(193, 189, 187, 0.6);
    padding: 0 0 12px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.section-contact__form-field input::placeholder,
.section-contact__form-field textarea::placeholder {
    font-style: italic;
    color: rgba(244, 243, 241, 0.6);
}

.section-contact__form-field input:focus,
.section-contact__form-field textarea:focus {
    border-bottom-color: var(--color-bg);
}

.section-contact__form-field textarea {
    resize: vertical;
    min-height: 59px;
    max-height: 450px;
    padding-bottom: 40px;
}

.section-contact__submit {
    width: 100%;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: var(--color-bg);
    background: var(--color-terracotta);
    border: none;
    border-radius: 5px;
    padding: 16px 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.section-contact__submit:hover {
    opacity: 0.85;
}

.section-contact__form-error {
    font-family: var(--font-body);
    font-size: 15px;
    color: #f4a490;
    margin-bottom: 4px;
}

.section-contact__success {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-bg);
    font-weight: 500;
}

.section-contact__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.section-contact__image {
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.section-contact__image img,
.section-contact__image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   LEISTUNGEN SECTION (Services)
   Aus Figma: Bild links 661px, Text rechts ab 843px
   ============================================================ */

.section-services {
    display: grid;
    grid-template-columns: 661fr 590fr;
    min-height: 617px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px var(--gutter) var(--gutter);
    gap: 100px;
}

.section-services__image {
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.section-services__image img,
.section-services__image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-services__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}


/* Aus Figma: PP Rader, 400, 36px */
.section-services__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    max-width: 433px;
}

/* Aus Figma: Public Sans, 400, 18px */
.section-services__body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    max-width: 433px;
}

.section-services__text .link-terracotta {
    width: 100%;
    max-width: 433px;
}


/* ============================================================
   BEWERTUNGEN SECTION (Reviews)
   Aus Figma: "echo" Label, horizontaler Scroll, Karten 364px
   Anführungszeichen: PP Rader 80px, #C1BDBB
   ============================================================ */

.section-reviews {
    padding: var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

/* Label links, Scroll rechts — nebeneinander */
.section-reviews__inner {
    display: flex;
    align-items: flex-start;
    gap: var(--gutter);
}

/* Defensives CSS - Spalte soll auf jeden Fall ihre Breite halten */
.section-reviews__label-col {
    flex-shrink: 0;
}

/* Aus Figma: PP Rader, 400, 36px */
.section-reviews__label {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    display: block;
}

.section-reviews__scroll {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: var(--gutter);
    flex: 1;
    min-width: 0;
}

.review-card {
    flex: 0 0 364px;
}

/* Aus Figma: Public Sans, 400, 16px */
.review-card__quote {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-dark);
}

/* Öffnendes Anführungszeichen: inline-block */
.review-card__quote::before {
    content: '';
    display: inline-block;
    width: 1cap;
    height: 1cap;
    background-image: url('/assets/images/quote_start.svg');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 4px;
    pointer-events: none;
}

/* Auf grauem Hintergrund (Leistungen): Anführungszeichen in --color-dark (#323232) */
.section-leistungen-bg .review-card__quote::before {
    background-image: url('/assets/images/quote_start_dark.svg');
    opacity: 0.8;
}
.section-leistungen-bg .review-card__quote::after {
    background-image: url('/assets/images/quote_end_dark.svg');
    opacity: 0.8;
}

/* Schließendes Anführungszeichen: inline — kein Umbruch möglich, da kein Leerzeichen
   vor dem Element (Unicode Line-Breaking: kein Soft-Wrap zwischen Buchstabe und
   unmittelbar folgendem Inline-Element). Breite über padding-left statt width. */
.review-card__quote::after {
    content: '';
    display: inline;
    padding-left: 1cap;
    background-image: url('/assets/images/quote_end.svg');
    background-size: 1cap 1cap;
    background-repeat: no-repeat;
    background-position: left center;
    vertical-align: middle;
    margin-left: 4px;
    pointer-events: none;
}



/* ============================================================
   PROJEKT-NAVIGATION (Vorheriges / Nächstes Projekt)
   Aus Figma PDP: PP Rader Pfeil 61px, Public Sans 24px,
   links gespiegelt (scaleX(-1)), aktiv #323232 / inaktiv #C1BDBB
   ============================================================ */

.projekt-nav {
    padding: var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

.projekt-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.projekt-nav__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    text-decoration: none;
    color: var(--color-dark);
}

.projekt-nav__link.is-inactive {
    color: #C1BDBB;
    cursor: default;
}

/* ============================================================
   NAV-ARROW — gemeinsame Pfeil-Klasse für alle Navs
   Layout-Box 44×44px, Maske 32px: rotierter Pfeil (45°) bleibt
   innerhalb der Box (32×√2 ≈ 45px Diagonale passt in 44px)
   ============================================================ */

.nav-arrow {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: var(--color-dark);
    mask-image: url('/assets/images/link_arrow.svg');
    mask-size: 32px;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: background 0.2s;
    /* Standard-Richtung: → */
    transform: rotate(45deg);
}

.nav-arrow--prev {
    transform: rotate(-135deg);
}

.nav-arrow--inactive {
    background: #C1BDBB;
    cursor: default;
}

/* Button-Reset wenn .nav-arrow auf einem <button> liegt */
button.nav-arrow {
    border: none;
    padding: 0;
    cursor: pointer;
}

button.nav-arrow.nav-arrow--inactive {
    cursor: default;
}

.nav-arrow:not(.nav-arrow--inactive):hover,
.projekt-nav__link:not(.is-inactive):hover .nav-arrow {
    background: var(--color-terracotta);
}

.projekt-nav__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
}



/* ============================================================
   PROJEKT-ECHO (Kundenzitat, zentriert)
   Aus Figma PDP: 660px zentriert, PP Rader 32px uppercase,
   padding 48px oben / 24px unten, Label Public Sans 18px
   ============================================================ */

.section-projekt-echo {
    padding: var(--gutter);
}

.section-projekt-echo__inner {
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-projekt-echo__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    margin: 0;
}

.section-projekt-echo__quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 0;
}



/* ============================================================
   FOOTER (CTA + Kontaktinfos)
   Aus Figma: Hintergrund #9C4D3E (Terracotta), Höhe ~635px
   ============================================================ */

.site-footer {
    background-color: var(--color-terracotta);
    position: relative;
    overflow: hidden;
}

/* Logo-Wasserzeichen */
.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 67%;
    background-image: url('/assets/images/logoprint.svg');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: center bottom;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.site-footer__main {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0;
    padding: 64px var(--gutter) 0;
    max-width: 1440px;
    margin: 0 auto;
}

/* Linker Block: "Hast du ein Projekt im Sinn?" + "los geht'S!" */
.site-footer__cta {
    flex: 0 0 443px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Aus Figma: Public Sans, 400, 18px, #F4F3F1 */
.site-footer__cta-intro {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-bg);
}

/* Aus Figma: PP Rader, 400, 80px, letter-spacing 0.05em */
.site-footer__cta-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-bg);
    white-space: nowrap;
    transition: opacity 0.2s;
}

.site-footer__cta-headline:hover {
    opacity: 0.7;
}

/* Rechter Block: Kontaktinfos (ab ca. 733px in Figma) */
.site-footer__contact {
    flex: 1;
    padding-left: 240px; /* 733 - 443 - 50 = 240 */
    display: flex;
    flex-direction: column;
    gap: 29px;
}


/* Aus Figma: Public Sans, 700, 24px */
.site-footer__contact-headline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-bg);
}

/* Aus Figma: Public Sans, 400, 18px */
.site-footer__contact-info {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-bg);
}

/* E-Mail und Telefon-Links im Kontakt-Block */
.site-footer__contact-info a {
    color: var(--color-bg);
    font-weight: 700;
    transition: opacity 0.2s;
}

.site-footer__contact-info a:hover {
    opacity: 0.7;
}

/* Aus Figma: Public Sans, 700, 18px – Instagram (war 24px, auf 18px reduziert) */
.site-footer__instagram {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-bg);
    transition: opacity 0.2s;
}

.site-footer__instagram:hover {
    opacity: 0.7;
}

.site-footer__bdia {
    display: block;
    width: auto;
    height: 75px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

/* Untere Navigationsleiste */
.site-footer__bottom {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px var(--gutter);
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

/* Aus Figma: Public Sans, 400, 16px, line-height 140%, #F4F3F1 */
/* Breite entspricht der Header-Navbar: kein flex: 1, Copyright wird nach rechts gedrückt */
.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
}

.site-footer__copyright {
    margin-left: auto;
}

.site-footer__nav a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-bg);
    transition: opacity 0.2s;
}

.site-footer__nav a[aria-current="page"] {
    font-weight: 700;
}

.site-footer__nav a:hover {
    opacity: 0.7;
}

/* Aus Figma: Public Sans, 700, 16px */
.site-footer__copyright {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-bg);
}


/* ============================================================
   UTILITY
   ============================================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   BACK TO TOP
   Aus Figma: 50×50px, Hintergrund #D9D9D9, Pfeil nach oben
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 150;
    width: 50px;
    height: 50px;
    background: var(--color-gray-light);
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    opacity: 0.7;
}


/* ============================================================
   STUDIO PAGE
   ============================================================ */

/* Terracotta Hintergrund-Wrapper: Hero + About Section */
.section-studio-bg {
    background-color: var(--color-terracotta);
}

/* --- STUDIO HERO --- */

.section-studio-hero {
    padding-top: 82px; /* Fester Header */
}

/* Aus Figma: align-items flex-end, padding 64px 0 40px */
.section-studio-hero__text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 64px var(--gutter) 40px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Aus Figma: PP Rader, 48px, #F4F3F1 */
.section-studio-hero__headline {
    flex: 1 1 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
}

/* Aus Figma: Public Sans, 700, 24px, #F4F3F1 */
.section-studio-hero__intro {
    flex: 0 0 659px;
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-bg);
}

/* Aus Figma: 1440px breit, 628px hoch */
.section-studio-hero__image {
    height: 628px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.15);
}

.section-studio-hero__image img,
.section-studio-hero__image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- ABOUT SECTION --- */

/* Aus Figma: zwei Spalten je 547px, Gap 133px, auf Terracotta-Hintergrund */
.section-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 133px;
    padding: var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

.section-about__col-left,
.section-about__col-right {
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
}

/* Aus Figma: Public Sans, 700, 28px, #C1BDBB (grau auf Terracotta) */
.section-about__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-gray);
}

/* Aus Figma: Public Sans, 400, 18px, #F4F3F1 */
.section-about__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-bg);
}

/* Aus Figma: 547×482px */
.section-about__col-left .section-about__img-01 {
    margin-top: auto;
}

.section-about__img-01 {
    height: 482px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Aus Figma: 547×698px */
.section-about__img-02 {
    height: 698px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.15);
}

.section-about__img-01 img,
.section-about__img-01 .img-placeholder,
.section-about__img-02 img,
.section-about__img-02 .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Aus Figma: PP Rader, 32px, #F4F3F1 */
.section-about__text-headline {
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
}


/* Moodboard: full-width, vertikal gespiegelt (Figma: matrix(1,0,0,-1,0,0)) */
.section-about__moodboard {
    height: 482px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.15);
}

.section-about__moodboard img,
.section-about__moodboard .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleY(-1);
}

/* --- ETHOS SECTION --- */

/* Aus Figma: Bild links 547px, Text rechts, Abstand 80px, heller Hintergrund */
.section-ethos {
    display: grid;
    grid-template-columns: 547fr 590fr;
    gap: 100px;
    padding: 80px var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

.section-ethos__image {
    height: 739px;
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.section-ethos__image img,
.section-ethos__image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-ethos__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

/* Aus Figma: PP Rader, 32px, #323232 */
.section-ethos__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* Definition-Liste der Ethos-Punkte */
.section-ethos__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-ethos__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Aus Figma: Public Sans, 700, 18px */
.section-ethos__item-term {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}

.section-ethos__item-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}


/* ============================================================
   LEISTUNGEN PAGE
   ============================================================ */

/* Grauer Hintergrund für Hero + Liste + Phasen */
.section-leistungen-bg {
    background-color: var(--color-gray);
}


/* --- HERO --- */

/* Aus Figma: Bild rechts (ab 257px), Text links
   Canvas: 1440×1775px, Bild 1183×1024px @ left:257px, Text @ left:50px, top:431px (ohne 47px Browser-Bar = 384px)
   Sekundäres Bild: full-width 751px hoch darunter */
/* Wrapper für Bild + Text: overflow:hidden verhindert, dass das Bild nach unten in
   .section-leistungen-hero__image-secondary hineinragt */
.section-leistungen-hero__top {
    position: relative;
    min-height: 1024px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Hauptbild: absolut, rechte Seite — startet unterhalb des festen Headers (top: 82px),
   Höhe aus Figma 1024px, overflow:hidden auf __top verhindert Herausragen nach unten */
.section-leistungen-hero__image-main {
    position: absolute;
    top: 0;
    right: 0;
    height: 1024px;
    overflow: hidden;
}

.section-leistungen-hero__image-main img,
.section-leistungen-hero__image-main .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Textbereich: absolut, aus Figma top: 431px - 47px Browser-Bar = 384px */
.section-leistungen-hero__content {
    position: absolute;
    top: 500px;
    left: 0;
    right: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    z-index: 1;
}

/* Aus Figma: PP Rader 48px, #323232, uppercase */
.section-leistungen-hero__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 24px;
    max-width: 547px;
}

/* Aus Figma: Public Sans 18px, #323232, max-width 547px */
.section-leistungen-hero__body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    max-width: 547px;
}

/* Sekundäres Bild: full-width, 751px hoch — folgt dem Hauptbild-Block */
.section-leistungen-hero__image-secondary {
    height: 751px;
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.section-leistungen-hero__image-secondary img,
.section-leistungen-hero__image-secondary .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- LEISTUNGEN-LISTE --- */

/* Aus Figma: Label links (366px), Intro rechts (660px) in oberer Zeile;
   Bild links (547×779px), Liste rechts (660px) in unterer Zeile.
   Spaltenlücke: 730 - (50 + 547) = 133px */
.section-leistungen-liste {
    padding: 0 var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

/* Obere Zeile: Label + Intro nebeneinander */
.section-leistungen-liste__top {
    display: grid;
    grid-template-columns: 547fr 660fr;
    gap: 133px;
}

/* Untere Zeile: Bild + Liste nebeneinander */
.section-leistungen-liste__body {
    display: grid;
    grid-template-columns: 547fr 660fr;
    gap: 133px;
}

/* Aus Figma: Public Sans 700 28px, rgba(50,50,50,0.6) — gleiches Muster wie Projektphasen-Label */
.section-leistungen-liste__label {
    padding: 48px 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    color: rgba(50, 50, 50, 0.6);
}

/* Aus Figma: Public Sans 400 18px, padding 48px 0 */

/* Aus Figma: 547×779px — vertikal mittig zur Liste */
.section-leistungen-liste__image {
    height: 779px;
    overflow: hidden;
    background-color: var(--color-gray-light);
    align-self: center;
}

.section-leistungen-liste__image img,
.section-leistungen-liste__image .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rechte Spalte: Headline + Leistungs-Liste, Padding oben 48px */
.section-leistungen-liste__items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-self: center;
}

/* Aus Figma: PP Rader 32px, #323232 */
.section-leistungen-liste__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* Definition-Liste der Leistungen */
.section-leistungen-liste__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section-leistungen-liste__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Aus Figma: PP Rader 28px, uppercase, #323232 */
.section-leistungen-liste__item-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* Aus Figma: Public Sans 18px, #323232 */
.section-leistungen-liste__item-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}


/* --- PROJEKTPHASEN --- */

/* Aus Figma: Label-Zeile oben, dann 3 Karten nebeneinander (je ~433×455px, Gap ~20px) */
/* Aus Figma Phasen-Slider: dunkle Textkarten, Headline PP Rader 32px, Body Public Sans 18px */

.section-phasen {
    padding: 0 var(--gutter);
    max-width: 1440px;
    margin: 0 auto;
}

.section-phasen__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 88px 0 48px;
}

.section-phasen__header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.section-phasen__label {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

.section-phasen__counter {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.05;
    color: var(--color-dark);
}

.slider-counter__sep,
.slider-counter__total {
    font-size: 0.67em;
}

/* Phasen-Counter: gedimmt */
.section-phasen__counter .slider-counter__sep,
.section-phasen__counter .slider-counter__total {
    opacity: 0.4;
}

/* Projekte-Counter: volle Opacity */
.section-projects__counter .slider-counter__sep,
.section-projects__counter .slider-counter__total {
    opacity: 1;
}

/* Inaktiver Pfeil im Phasen-Kontext: gleiche Farbe, reduzierte Opacity */
.section-phasen .nav-arrow--inactive {
    background: var(--color-dark);
    opacity: 0.4;
    cursor: default;
}

.section-phasen__nav {
    display: flex;
    gap: 91px;
    align-items: center;
}

/* Slider-Track: nur eine Karte sichtbar, JS steuert per translateX */
/* Track bricht aus Section-Padding aus, nächste Karte peekt rechts rein */
.section-phasen__track-wrapper {
    margin: 0 calc(-1 * var(--gutter));
    padding-bottom: var(--gutter);
}

.section-phasen__track {
    display: flex;
    gap: 20px;
    padding: 0 var(--gutter);
    transition: transform 0.4s ease;
}

/* Einzelne Textkarte: 900px fest, nächste peekt automatisch rein */
.phasen-slide {
    flex: 0 0 900px;
    background: rgba(50, 50, 50, 0.8);
    padding: 24px 200px 48px 24px;
}

.phasen-slide__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
    margin-bottom: 12px;
}

.phasen-slide__body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-bg);
}


/* ============================================================
   PROJEKT-EINZELSEITE (.projekt-hero, .projekt-content)
   Aus Figma: Hero 1440×895px, Content 660px + 547px (gap 133px)
   ============================================================ */

/* Hero -------------------------------------------------------- */

.projekt-hero {
    padding-top: 82px;
    background: #E6C782;
    overflow: hidden;
}

.projekt-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 660px 547px;
    column-gap: 133px;
    min-height: 813px;
}

.projekt-hero__image {
    position: relative;
    overflow: hidden;
    /* Bild bis Viewport-Rand: container-auto-margin + padding aufheben */
    margin-left: calc((min(100vw, 1440px) - 100vw) / 2 - 50px);
}

.projekt-hero__image img,
.projekt-hero__image .img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projekt-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 97px var(--gutter) 40px 0;
}

.projekt-hero__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    hyphens: auto;
}

.projekt-hero__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    margin-top: 24px;
}

.projekt-hero__description {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 48px 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}

.projekt-hero__scroll-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 340px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(50, 50, 50, 0.5);
    padding-bottom: 12px;
    padding-right: 5px;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.projekt-hero__scroll-link:hover {
    opacity: 0.7;
}

.projekt-hero__scroll-link::after {
    content: '';
    display: block;
    width: 1cap;
    height: 1cap;
    background-color: currentColor;
    mask-image: url('/assets/images/link_arrow.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    flex-shrink: 0;
    transform: rotate(135deg);
}

/* Content-Bereich --------------------------------------------- */

/* Lead-Image: auf Desktop versteckt, Original in Spalte sichtbar */
.projekt-lead-image {
    display: none;
}

.projekt-content {
    background: var(--color-bg);
    padding: 80px 0;
}

.projekt-content__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 660px 547px;
    gap: 133px;
    align-items: start;
}

.projekt-content__left,
.projekt-content__right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Block: Text-Abschnitt --------------------------------------- */

.block-abschnitt__heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.block-abschnitt__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
}

/* Block: Bild ------------------------------------------------- */

.block-projektbild__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.block-projektbild__caption {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 8px;
}

/* Block: Projektdetails --------------------------------------- */

.block-projektdetails {
    width: 434px;
    border-bottom: 1px solid rgba(50, 50, 50, 0.6);
    scroll-margin-top: 100px;
}

.block-projektdetails__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.block-projektdetails__table {
    display: flex;
    flex-direction: column;
}

.block-projektdetails__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(50, 50, 50, 0.6);
}

.block-projektdetails__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    flex: 0 0 102px;
}

.block-projektdetails__value {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-dark);
    flex: 1;
}

/* ==============================================
   LEGAL-SEITEN (Impressum, Datenschutz, AGB)
   ============================================== */

.page-legal {
    background: var(--color-bg);
    padding-top: 82px;
}

.page-legal__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 97px var(--gutter) 100px;
}

.page-legal__content {
    max-width: 886px;
    margin: 0 auto;
}

.page-legal__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.page-legal__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark);
}

.page-legal__text h2,
.page-legal__text h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.page-legal__text p {
    margin-bottom: 1em;
}

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

.page-legal__text ul,
.page-legal__text ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.page-legal__text li {
    margin-bottom: 0.25em;
}

.page-legal__text a {
    color: var(--color-dark);
    text-decoration: underline;
}

.page-legal__text strong {
    font-weight: 700;
}

@media (max-width: 860px) {
    .page-legal {
        padding-top: 58px;
    }

    .page-legal__inner {
        padding: 48px var(--gutter);
    }

    .page-legal__headline {
        font-size: 32px;
    }
}

/* Responsive -------------------------------------------------- */

@media (max-width: 1200px) {
    .projekt-hero__inner {
        grid-template-columns: 1fr 1fr;
    }

    .projekt-content__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 var(--gutter);
    }
}

@media (max-width: 860px) {
    .projekt-hero {
        padding-top: 58px;
    }

    .projekt-hero__inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 402px auto auto;
        min-height: auto;
        padding: 0;
    }

    .projekt-hero__image {
        grid-row: 2;
        height: 402px;
        position: relative;
        margin-left: 0;
    }

    .projekt-hero__subtitle {
        margin-top: 12px;
    }

    .projekt-hero__content {
        display: contents;
    }

    .projekt-hero__headline {
        font-size: 32px;
    }

    .projekt-hero__meta {
        grid-row: 1;
        padding: 48px var(--gutter) 32px;
    }

    .projekt-hero__description {
        grid-row: 3;
        padding: 48px var(--gutter) 36px;
    }

    .projekt-hero__scroll-link {
        grid-row: 4;
        margin: 0 var(--gutter) 36px;
        padding-bottom: 12px;
        width: auto;
        justify-content: space-between;
    }

    .projekt-content {
        padding: 0;
    }

    /* Lead-Image: auf Mobile zeigen, Original in Spalte verstecken */
    .projekt-lead-image {
        display: block;
    }

    .projekt-block--lead-origin {
        display: none;
    }

    .projekt-content__inner {
        grid-template-columns: 1fr;
        padding: 48px 0;
        gap: 48px;
    }

    .projekt-content__left,
    .projekt-content__right {
        gap: 48px;
    }

    /* Block: Bild — volle Breite */
    .block-projektbild {
        width: 100vw;
    }

    .block-projektbild__img {
        width: 100vw;
        height: auto;
    }

    /* Block: Text-Abschnitt — linksbündig, Gutter */
    .block-abschnitt {
        padding: 0 var(--gutter);
    }

    /* Block: Projektdetails — zentriert, Gutter */
    .block-projektdetails {
        width: auto;
        margin: 0 var(--gutter);
    }

    /* Projekt-Navigation Vor/Zurück */
    .projekt-nav__link {
        gap: 16px;
    }

    .projekt-nav__label {
        font-size: 16px;
    }

    .projekt-nav__label-suffix {
        display: none;
    }

    .projekt-nav .nav-arrow {
        width: 25px;
        height: 25px;
        mask-size: 18px;
    }
}


/* ============================================================
   PROJEKTE-SEITE (.page-projects)
   Aus Figma: 3-Spalten-Grid, 433px Karten, ~20px Gap
   ============================================================ */

.page-projects {
    background: var(--color-bg);
    padding-top: 82px;
}

.page-projects__hero {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 64px var(--gutter) 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.page-projects__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    flex: 1;
}

.page-projects__intro {
    width: 659px;
    flex-shrink: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-dark);
}

.page-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 433px);
    gap: 20px;
    padding: 0 var(--gutter) 80px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Karten im Grid: feste Breite beibehalten, Bildhöhe angepasst (Figma: 511px) */
.page-projects__grid .project-card {
    flex: none;
    width: 433px;
}

.page-projects__grid .project-card__image {
    height: 511px;
}

@media (max-width: 1400px) {
    .page-projects__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-projects__grid .project-card,
    .page-projects__grid .project-card__image {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .page-projects__hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-projects__intro {
        width: auto;
    }

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

@media (max-width: 600px) {
    .page-projects__grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   KONTAKT-SEITE (.page-contact)
   ============================================================ */

.page-contact {
    background: var(--color-brown);
    padding-top: 82px;
    padding-bottom: 80px;
}

.page-kontakt .site-header__cta {
    display: none;
}

/* 2×2 Grid: Headline | Intro / Bild | Formular
   Spaltenbreiten aus Figma: 657px + 24px gap + 659px = 1340px Inhalt.
   Visueller Abstand Bild→Formular = (657−547)px Leerstelle + 24px gap = 134px. */
.page-contact__inner {
    display: grid;
    grid-template-columns: 657fr 659fr;
    column-gap: 24px;
    row-gap: 40px;
    padding: 64px var(--gutter) var(--gutter);
    max-width: 1440px;
    margin: auto;
}

.page-contact__headline {
    align-self: start;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
}

.page-contact__intro {
    align-self: start;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-bg);
}

/* Hero Image */
.page-contact__image {
    align-self: start;
    max-width: 547px;
    aspect-ratio: 547 / 596;
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.page-contact__form-area {
    display: flex;
    flex-direction: column;
}

.page-contact__form-area .section-contact__form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page-contact__form-area .section-contact__form-row {
    grid-template-columns: 1fr;
}

.page-contact__form-area .section-contact__form-field:has(textarea) {
    display: flex;
    flex-direction: column;
}

.page-contact__image img,
.page-contact__img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-contact__form-area .section-contact__form-field textarea {
    height: 220px;
    max-height: 220px;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    :root {
        --gutter: 40px;
    }

    .section-hero__intro {
        flex: 0 0 400px;
    }

    .section-hero__image {
        height: 480px;
    }

    .section-contact {
        grid-template-columns: 1fr 1fr;
    }

    .section-services {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__contact {
        padding-left: 80px;
    }

    /* Studio */
    .section-studio-hero__intro {
        flex: 0 0 400px;
    }

    .section-about {
        column-gap: 40px;
    }

    .section-ethos {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    /* Leistungen */
    .section-leistungen-liste__top,
    .section-leistungen-liste__body {
        gap: 60px;
    }
}

/* ============================================================
   Slider/Overflow-Korrekturen: greift bis 1099px, damit auch
   Smartphones im Querformat (z.B. Pixel 8 Pro ~896px) den
   Mobile-Slider-Modus erhalten und kein horizontaler Overflow entsteht.
   ============================================================ */
@media (max-width: 1099px) {
    body {
        overflow-x: clip;
    }

    .section-projects__counter {
        display: inline;
    }

    .section-projects__track-wrapper {
        overflow: hidden;
    }

    .section-projects__footer {
        padding-left: 0;
        padding-top: 8px;
    }

    .section-phasen__track-wrapper {
        overflow: hidden;
    }

    .is-android .site-header__menu,
    .is-android .site-nav__close {
        padding-top: 3px;
        line-height: 1;
    }
}

@media (max-width: 860px) {
    :root {
        --gutter: 24px;
    }

    .link-terracotta {
        width: 100%;
    }

    /* Header */
    .site-header {
        height: 58px;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__menu {
        font-size: 24px;
        width: auto;
        text-align: left;
        -webkit-appearance: none;
        appearance: none;
    }

    /* Hero: Bild über Text, keine Header-Freihaltung oben */
    .section-hero {
        display: flex;
        flex-direction: column;
        padding-top: 58px;
        height: 100vh;
        height: 100svh;
    }

    .section-hero__image {
        order: -1;
        flex: 1;
        min-height: 0;
    }

    .section-hero__text {
        flex-direction: column;
        gap: 20px;
        padding-top: 48px;
        padding-bottom: 0;
    }

    .section-hero__intro {
        flex: none;
        font-size: 20px;
        padding-bottom: 24px;
    }

    .section-hero__headline {
        font-size: 32px;
    }

    /* Manifesto: Bild1 → Text → Bild2 */
    .section-manifesto {
        display: grid;
        grid-template-areas:
            "img1"
            "upper"
            "img2";
    }

    .section-manifesto__upper {
        grid-area: upper;
        flex-direction: column;
        padding: 0 var(--gutter);
    }

    .section-manifesto__label-col {
        display: none;
    }

    .section-manifesto__text-col {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 48px 0 40px;
    }

    .section-manifesto__images {
        display: contents;
    }

    .section-manifesto__image:first-child {
        grid-area: img1;
        height: 406px;
    }

    .section-manifesto__image:last-child {
        grid-area: img2;
        height: 511px;
    }

    /* Projekte */
    .section-projects__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 48px;
        padding-bottom: 24px;
    }

    .section-projects__headline {
        font-size: 28px;
    }

    .section-projects__nav {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .project-card {
        flex: 0 0 100vw;
    }

    .project-card__image {
        width: 100%;
        height: 428px;
    }

    .project-card__info {
        padding: var(--gutter);
    }

    .project-card__title {
        font-size: 24px;
    }

    /* Nav-Pfeile auf Mobile kleiner */
    .section-projects__nav .nav-arrow {
        width: 32px;
        height: 32px;
        mask-size: 24px;
    }

    /* Kontakt */
    .section-contact {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .section-contact__headline {
        font-size: 28px;
        padding-top: var(--gutter)
    }

    .section-contact__image {
        display: block;
        height: 402px;
    }

    /* Kontakt-Seite */
    .page-contact__inner {
        column-gap: 40px;
    }

    /* Services: Text vor Bild */
    .section-services {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .section-services__image {
        order: 2;
        height: 217px;
    }

    .section-services__text {
        order: 1;
        padding: var(--gutter);
        padding-bottom: 24px;
    }

    .section-services__headline {
        font-size: 32px;
    }

    .section-services__body {
        font-size: 18px;
    }

    /* Reviews */
    .section-reviews {
        padding: var(--gutter);
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-reviews__inner {
        flex-direction: column;
        gap: 24px;
    }

    .section-reviews__label {
        font-size: 32px;
    }

    .section-reviews__scroll {
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
    }

    .review-card {
        flex: 0 0 auto;
        width: 100%;
    }

    .review-card:nth-child(n+2) {
        display: none;
    }

    .site-footer__main {
        flex-direction: column;
        gap: 40px;
        padding-top: var(--gutter);
    }

    .site-footer__cta {
        flex: none;
        gap: 10px;
    }

    .site-footer__cta-headline {
        font-size: 36px;
    }

    .site-footer__contact {
        padding-left: 0;
        gap: 20px;
    }

    .site-footer__bdia {
        margin-block: 24px;
    }

    .site-footer::before {
        background-image: var(--footer-mobile-bg, url('/assets/images/logoprint.svg'));
        top: -2px;
        bottom: 0;
        height: auto;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
    }

    .site-footer--logoprint::before {
        top: auto;
        height: 43%;
        background-size: auto 100%;
        background-position: center bottom;
        background-repeat: repeat-x;
        opacity: 0.05;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .site-footer__bottom .site-footer__copyright {
        margin: auto;
        margin-top: var(--gutter);
    }

    .back-to-top {
        width: 30px;
        height: 30px;
        right: var(--gutter);
        font-size: 22px;
    }

    /* Leistungen */
    .section-leistungen-hero {
        padding-top: 58px;
    }

    .section-leistungen-hero__top {
        position: static;
        min-height: 0;
    }

    .section-leistungen-hero__image-main {
        position: static;
        height: 487px;
    }

    .section-leistungen-hero__content {
        position: static;
        max-width: none;
        padding: 0 var(--gutter) 48px;
    }

    .section-leistungen-hero__headline {
        font-size: 32px;
    }

    .section-leistungen-hero__body {
        font-size: 16px;
        max-width: none;
    }

    .section-leistungen-hero__image-secondary {
        height: 300px;
    }

    .section-leistungen-liste {
        padding: 0;
        max-width: none;
    }

    .section-leistungen-liste__top {
        display: block;
    }

    .section-leistungen-liste__label {
        display: none;
    }

    .section-leistungen-liste__body {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .section-leistungen-liste__image {
        order: 2;
        height: 635px;
        align-self: auto;
    }

    .section-leistungen-liste__items {
        order: 1;
        padding: var(--gutter);
        padding-bottom: 48px;
        align-self: auto;
    }

    .section-leistungen-liste__headline {
        font-size: 32px;
    }

    .section-leistungen-liste__item-name {
        font-size: 24px;
    }

    .section-leistungen-liste__item-desc {
        font-size: 16px;
    }

    .section-phasen__header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 0;
        row-gap: 16px;
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .section-phasen__header-left {
        display: contents;
    }

    .section-phasen__label {
        grid-column: 1 / -1;
        grid-row: 1;
        font-size: 24px;
    }

    .section-phasen__counter {
        grid-column: 2;
        grid-row: 2;
        text-align: center;
        font-size: 24px;
    }

    .section-phasen__nav {
        display: contents;
    }

    .section-phasen__nav .nav-arrow--prev {
        grid-column: 1;
        grid-row: 2;
    }

    .section-phasen__nav .nav-arrow:not(.nav-arrow--prev) {
        grid-column: 3;
        grid-row: 2;
    }

    .section-phasen__nav .nav-arrow {
        width: 32px;
        height: 32px;
        mask-size: 24px;
    }

    .section-phasen__track-wrapper {
        padding-bottom: 0;
    }

    .section-phasen__track {
        padding: 0;
    }

    .phasen-slide {
        flex: 0 0 100vw;
        padding: 48px var(--gutter);
    }

    .phasen-slide__headline {
        font-size: 24px;
    }

    .phasen-slide__body {
        font-size: 16px;
    }

    /* Studio */
    .section-studio-hero {
        display: flex;
        flex-direction: column;
        padding-top: 58px;
        min-height: 100vh;
        min-height: 100svh;
    }

    .section-studio-hero__image {
        order: -1;
        flex: 1;
        min-height: 300px;
        display: flex;
    }

    .section-studio-hero__image img,
    .section-studio-hero__image .img-placeholder {
        flex: 1;
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .section-studio-hero__text {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: var(--gutter);
        padding-top: 48px;
        padding-bottom: 48px;
        max-width: none;
    }

    .section-studio-hero__headline {
        font-size: 32px;
        flex: none;
    }

    .section-studio-hero__intro {
        flex: none;
        font-size: 20px;
    }

    /* About */
    .section-about {
        display: flex;
        flex-direction: column;
        padding: 0;
        column-gap: 0;
        max-width: none;
    }

    .section-about__col-left,
    .section-about__col-right {
        display: contents;
    }

    .section-about__img-02 {
        order: 1;
        height: 465px;
    }

    .section-about__label {
        order: 2;
        padding: var(--gutter);
        padding-top: 48px;
        padding-bottom: 0;
        font-size: 20px;
    }

    .section-about__col-right .section-about__text {
        order: 3;
        padding: var(--gutter);
        padding-bottom: 48px;
    }

    .section-about__img-01 {
        order: 4;
        height: 465px;
        margin-top: 0;
    }

    .section-about__col-left > .section-about__text {
        order: 5;
        padding: var(--gutter);
        padding-top: 48px;
        padding-bottom: 48px;
        font-size: 16px;
    }

    .section-about__col-left > .section-about__text .section-about__text {
        padding: 0;
    }

    .section-about__text-headline {
        font-size: 24px;
    }

    .section-about__moodboard {
        height: 628px;
    }

    /* Ethos */
    .section-ethos {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .section-ethos__text {
        order: 1;
        padding: var(--gutter);
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-ethos__image {
        order: 2;
        height: 520px;
    }

    .section-ethos__headline {
        font-size: 24px;
    }

    /* Kontakt-Seite — Mobile */
    .page-contact {
        padding-top: 58px;
    }

    .page-contact__inner {
        grid-template-columns: 1fr;
        padding: 0;
        row-gap: 0;
        max-width: none;
    }

    .page-contact__headline {
        order: 1;
        font-size: 32px;
        padding: 32px var(--gutter);
    }

    .page-contact__image {
        order: 2;
        max-width: none;
        aspect-ratio: auto;
        height: 520px;
        align-self: auto;
    }

    .page-contact__intro {
        order: 3;
        padding: 48px var(--gutter);
        font-size: 16px;
    }

    .page-contact__form-area {
        order: 4;
        padding: 0 var(--gutter) var(--gutter);
    }

    /* Nav Overlay — Mobile */
    .site-nav__header {
        height: 58px;
    }

    .site-nav__content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .site-nav__links a {
        font-size: 56px;
    }

    .site-nav__cta {
        margin-top: 60px;
    }

    .site-nav__links,
    .site-nav__bottom {
        padding-left: 0;
    }

    .site-nav__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-bottom: 32px;
    }

    .site-nav__cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid var(--color-bg);
        font-family: var(--font-display);
        font-size: 24px;
        line-height: 120%;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--color-bg);
        text-decoration: none;
        flex-shrink: 0;
        transition: opacity 0.2s;
    }

    .site-nav__cta:hover {
        opacity: 0.75;
    }

    .site-nav__cta::after {
        content: '';
        display: block;
        width: 1cap;
        height: 1cap;
        background-image: url('/assets/images/link_arrow_light.svg');
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }

    .site-nav__bottom .site-footer__copyright {
        align-self: center;
        width: 100%;
        text-align: center;
        color: rgba(244, 243, 241, 0.6);
        font-weight: 400;
        margin-top: 35px;
    }

    /* Projekte PLP */
    .page-projects {
        padding-top: 58px;
    }

    .page-projects__hero {
        flex-direction: column;
        padding: 48px var(--gutter) 32px;
    }

    .page-projects__headline {
        font-size: 32px;
    }

    .page-projects__intro {
        width: auto;
        font-size: 16px;
    }

    .page-projects__grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 36px;
    }

    .page-projects__grid .project-card {
        width: auto;
        flex: none;
    }

    .page-projects__grid .project-card__image {
        width: 100vw;
        height: 402px;
    }

    .page-projects__grid .project-card__info {
        padding: 20px var(--gutter) 0;
    }
}
