/*
Theme Name: Leltzfoto
Theme URI: https://leltzfotografie.nl
Author: Robin Leltz
Author URI: https://leltzfotografie.nl
Description: Licht custom WordPress theme voor Leltzfoto
Version: 2.0
Text Domain: leltzfoto
*/

:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-soft: #faf9f7;
    --color-surface-dark: #0f0f10;
    --color-text: #181818;
    --color-heading: #050505;
    --color-text-light: rgba(255, 255, 255, 0.94);
    --color-accent: #f28500;
    --color-accent-dark: #d96f00;
    --color-muted: #6d6d6d;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-soft: rgba(0, 0, 0, 0.045);

    --container: 1200px;
    --container-wide: 1400px;
    --container-header: 1600px;
    --container-narrow: 860px;
    --container-trackrecord: 1440px;

    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 52px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.13);
    --shadow-accent: 0 12px 30px rgba(242, 133, 0, 0.22);

    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 80px;
    --space-3xl: 120px;

    --transition: all 0.25s ease;
}

/* ===== RESET ===== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.012em;
}

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

figure {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul,
ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

p {
    margin: 0 0 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 12px;
    color: var(--color-heading);
    line-height: 0.96;
    letter-spacing: -0.04em;
    font-weight: 800;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 2.95rem);
    margin-bottom: 30px;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

small,
.text-small {
    font-size: 0.9375rem;
    color: var(--color-muted);
}

/* ===== LAYOUT ===== */

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.container--wide {
    width: min(100% - 32px, var(--container-wide));
    margin-inline: auto;
}

.container--narrow {
    width: min(100% - 32px, var(--container-narrow));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 104px 0;
    background: #ffffff;
}

.section--light {
    background: var(--color-surface-soft);
    border-top: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border-soft);
}

.section--cta {
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    color: #ffffff;
    text-align: center;
    padding: 88px 0;
}

.section--cta h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 760px;
    margin-inline: auto;
}

.section--cta .button {
    margin-top: 22px;
    min-width: 190px;
}

.section h2 {
    position: relative;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    display: block;
    margin-top: 12px;
}

.text-center h2::after,
.section-heading--center h2::after,
.contact-intro-card h2::after,
.contact-intro h2::after,
.archive-empty-state h2::after,
.person-page .person-reportages-head h2::after,
.person-single__reportages-head h2::after,
.page-header--reportages h1::after,
.page-header--personen h1::after,
.page-header--contact h1::after {
    display: none;
}

.section.section--light .container > h2,
.section .container > h2 {
    max-width: 900px;
}

.section.section--cta .container {
    max-width: 900px;
}

/* ===== HEADER ===== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent !important;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease,
        border-color 0.3s ease;
}

.site-header__inner {
    width: 100%;
    max-width: var(--container-header);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 18px;
    padding-bottom: 12px;
    min-height: 88px;
    transition: min-height 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.86) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

body:not(.home) .site-header {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header.is-scrolled .site-header__inner {
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header__brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 0 0 auto;
}

.site-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    transform: translateY(2px);
}

.site-logo:hover {
    opacity: 0.96;
}

.site-logo img {
    display: block;
    width: auto;
    max-width: none;
    transition:
        opacity 0.25s ease,
        height 0.25s ease,
        filter 0.25s ease,
        transform 0.25s ease;
}

.site-logo--default {
    height: 45px;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.32));
    transform: translateY(0);
}

.site-logo--scrolled {
    position: absolute;
    top: 0;
    left: 0;
    height: 45px;
    opacity: 0;
    filter: none;
    transform: translateY(-5px);
}

.site-header.is-scrolled .site-logo--default,
body:not(.home) .site-logo--default {
    opacity: 0;
    transform: translateY(5px);
}

.site-header.is-scrolled .site-logo--scrolled,
body:not(.home) .site-logo--scrolled {
    opacity: 1;
    transform: translateY(0);
}

.site-header.is-scrolled .site-logo--default,
.site-header.is-scrolled .site-logo--scrolled,
body:not(.home) .site-logo--default,
body:not(.home) .site-logo--scrolled {
    height: 36px;
}

.site-header__nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 0;
    flex: 1 1 auto;
}

.site-nav {
    min-width: 0;
}

.site-nav ul,
.site-nav__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li {
    position: relative;
    margin: 0;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 2px;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    transition: color 0.25s ease, text-shadow 0.25s ease, opacity 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after,
.site-nav .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-ancestor > a {
    color: var(--color-accent);
}

.site-header.is-scrolled .site-nav a,
body:not(.home) .site-nav a {
    color: var(--color-heading);
    text-shadow: none;
}

.site-header__cta {
    flex: 0 0 auto;
}

.site-header__cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header__cta-link:hover {
    color: #ffffff;
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(242, 133, 0, 0.22);
}

.site-header.is-scrolled .site-header__cta-link,
body:not(.home) .site-header__cta-link {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--color-heading);
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .site-header__cta-link:hover,
body:not(.home) .site-header__cta-link:hover {
    color: #ffffff;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #000000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
        linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.03) 74%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 82px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 60%,
        #ffffff 100%
    );
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(100% - 32px, var(--container-wide));
    margin-inline: auto;
    padding-bottom: 88px;
    text-align: left;
}

.hero-kicker {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
    color: #ffffff;
    word-spacing: 2px;
}

.hero-kicker + .hero-kicker {
    margin-top: 8px;
}

.hero-kicker--secondary {
    margin-bottom: 36px;
}

.hero-kicker span {
    color: #ffffff;
    -webkit-text-stroke: 1.5px rgba(242, 133, 0, 0.98);
    paint-order: stroke fill;
}

.hero-dot {
    color: var(--color-accent) !important;
    -webkit-text-stroke: 0 transparent !important;
    margin-inline: 0.35em;
}

.hero-title {
    margin: 0;
    max-width: 1120px;
    line-height: 0.88;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: clamp(4.4rem, 10vw, 9rem);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-title-line {
    display: block;
}

.hero-title-line + .hero-title-line {
    margin-top: -0.06em;
}

.hero-title-accent {
    color: var(--color-accent);
}

.hero-title-light {
    color: #ffffff;
}

/* ===== BUTTONS ===== */

.button,
.wp-element-button,
input[type="submit"],
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 0;
    border-radius: var(--radius);
    background: var(--color-accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

.button:hover,
.wp-element-button:hover,
input[type="submit"]:hover,
button:hover {
    background: var(--color-accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.button--ghost {
    background: transparent;
    color: var(--color-heading);
    border: 1px solid var(--color-border);
    box-shadow: none;
}

.button--ghost:hover {
    background: var(--color-surface-soft);
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* ===== CONTENT ===== */

main {
    display: block;
}

.entry-content,
.page-content {
    max-width: 100%;
}

.entry-content > * + *,
.page-content > * + * {
    margin-top: 1.2rem;
}

/* ===== CARD ===== */

.card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card__content {
    padding: 24px;
}

/* ===== GENERIC GRID ===== */

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.grid article {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grid article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.grid article a {
    display: block;
    color: inherit;
}

.grid article img {
    width: 100%;
    object-fit: cover;
    background: #f1f1f1;
    transition: transform 0.4s ease;
}

.grid article:hover img {
    transform: scale(1.03);
}

.grid h2,
.grid h3 {
    margin: 0;
    padding: 16px 18px 8px;
    font-size: 1rem;
}

.grid .meta {
    padding: 0 18px 18px;
    color: var(--color-muted);
    font-size: 0.9375rem;
}

/* ===== PAGE HEADER ===== */

.page-header {
    padding: 140px 0 50px;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.page-header__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-header p {
    max-width: 760px;
    color: var(--color-muted);
}

/* ===== FORMS ===== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--color-text);
    font: inherit;
    transition: var(--transition);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(242, 133, 0, 0.12);
}

/* ===== PORTFOLIO / ARCHIVES ===== */

.grid--portfolio {
    gap: 32px;
}

.portfolio-card {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(242, 133, 0, 0.16);
}

.portfolio-card__link {
    display: block;
    color: inherit;
}

.portfolio-card__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f1f1f1;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.45s ease;
}

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

.portfolio-card__content {
    padding: 18px;
}

.portfolio-card__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.portfolio-card__meta {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.portfolio-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.1);
    color: var(--color-accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.portfolio-card__image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f3f3f3 0%, #e9e9e9 100%);
    border-radius: 14px 14px 0 0;
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 0 4px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text);
    font-weight: 700;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

/* ===== HOME - RECENTE REPORTAGES ===== */

.home-reportages {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.home-reportages-featured {
    position: relative;
    min-height: 100%;
}

.home-reportages-featured__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    color: inherit;
}

.home-reportages-featured__link:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 133, 0, 0.16);
    color: inherit;
}

.home-reportages-featured__image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #f2f2f2;
}

.home-reportages-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.home-reportages-featured__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.home-reportages-featured__link:hover .home-reportages-featured__image img {
    transform: scale(1.035);
}

.home-reportages-featured__content {
    padding: 28px 28px 30px;
}

.home-reportages-featured__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    color: var(--color-accent-dark);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-reportages-featured__content h3 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.home-reportages-featured__content .meta {
    margin: 0 0 14px;
    color: #666666;
    font-size: 0.97rem;
    font-weight: 600;
}

.home-reportages-featured__content .excerpt {
    margin: 0;
    color: #3e3e3e;
    font-size: 1rem;
    line-height: 1.72;
}

.home-reportages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.home-reportages-card {
    min-width: 0;
}

.home-reportages-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    color: inherit;
}

.home-reportages-card__link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 133, 0, 0.16);
    color: inherit;
}

.home-reportages-card__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f2f2f2;
}

.home-reportages-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.45s ease;
}

.home-reportages-card__link:hover .home-reportages-card__image img {
    transform: scale(1.04);
}

.home-reportages-card__content {
    padding: 18px 18px 20px;
}

.home-reportages-card__content h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-reportages-card__content .meta {
    margin: 0;
    color: #6d6d6d;
    font-size: 0.92rem;
    font-weight: 500;
}

.home-reportages-cta {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

/* ===== TRACKRECORD ===== */

.section--trackrecord {
    background: #ffffff;
    color: var(--color-text);
}

.section--trackrecord .container--narrow {
    width: min(100% - 32px, var(--container-trackrecord));
}

.trackrecord-year {
    position: relative;
    margin: 88px 0 40px;
}

.trackrecord-year:first-child {
    margin-top: 0;
}

.trackrecord-year::before {
    content: "";
    position: absolute;
    left: 0;
    top: 76px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(242, 133, 0, 0.22) 0%,
        rgba(242, 133, 0, 0.10) 35%,
        rgba(0, 0, 0, 0.06) 100%
    );
    pointer-events: none;
}

.trackrecord-year-title {
    position: relative;
    margin: 0 0 26px;
    padding-left: 18px;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-accent);
}

.trackrecord-year-title::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 10px;
    background: var(--color-accent);
    border-radius: 999px;
}

.trackrecord-item {
    position: relative;
    display: grid;
    grid-template-columns: 160px minmax(340px, 1.5fr) minmax(180px, 0.9fr) 92px;
    column-gap: 34px;
    align-items: center;
    margin-left: 18px;
    padding: 26px 0 26px 26px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.trackrecord-year .trackrecord-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trackrecord-item::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.36);
    transition:
        height 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.trackrecord-item:hover {
    background: rgba(242, 133, 0, 0.028);
    border-color: rgba(242, 133, 0, 0.10);
    box-shadow: inset 0 0 0 1px rgba(242, 133, 0, 0.035);
    transform: translateY(-1px);
}

.trackrecord-item:hover::before {
    height: 28px;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(242, 133, 0, 0.10);
}

.trackrecord-date {
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
    white-space: nowrap;
}

.trackrecord-title {
    font-size: 36px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-heading);
    text-wrap: balance;
}

.trackrecord-title a,
.trackrecord-title a:visited {
    color: var(--color-heading) !important;
    text-decoration: none !important;
    transition: color 0.22s ease, transform 0.22s ease;
}

.trackrecord-title a:hover,
.trackrecord-item:hover .trackrecord-title a {
    color: var(--color-accent) !important;
}

.trackrecord-location {
    font-size: 19px;
    line-height: 1.4;
    color: #444444;
}

.trackrecord-role {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    min-width: 0;
    overflow: hidden;
}

.trackrecord-role a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}

.trackrecord-logo {
    display: block;
    width: 72px;
    max-width: 100%;
    max-height: 40px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    opacity: 1;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.trackrecord-item:hover .trackrecord-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

/* =========================================================
   SINGLE REPORTAGE
   ========================================================= */

.reportage-single .section {
    padding-top: 92px;
    padding-bottom: 88px;
}

.reportage-single .container {
    width: min(100% - 32px, 1240px);
}

.reportage-single .reportage-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 320px;
    column-gap: 28px;
    row-gap: 28px;
    align-items: start;
}

.reportage-single .reportage-single__header,
.reportage-single .reportage-single__gallery,
.reportage-single .reportage-single__content {
    grid-column: 1 / -1;
}

.reportage-single .reportage-single__header {
    margin-bottom: 0;
    text-align: left;
}

.reportage-single .reportage-single__title {
    max-width: 980px;
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.reportage-single .reportage-single__main,
.reportage-single .reportage-single__aside {
    min-width: 0;
}

.reportage-single .reportage-single__aside {
    position: sticky;
    top: 120px;
}

.reportage-single .reportage-single__hero-card {
    position: relative;
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

.reportage-single .reportage-single__hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 72%, rgba(0, 0, 0, 0.10));
}

.reportage-single .reportage-single__hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.reportage-single .reportage-single__info-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.reportage-single .reportage-single__info-card .card__content {
    padding: 24px;
}

.reportage-single .reportage-single__info-row {
    margin-bottom: 22px;
}

.reportage-single .reportage-single__info-row:last-child {
    margin-bottom: 0;
}

.reportage-single .reportage-single__info-row strong {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9a9a9a;
}

.reportage-single .reportage-single__info-row span {
    display: block;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
    color: #1d1d1d;
}

.reportage-single .reportage-single__persons {
    margin: 8px 0 0;
    padding-left: 18px;
}

.reportage-single .reportage-single__persons li {
    margin-bottom: 7px;
}

.reportage-single .reportage-single__persons li::marker {
    color: var(--color-accent);
}

.reportage-single .reportage-single__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reportage-single .reportage-single__logo {
    display: block;
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.reportage-single .reportage-single__logos a:hover .reportage-single__logo {
    transform: translateY(-2px);
    opacity: 0.94;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.1));
}

.reportage-single .reportage-single__gallery-card {
    border-radius: 24px;
    overflow: hidden;
}

.reportage-single .reportage-single__gallery-content {
    padding: 24px;
}

.reportage-single .reportage-single__slider {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reportage-single .reportage-single__track-wrap {
    width: 100%;
    overflow: hidden;
}

.reportage-single .reportage-single__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px;
}

.reportage-single .reportage-single__track::-webkit-scrollbar {
    display: none;
}

.reportage-single .reportage-single__slide {
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
}

.reportage-single .reportage-single__image-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

.reportage-single .reportage-single__image-button:hover {
    transform: none;
    background: transparent;
}

.reportage-single .reportage-single__slide-image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reportage-single .reportage-single__image-button:hover .reportage-single__slide-image {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.reportage-single .reportage-single__nav {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    flex: 0 0 auto;
}

.reportage-single .reportage-single__nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-1px);
}

.reportage-single .reportage-single__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.reportage-single .reportage-single__lightbox.is-open {
    display: block;
}

.reportage-single .reportage-single__lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.reportage-single .reportage-single__lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 1280px);
    max-height: 90vh;
    margin: 5vh auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.reportage-single .reportage-single__lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 48px);
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.reportage-single .reportage-single__lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

/* ===== SINGLE REPORTAGE EXTRA ===== */

.reportage-single__eyebrow {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    color: #a75f00;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reportage-single__eyebrow-separator {
    opacity: 0.5;
}

.reportage-single__gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.reportage-single__gallery-head h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.reportage-single__gallery-head h2::after {
    display: none;
}

.reportage-single__content {
    margin-top: 28px;
}

.reportage-single__content-inner {
    max-width: 820px;
}

.reportage-single__content-inner > * + * {
    margin-top: 1.35rem;
}

.reportage-single__content-inner p {
    color: #2f2f2f;
    font-size: 1.02rem;
    line-height: 1.82;
}

.reportage-single__content-inner > p:first-child {
    position: relative;
    margin-top: 0;
    padding-left: 14px;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #181818;
    border-left: 3px solid var(--color-accent);
    max-width: 680px;
}

.reportage-single__content-inner > p:first-child::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f28500 0%, rgba(242, 133, 0, 0.12) 100%);
}

.reportage-single__content-inner > p:first-child strong {
    color: #000;
    font-weight: 800;
}

.reportage-single__content-inner h2,
.reportage-single__content-inner h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.reportage-single__content-inner ul,
.reportage-single__content-inner ol {
    color: #2f2f2f;
}

/* =========================================================
   SINGLE PERSON
   ========================================================= */

.person-page .section {
    padding-top: 92px;
    padding-bottom: 88px;
}

.person-page .container {
    width: min(100% - 32px, 1240px);
}

.person-page .person-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 320px;
    column-gap: 28px;
    row-gap: 28px;
    align-items: start;
}

.person-page .person-layout__header,
.person-page .person-layout__reportages {
    grid-column: 1 / -1;
}

.person-page .person-layout__header {
    margin-bottom: 0;
    text-align: left;
}

.person-page .person-page-title {
    max-width: 980px;
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.person-page .person-layout__main,
.person-page .person-layout__aside {
    min-width: 0;
}

.person-page .person-layout__aside {
    position: sticky;
    top: 120px;
}

.person-page .person-hero-card {
    position: relative;
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

.person-page .person-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 72%, rgba(0, 0, 0, 0.10));
}

.person-page .person-hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.person-page .person-sidebar-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.person-page .person-sidebar-card .card__content {
    padding: 24px;
}

.person-page .person-sidebar-card__row {
    margin-bottom: 22px;
}

.person-page .person-sidebar-card__row:last-child {
    margin-bottom: 0;
}

.person-page .person-sidebar-card__row strong {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9a9a9a;
}

.person-page .person-sidebar-card__row span,
.person-page .person-sidebar-card__row a {
    display: block;
    color: #111111;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.person-page .person-sidebar-card__row a:hover {
    color: var(--color-accent);
}

.person-page .person-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.person-page .person-role-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    border: 1px solid rgba(242, 133, 0, 0.08);
    color: #be6e00;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.person-page .person-layout__reportages {
    margin-top: 54px;
}

.person-page .person-reportages-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.person-page .person-reportages-head h2 {
    margin: 0;
    font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.person-page .person-reportages-head h2::after {
    display: none;
}

.person-page .person-reportages-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    opacity: 0.4;
    max-width: 300px;
}

/* ===== SIDEBAR CARDS ===== */

aside .card h3 {
    margin-bottom: 14px;
}

aside .card p {
    color: var(--color-text);
}

aside .card p strong {
    color: var(--color-heading);
}

/* ===== INSIGHTS ===== */

.section--home-insights .container {
    width: min(100% - 32px, 1240px);
    margin-inline: auto;
}

.section--home-insights .section-heading--center {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 34px;
    text-align: center;
}

.section--home-insights .leltz-insights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.section--home-insights .leltz-insight-card {
    min-width: 0;
    min-height: 170px;
    padding: 34px 24px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section--home-insights .leltz-insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.10);
    border-color: rgba(242, 133, 0, 0.14);
}

.section--home-insights .leltz-insight-number {
    display: block;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--color-accent);
}

.section--home-insights .leltz-insight-label {
    display: block;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 700;
    color: #202020;
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .section--home-insights .leltz-insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .section--home-insights .leltz-insight-card {
        min-height: 150px;
        padding: 28px 20px 24px;
    }
}

@media (max-width: 520px) {
    .section--home-insights .leltz-insights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section--home-insights .leltz-insight-card {
        min-height: 132px;
    }

    .section--home-insights .leltz-insight-number {
        font-size: 2.4rem;
    }

    .section--home-insights .leltz-insight-label {
        font-size: 0.95rem;
    }
}

/* ===== ARCHIVE REPORTAGES ===== */

.page-header--reportages,
.page-header--personen,
.page-header--contact {
    padding: 156px 0 58px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,1) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-header__inner--reportages,
.page-header__inner--personen,
.page-header__inner--contact {
    max-width: 920px;
}

.page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    color: var(--color-accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-header--reportages h1,
.page-header--personen h1,
.page-header--contact h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.page-header--reportages p,
.page-header--personen p,
.page-header--contact p {
    max-width: 760px;
    color: #5f5f5f;
    font-size: 1.08rem;
    line-height: 1.72;
}

.section--reportages-archive,
.section--personen-archive,
.section--contact-intro,
.section--contact-services,
.section--contact-form {
    padding-top: 56px;
    padding-bottom: 88px;
}

.reportages-archive-head,
.personen-archive-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.reportages-archive-head__count,
.personen-archive-head__count {
    color: #7a7a7a;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.grid--reportages-premium,
.grid--personen-premium {
    gap: 32px;
}

.portfolio-card--premium {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.portfolio-card--premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
    border-color: rgba(242, 133, 0, 0.14);
}

.portfolio-card--premium .portfolio-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f3f3;
}

.portfolio-card--premium .portfolio-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 72%, rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.portfolio-card--premium .portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.55s ease;
}

.portfolio-card--premium:hover .portfolio-card__image img {
    transform: scale(1.04);
}

.portfolio-card--premium .portfolio-card__content,
.portfolio-card--person .portfolio-card__content {
    padding: 22px 22px 24px;
}

.portfolio-card--premium .portfolio-card__title {
    margin: 0 0 10px;
    font-size: 1.28rem;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.portfolio-card--premium .portfolio-card__meta,
.portfolio-card__meta--subtle {
    margin: 0;
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
}

.portfolio-card--premium .portfolio-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.portfolio-card--premium .portfolio-label,
.person-card-role-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    border: 1px solid rgba(242, 133, 0, 0.08);
    color: #be6e00;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.person-card-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.pagination--reportages,
.pagination--personen {
    margin-top: 52px;
}

.pagination--reportages .nav-links,
.pagination--personen .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-empty-state {
    max-width: 620px;
    margin: 20px auto 0;
    padding: 42px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.archive-empty-state h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.archive-empty-state p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== FRONT PAGE ===== */

.hero--home .hero-content__inner {
    max-width: 1180px;
}

.hero-home-intro {
    margin-top: 28px;
    max-width: 620px;
}

.hero-home-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.78;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    color: var(--color-accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading__eyebrow--dark {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: end;
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading--split h2::after {
    display: none;
}

.section-heading__aside p,
.section-heading--center p,
.section-cta__text {
    margin: 0;
    color: #646464;
    font-size: 1.02rem;
    line-height: 1.72;
}

.section-heading--center {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.section--home-reportages {
    padding-top: 92px;
    padding-bottom: 92px;
}

.section--home-insights {
    padding-top: 88px;
    padding-bottom: 88px;
}

.section--cta-home {
    padding-top: 94px;
    padding-bottom: 94px;
}

.section--cta-home h2 {
    margin-bottom: 16px;
}

.section-cta__text {
    max-width: 720px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.82);
}

/* ===== CONTACT PAGE ===== */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.78fr);
    gap: 36px;
    align-items: start;
}

.contact-layout__main,
.contact-layout__aside {
    min-width: 0;
}

.contact-intro,
.contact-form-content {
    max-width: 100%;
}

.contact-intro-card,
.contact-info-card,
.contact-form-card {
    border-radius: 30px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.contact-intro-card .card__content,
.contact-info-card .card__content,
.contact-form-card .card__content {
    padding: 30px !important;
}

.contact-intro-card h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.contact-intro-card p,
.contact-intro p {
    color: #4a4a4a;
    font-size: 1.04rem;
    line-height: 1.8;
}

.contact-reasons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.contact-reason {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-reason h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-reason p {
    margin: 0;
    color: #5b5b5b;
    font-size: 0.94rem;
    line-height: 1.65;
}

.contact-info-card {
    position: sticky;
    top: 120px;
}

.contact-info-card__row {
    margin-bottom: 24px;
}

.contact-info-card__row:last-child {
    margin-bottom: 0;
}

.contact-info-card__row strong,
.contact-info-card__socials strong {
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: #9c9c9c;
}

.contact-info-card__row a,
.contact-info-card__row span {
    display: block;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.contact-info-card__row a:hover {
    color: var(--color-accent);
}

.contact-info-card__socials {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.contact-social-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(242, 133, 0, 0.08);
    color: #6b430d;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(242, 133, 0, 0.12);
}

.contact-social-pill:hover {
    color: #ffffff;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.contact-form-shell {
    max-width: 860px;
    margin: 0 auto;
}

.contact-service-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
    border-color: rgba(242, 133, 0, 0.14);
}

.contact-service-card h3 {
    margin-bottom: 12px;
    font-size: 1.22rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-service-card p {
    margin: 0;
    color: #575757;
    font-size: 0.98rem;
    line-height: 1.72;
}

/* ===== WPFORMS ===== */

.wpforms-container {
    max-width: 760px;
    margin: 0 auto;
}

.wpforms-form {
    display: grid;
    gap: 18px;
}

.wpforms-field-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 6px;
}

.wpforms-field input,
.wpforms-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: #fff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.wpforms-field textarea {
    min-height: 140px;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(242, 133, 0, 0.12);
}

.wpforms-submit {
    margin-top: 8px;
    width: fit-content;
}

.wpforms-error {
    font-size: 0.85rem;
    color: #d63638;
}

.wpforms-confirmation-container {
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(0, 128, 0, 0.06);
    border: 1px solid rgba(0, 128, 0, 0.12);
    color: #2d5a2d;
}

.contact-form-card .wpforms-container {
    margin: 0;
    max-width: 100%;
}

.contact-form-card .wpforms-form {
    display: grid;
    gap: 20px;
}

.contact-form-card .wpforms-field {
    padding: 0 !important;
}

.contact-form-card .wpforms-field-label {
    margin-bottom: 8px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #8f8f8f !important;
}

.contact-form-card .wpforms-field-label-inline {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1rem !important;
    color: #111 !important;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="url"],
.contact-form-card input[type="number"],
.contact-form-card textarea,
.contact-form-card select {
    width: 100% !important;
    min-height: 56px !important;
    padding: 16px 18px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease !important;
}

.contact-form-card textarea {
    min-height: 180px !important;
    resize: vertical !important;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    outline: none !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 4px rgba(242, 133, 0, 0.12) !important;
}

.contact-form-card ::placeholder {
    color: #9d9d9d !important;
    opacity: 1 !important;
}

.contact-form-card .wpforms-submit-container {
    padding: 4px 0 0 !important;
    margin: 0 !important;
}

.contact-form-card .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: var(--color-accent) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 24px rgba(242, 133, 0, 0.22) !important;
    transition:
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease !important;
}

.contact-form-card .wpforms-submit:hover {
    background: var(--color-accent-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(242, 133, 0, 0.26) !important;
}

.contact-form-card .wpforms-error {
    margin-top: 6px !important;
    font-size: 0.84rem !important;
    color: #d63638 !important;
}

.contact-form-card .wpforms-field input.wpforms-error,
.contact-form-card .wpforms-field textarea.wpforms-error,
.contact-form-card .wpforms-field select.wpforms-error {
    border-color: #d63638 !important;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.08) !important;
}

.contact-form-card .wpforms-confirmation-container-full,
.contact-form-card div[aria-live="polite"] {
    padding: 18px 20px !important;
    border-radius: 16px !important;
    background: rgba(28, 138, 74, 0.07) !important;
    border: 1px solid rgba(28, 138, 74, 0.14) !important;
    color: #23623c !important;
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
}

/* ===== FOOTER ===== */

.site-footer {
    position: relative;
    margin-top: 0;
    padding: 52px 0 34px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    color: var(--color-muted);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.06) 18%,
        rgba(242, 133, 0, 0.18) 50%,
        rgba(0, 0, 0, 0.06) 82%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 40px;
    align-items: start;
}

.site-footer__brand {
    max-width: 460px;
}

.site-footer__logo-wrap {
    margin-bottom: 16px;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 180px;
}

.site-footer__text {
    margin: 0;
    color: #666666;
    font-size: 0.98rem;
    line-height: 1.72;
}

.site-footer__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
    text-align: right;
}

.site-footer__nav {
    width: 100%;
}

.site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__menu li {
    margin: 0;
    padding: 0;
}

.site-footer__menu a {
    position: relative;
    color: #353535;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.22s ease, opacity 0.22s ease;
}

.site-footer__menu a:hover {
    color: var(--color-accent);
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer__copyright,
.site-footer__credit {
    margin: 0;
    color: #8a8a8a;
    font-size: 0.86rem;
    line-height: 1.5;
}

.site-footer__credit {
    letter-spacing: 0.01em;
}

/* ===== HELPERS ===== */

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

.text-accent {
    color: var(--color-accent);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* ===== WORDPRESS DEFAULTS ===== */

.alignwide {
    width: min(100% - 32px, 1400px);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 0.875rem;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* ===== ADMIN BAR FIX ===== */

body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

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

@media (max-width: 1280px) {
    .trackrecord-item {
        grid-template-columns: 150px minmax(280px, 1.35fr) minmax(160px, 0.85fr) 84px;
        column-gap: 26px;
    }

    .trackrecord-title {
        font-size: 32px;
    }

    .trackrecord-location {
        font-size: 17px;
    }

    .trackrecord-logo {
        width: 64px;
        max-height: 36px;
    }
}

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

    .home-reportages-featured__image {
        aspect-ratio: 16 / 10;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }
}

@media (max-width: 1100px) {
    .contact-reasons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 84px 0;
    }

    .hero-content {
        padding-bottom: 72px;
    }

    .trackrecord-item {
        grid-template-columns: 140px minmax(220px, 1.2fr) minmax(130px, 0.8fr) 72px;
        column-gap: 22px;
    }

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

    .trackrecord-location {
        font-size: 16px;
    }

    .trackrecord-logo {
        width: 58px;
        max-height: 34px;
    }

    .section--home-insights .leltz-insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .section--home-insights .leltz-insight-card {
        min-height: 150px;
        padding: 28px 20px 24px;
    }

    .grid--reportages-premium,
    .grid--personen-premium {
        gap: 26px;
    }

    .portfolio-card--premium .portfolio-card__title {
        font-size: 1.15rem;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        gap: 14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header__nav-wrap {
        gap: 12px;
    }

    .site-nav ul,
    .site-nav__menu {
        gap: 16px;
    }

    .site-nav a {
        font-size: 0.94rem;
    }

    .site-header__cta-link {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.88rem;
    }

    .person-page .person-layout,
    .person-single__layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .person-page .person-layout__header,
    .person-page .person-layout__main,
    .person-page .person-layout__aside,
    .person-page .person-layout__reportages,
    .person-single__header,
    .person-single__main,
    .person-single__aside,
    .person-single__reportages {
        grid-column: auto;
    }

    .person-page .person-page-title {
        font-size: clamp(2rem, 9vw, 3.3rem);
        line-height: 1;
    }

    .person-page .person-sidebar-card,
    .person-single__info-card,
    .contact-info-card {
        position: relative;
        top: auto;
    }

    .person-page .person-sidebar-card .card__content,
    .person-single__info-card .card__content,
    .contact-intro-card .card__content,
    .contact-info-card .card__content,
    .contact-form-card .card__content {
        padding: 22px !important;
    }

    .site-footer {
        padding: 44px 0 28px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__meta {
        align-items: flex-start;
        text-align: left;
    }

    .site-footer__menu {
        justify-content: flex-start;
    }

    .reportage-single .reportage-single__layout {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .reportage-single .reportage-single__title {
        max-width: 100%;
        font-size: clamp(2.2rem, 9vw, 3.4rem);
        line-height: 0.96;
    }

    .reportage-single .reportage-single__slide {
        flex: 0 0 220px;
        width: 220px;
        min-width: 220px;
    }

    .reportage-single .reportage-single__slide-image {
        height: 160px;
    }

    .reportage-single .reportage-single__nav {
        width: 42px;
        min-width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .reportage-single .reportage-single__logo {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .container,
    .container--narrow,
    .container--wide {
        width: min(100% - 24px, var(--container));
    }

    .site-header__inner {
        min-height: 74px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-logo--default,
    .site-logo--scrolled {
        height: 34px;
    }

    .site-header.is-scrolled .site-logo--default,
    .site-header.is-scrolled .site-logo--scrolled,
    body:not(.home) .site-logo--default,
    body:not(.home) .site-logo--scrolled {
        height: 30px;
    }

    .site-nav ul,
    .site-nav__menu {
        gap: 14px;
        flex-wrap: wrap;
    }

    .site-header__cta {
        display: none;
    }

    .hero-content {
        width: min(100% - 24px, var(--container-wide));
        padding-bottom: 40px;
    }

    .hero-kicker {
        font-size: 0.88rem;
        line-height: 1.42;
        word-spacing: 1px;
    }

    .hero-kicker span {
        -webkit-text-stroke: 1.4px rgba(242, 133, 0, 0.98);
    }

    .hero-kicker--secondary {
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 5.4rem);
        line-height: 0.92;
    }

    .hero-title-line + .hero-title-line {
        margin-top: -0.04em;
    }

    .hero-home-intro {
        margin-top: 22px;
        max-width: 100%;
    }

    .hero-home-intro p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section {
        padding: 68px 0;
    }

    .page-header {
        padding: 120px 0 34px;
    }

    .page-header--reportages,
    .page-header--personen,
    .page-header--contact {
        padding: 130px 0 42px;
    }

    .page-header--reportages h1,
    .page-header--personen h1,
    .page-header--contact h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
        line-height: 0.96;
    }

    .page-header--reportages p,
    .page-header--personen p,
    .page-header--contact p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .section--reportages-archive,
    .section--personen-archive,
    .section--contact-intro,
    .section--contact-services,
    .section--contact-form,
    .section--home-reportages,
    .section--home-insights,
    .section--cta-home {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .reportages-archive-head,
    .personen-archive-head {
        margin-bottom: 22px;
    }

    .home-reportages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-reportages {
        gap: 20px;
    }

    .home-reportages-featured__content {
        padding: 22px 20px 24px;
    }

    .home-reportages-featured__content h3 {
        font-size: 1.6rem;
    }

    .home-reportages-card__content,
    .portfolio-card--premium .portfolio-card__content,
    .portfolio-card--person .portfolio-card__content {
        padding: 18px 18px 20px;
    }

    .home-reportages-card__content h3 {
        font-size: 1rem;
    }

    .portfolio-card--premium {
        border-radius: 24px;
    }

    .portfolio-card--premium .portfolio-card__title {
        font-size: 1.06rem;
    }

    .portfolio-card--premium .portfolio-card__meta {
        font-size: 0.92rem;
    }

    .section-heading__aside p,
    .section-heading--center p,
    .section-cta__text {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .section--trackrecord .container--narrow {
        width: min(100% - 24px, var(--container-trackrecord));
    }

    .trackrecord-year {
        margin: 60px 0 28px;
    }

    .trackrecord-year::before {
        left: 0;
        top: 56px;
    }

    .trackrecord-year-title {
        padding-left: 14px;
        margin-bottom: 18px;
        font-size: 34px;
    }

    .trackrecord-item {
        grid-template-columns: 1fr;
        row-gap: 8px;
        margin-left: 14px;
        padding: 20px 0 20px 18px;
    }

    .trackrecord-item::before {
        left: -15px;
    }

    .trackrecord-date {
        font-size: 12px;
        white-space: normal;
    }

    .trackrecord-title {
        font-size: 22px !important;
        line-height: 1.14;
    }

    .trackrecord-location {
        font-size: 15px !important;
    }

    .trackrecord-role {
        justify-content: flex-start;
        text-align: left;
        margin-top: 4px;
    }

    .trackrecord-logo {
        width: 72px;
        max-height: 40px;
    }

    .section--home-insights .section-heading--center {
        text-align: center;
        margin-bottom: 24px;
    }

    .section--home-insights .leltz-insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .section--home-insights .leltz-insight-card {
        min-height: 140px;
        padding: 24px 18px;
        border-radius: 24px;
    }

    .contact-intro-card h2,
    .contact-intro h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .contact-intro-card p,
    .contact-intro p,
    .contact-reason p,
    .contact-service-card p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

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

    .section--home-insights .section-heading--center {
        text-align: center;
        margin-bottom: 24px;
    }

    .section--home-insights .leltz-insights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section--home-insights .leltz-insight-card {
        min-height: 132px;
    }

    .section--home-insights .leltz-insight-number {
        font-size: 2.4rem;
    }

    .section--home-insights .leltz-insight-label {
        font-size: 0.95rem;
    }

    .home-reportages-featured__image,
    .home-reportages-card__image {
        aspect-ratio: 4 / 3;
    }

    .home-reportages-featured__content .excerpt {
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .site-header__inner {
        align-items: center;
    }

    .site-nav ul,
    .site-nav__menu {
        justify-content: flex-end;
        gap: 12px;
    }

    .site-nav a {
        min-height: 36px;
        font-size: 0.9rem;
    }

    .button,
    .wp-element-button,
    input[type="submit"],
    button {
        width: 100%;
    }

    .site-footer__menu {
        gap: 12px 18px;
    }

    .site-footer__text {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .site-footer__copyright,
    .site-footer__credit {
        font-size: 0.82rem;
    }
}

@media (max-width: 900px) {
    .reportage-single__eyebrow {
        gap: 8px;
        margin-bottom: 16px;
        font-size: 0.74rem;
        line-height: 1.3;
    }

    .reportage-single__content-inner > p:first-child {
        font-size: 1.04rem;
        line-height: 1.8;
        padding-left: 1rem;
    }

    .reportage-single__content-inner > p:first-child::before {
        height: 34px;
    }

    .person-page .person-layout {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .person-page .person-page-title {
        max-width: 100%;
        font-size: clamp(2.2rem, 9vw, 3.4rem);
        line-height: 0.96;
    }

    .person-page .person-layout__aside {
        position: relative;
        top: auto;
    }

    .person-page .person-sidebar-card .card__content {
        padding: 22px;
    }
}