/* ============================================================
   PHILIPP DEHNE – philippdehne.de
   ============================================================ */

/* ============ FONTS ============ */
@font-face {
    font-family: 'Work Sans';
    src: url('../work-sans/WOFF2/WorkSans-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../work-sans/WOFF2/WorkSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../work-sans/WOFF2/WorkSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../work-sans/WOFF2/WorkSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../work-sans/WOFF2/WorkSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Work Sans';
    src: url('../work-sans/WOFF2/WorkSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg:        #F4F1EB;
    --text:      #0E0E0E;
    --red:       #FF0000;
    --border:    #C5BFB3;
    --mid:       #EAE6DE;
    --dark:      #8100A1;
    --dark-text: #F4F1EB;
    --accent:    #00B19C;
    --font:      'Inter', sans-serif;
    --font-head: 'Work Sans', sans-serif;
    --max-w:     1320px;
    --pad:       clamp(1.25rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ============ TYPOGRAFIE ============ */

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 900;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.375rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); line-height: 1.10; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.875rem); line-height: 1.15; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem);    line-height: 1.20; }
h5 { font-size: 1.125rem;                          line-height: 1.20; }

p { font-family: var(--font); font-size: 1rem; line-height: 1.6; }
small, .text-small { font-size: 0.875rem; line-height: 1.6; }

.intro, .warum-quote, blockquote {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    line-height: 1.20;
}

.label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
}

.label--muted {
    color: var(--border);
}

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

.btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    cursor: pointer;
    border: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.btn--dark {
    background: var(--red);
    color: #fff;
}

.btn--dark:hover { background: #cc0000; }

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--red);
}

.btn--outline:hover { border-color: #cc0000; color: #cc0000; }

.btn--red {
    background: var(--red);
    color: var(--bg);
}

.btn--red:hover { opacity: 0.88; }

.btn--ghost {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--red);
}

.btn--ghost:hover { border-color: var(--dark-text); }

/* ============ BILDPLATZHALTER ============ */

.img-ph {
    background: var(--mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.img-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(14,14,14,0.08) 100%);
}

.img-ph .ph-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--border);
    position: relative;
    text-align: center;
}

/* ============ NAV ============ */

#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem var(--pad);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

#nav.scrolled {
    box-shadow: 0 1px 20px rgba(14,14,14,0.06);
}

.nav-logo {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.nav-logo span { color: var(--red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text);
    transition: color 0.15s;
}

.nav-links a:hover { color: var(--red); }

.nav-links a.active { color: var(--red); }

.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--bg);
    background: var(--red);
    padding: 0.55rem 1.2rem;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

.nav-cta:hover { opacity: 0.85; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.nav-links.open ~ .nav-toggle span:nth-child(1),
#navToggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-links.open ~ .nav-toggle span:nth-child(2),
#navToggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-links.open ~ .nav-toggle span:nth-child(3),
#navToggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 3.5rem; /* nav */
    background-image: url('../hero-philipp.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.15) 30%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.75) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2.5rem, 5vw, 5rem) var(--pad);
    max-width: 860px;
}

.hero-wahlkreis {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-wahlkreis::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--red);
}

.hero-headline {
    font-size: clamp(3rem, 5.2vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 2.25rem;
    color: #fff;
}

.hero-name {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: rgba(255,255,255,0.9);
}

.hero-roles {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1.75rem;
}

.hero-roles span {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.hero-roles span + span::before {
    content: '';
}

.hero-roles-inner {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-dot {
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-subtext {
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 46ch;
    margin-bottom: 2.25rem;
}

.hero-mehr {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}
.hero-mehr:hover { text-decoration: underline; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-caption {
    position: absolute;
    bottom: 0.75rem;
    right: var(--pad);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    z-index: 1;
}

.hero-photo {
    position: relative;
    background: var(--mid);
    overflow: hidden;
}

.hero-photo .img-ph {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    border-radius: 0;
}

.hero-photo-caption {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--border);
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}

/* ============ TRENNLINIE INTRO ============ */

.section-intro {
    padding: clamp(3rem, 5vw, 5rem) var(--pad);
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.section-intro h2 {
    font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.section-intro .label { padding-top: 0.35rem; }

/* ============ WARUM ICH KANDIDIERE ============ */

#warum {
    background: var(--dark);
    color: var(--dark-text);
    padding: clamp(4rem, 8vw, 9rem) var(--pad);
}

.warum-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.warum-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.warum-headline {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--dark-text);
}

.sticker-black { font-family: var(--font-head); font-weight: 900; }
.sticker-light  { font-family: var(--font-head); font-weight: 300; }

.warum-sticker {
    flex-shrink: 0;
    background: var(--red);
    color: #fff;
    font-size: clamp(1.05rem, 1.4vw, 1.26rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.01em;
    padding: 1.4rem 1.75rem;
    text-align: center;
    transform: rotate(2deg);
    box-shadow: 2px 3px 0 rgba(0,0,0,0.25);
    white-space: nowrap;
    max-width: none;
    align-self: center;
}

@media (max-width: 600px) {
    .warum-sticker { display: none; }
}

.warum-kacheln {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(244,241,235,0.12);
}

.warum-kachel {
    background: var(--dark);
    padding: clamp(1.75rem, 3vw, 2.75rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.warum-kachel-n {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--red);
}

.warum-kachel p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(244,241,235,0.78);
}

/* ============ DREI THEMEN ============ */

#themen {
    padding-bottom: 0;
}

.themen-top {
    padding: clamp(3.5rem, 6vw, 6rem) var(--pad) clamp(2rem, 3vw, 3rem);
}

.themen-top h2 {
    font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.thema-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0 clamp(1.5rem, 4vw, 4rem);
    padding: clamp(1.75rem, 3vw, 2.5rem) var(--pad);
    border-top: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s;
}

.thema-row:last-of-type {
    border-bottom: 1px solid var(--border);
}

.thema-row:hover {
    background: var(--mid);
}

.thema-row:hover .thema-row-arrow {
    transform: translateX(5px);
    color: var(--text);
}

/* 3-Spalten-Grid auf Startseite */
.themen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.thema-karte {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    padding: clamp(1.5rem, 2.5vw, 2rem) var(--pad);
    text-decoration: none;
    color: var(--text);
    border-right: 1px solid var(--border);
    transition: background 0.15s;
    gap: 0.4rem;
}

.thema-karte:last-child {
    border-right: none;
}

.thema-karte:hover {
    background: var(--mid);
}

.thema-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.thema-karte .thema-title {
    font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.thema-karte .thema-row-arrow {
    flex-shrink: 0;
    padding-top: 0.2rem;
}

.thema-karte:hover .thema-row-arrow {
    transform: translateX(5px);
    color: var(--text);
}

.thema-n {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--border);
    padding-top: 0.3rem;
    align-self: start;
}

.thema-body {}

.thema-tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.4rem;
    display: block;
}

.thema-title {
    font-size: clamp(1.5rem, 2.4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 0.6rem;
}

.thema-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    max-width: 52ch;
}

.thema-row-arrow {
    font-size: 1.75rem;
    color: var(--border);
    font-weight: 300;
    transition: transform 0.15s, color 0.15s;
    align-self: center;
    line-height: 1;
}

/* ============ WER IST PHILIPP ============ */

#philipp {
    background: var(--mid);
    padding: clamp(4rem, 8vw, 9rem) var(--pad);
}

.philipp-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 7rem);
    max-width: var(--max-w);
    margin: 0 auto;
    align-items: start;
}

.philipp-photo-wrap {
    aspect-ratio: 4 / 5;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.philipp-photo-wrap .img-ph {
    position: absolute;
    inset: 0;
}

.philipp-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.philipp-text {}

.philipp-text .label {
    display: block;
    margin-bottom: 1.25rem;
}

.philipp-text h2 {
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    margin-bottom: 2rem;
}

.philipp-text p {
    font-size: 1rem;
    line-height: 1.72;
    color: #333;
    margin-bottom: 1.25rem;
    max-width: 54ch;
}

.philipp-text .btn { margin-top: 1.25rem; }

/* ============ NÄCHSTER TERMIN ============ */

#termin {
    padding: clamp(3rem, 5vw, 5rem) var(--pad);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.termin-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: var(--max-w);
    margin: 0 auto;
}

.termin-left .label { display: block; margin-bottom: 0.75rem; }

.termin-heading {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.termin-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Termin preview list (index.html) */
.termin-list-preview {
    list-style: none;
    border-top: 1px solid var(--border);
}

.termin-preview-entry {
    display: grid;
    grid-template-columns: 3.5rem 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.termin-preview-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.termin-preview-day {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--red);
    line-height: 1;
}

.termin-preview-month {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.termin-preview-info { min-width: 0; }

.termin-preview-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0.1rem 0 0.2rem;
}

.termin-preview-loc {
    font-size: 0.78rem;
    color: var(--muted);
}

.termin-preview-time {
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--muted);
}

/* ============ AKTUELLES ============ */

#aktuelles {
    padding: clamp(4rem, 6vw, 7rem) var(--pad);
}

.aktuelles-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.aktuelles-top h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.75rem);
}

.link-underline {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.15s;
}

.link-underline:hover { color: var(--red); }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.ig-item {
    aspect-ratio: 1;
    background: var(--mid);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ig-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,14,0);
    transition: background 0.2s;
}

.ig-item:hover::after {
    background: rgba(14,14,14,0.35);
}

.ig-item .ph-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 1;
}

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

footer {
    background: var(--dark);
    color: var(--dark-text);
    padding: clamp(3rem, 5vw, 5rem) var(--pad) clamp(1.5rem, 3vw, 2.5rem);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(244,241,235,0.1);
    margin-bottom: 2rem;
}

.footer-brand .f-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.footer-brand .f-name em {
    color: var(--red);
    font-style: normal;
}

.footer-brand .f-sub {
    font-size: 0.78rem;
    color: rgba(244,241,235,0.4);
    line-height: 1.6;
    max-width: 26ch;
    margin-top: 0.75rem;
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col a {
    font-size: 0.85rem;
    color: rgba(244,241,235,0.6);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col a:hover { color: var(--dark-text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(244,241,235,0.25);
    max-width: none;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.72rem;
    color: rgba(244,241,235,0.35);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-bottom-links a:hover { color: rgba(244,241,235,0.7); }

.footer-linke-logo {
    padding: 1.5rem 0 2.5rem;
}

.footer-linke-img {
    height: 3rem;
    width: auto;
    display: block;
}

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

.page-hero {
    padding-top: calc(3.5rem + clamp(3rem, 6vw, 6rem));
    padding-bottom: clamp(3rem, 5vw, 5rem);
    padding-left: var(--pad);
    padding-right: var(--pad);
    border-bottom: 1px solid var(--border);
}

.page-hero .label { display: block; margin-bottom: 1rem; }

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    max-width: 14ch;
}

.page-hero .page-intro {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: #444;
    line-height: 1.7;
    max-width: 54ch;
    margin-top: 1.5rem;
}

/* ============ ÜBER PHILIPP ============ */

.uber-section {
    padding: clamp(3.5rem, 6vw, 6rem) var(--pad);
    border-bottom: 1px solid var(--border);
}

.uber-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 7rem);
    max-width: var(--max-w);
    margin: 0 auto;
    align-items: start;
}

.uber-grid.reverse { direction: rtl; }
.uber-grid.reverse > * { direction: ltr; }

.uber-photo {
    aspect-ratio: 3 / 2;
    max-height: 420px;
    background: var(--mid);
    position: relative;
    overflow: hidden;
}

.uber-photo.landscape { aspect-ratio: 4 / 3; }

.uber-text h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.uber-text p {
    font-size: 1rem;
    line-height: 1.72;
    color: #333;
    margin-bottom: 1rem;
    max-width: 54ch;
}

/* Lebenslauf Timeline */
.timeline {
    list-style: none;
    margin-top: 0.5rem;
}

.timeline li {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.timeline li:first-child { border-top: 1px solid var(--border); }

.tl-year {
    font-weight: 600;
    color: var(--red);
    padding-top: 0.05rem;
}

.tl-text { color: #333; line-height: 1.6; }

/* ============ THEMEN SEITE ============ */

.thema-full {
    padding: clamp(3.5rem, 6vw, 6rem) var(--pad);
    border-bottom: 1px solid var(--border);
}

.thema-full:last-of-type { border-bottom: none; }

.thema-full-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.thema-full .label { display: block; margin-bottom: 0.75rem; }

.thema-full h2 {
    font-size: clamp(2rem, 3.5vw, 4rem);
    margin-bottom: 2rem;
}

.thema-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    margin-bottom: 2.5rem;
}

.thema-block h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
}

.thema-block p, .thema-block ul {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
}

.thema-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thema-block ul li::before {
    content: '—';
    color: var(--red);
    margin-right: 0.6rem;
}

/* ============ MITMACHEN ============ */

.mitmach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
}

.mitmach-item {
    padding: clamp(2rem, 3.5vw, 3.5rem) var(--pad);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: background 0.15s;
}

.mitmach-item:hover { background: var(--mid); }

.mitmach-item:nth-child(3n) { border-right: none; }

.mitmach-n {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--border);
    margin-bottom: 1.25rem;
    display: block;
}

.mitmach-title {
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mitmach-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}

/* ============ TERMINE SEITE ============ */

.termine-list {
    list-style: none;
}

.termin-entry {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 clamp(1.5rem, 3vw, 4rem);
    padding: clamp(1.5rem, 2.5vw, 2rem) var(--pad);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.termin-entry:hover { background: var(--mid); }

.termin-date-col {
    text-align: center;
    min-width: 4rem;
}

.termin-date-day {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1;
    display: block;
    color: var(--red);
}

.termin-date-month {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-top: 0.2rem;
}

.termin-info-col {}

.termin-type {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
    display: block;
}

.termin-name-entry {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.termin-loc {
    font-size: 0.85rem;
    color: #666;
}

.termin-time-col {
    font-size: 0.85rem;
    color: #555;
    text-align: right;
    white-space: nowrap;
}

/* ============ KONTAKT ============ */

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    padding: clamp(3.5rem, 6vw, 7rem) var(--pad);
    max-width: var(--max-w);
    margin: 0 auto;
}

.kontakt-info h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 2rem;
}

.kontakt-method {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.kontakt-method .label { margin-bottom: 0.1rem; }

.kontakt-method a {
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.15rem;
    display: inline-block;
    transition: border-color 0.15s;
}

.kontakt-method a:hover { border-color: var(--red); color: var(--red); }

.kontakt-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    transition: color 0.15s !important;
}

.social-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.social-icon:hover {
    color: var(--red) !important;
    border-color: transparent !important;
}

.kontakt-form {}

.kontakt-form h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font);
    font-size: 0.95rem;
    background: white;
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    color: var(--text);
    transition: border-color 0.15s;
    outline: none;
    width: 100%;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--text); }

/* ============ PRESSE ============ */

.presse-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 7rem);
    padding: clamp(3.5rem, 6vw, 6rem) var(--pad);
    max-width: var(--max-w);
    margin: 0 auto;
    align-items: start;
}

.presse-foto {
    aspect-ratio: 3 / 4;
    background: var(--mid);
    position: relative;
    overflow: hidden;
}

.presse-info h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.presse-info p {
    font-size: 1rem;
    line-height: 1.72;
    color: #333;
    margin-bottom: 1rem;
    max-width: 54ch;
}

.presse-schwerpunkte {
    margin: 2rem 0;
}

.presse-schwerpunkte h3 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.75rem;
}

.schwerpunkt-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    margin: 0.25rem 0.25rem 0 0;
    color: var(--text);
}

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

@media (max-width: 960px) {
    .nav-links { display: none; flex-direction: column; gap: 1rem; }
    .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1.5rem var(--pad); }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    #hero { min-height: 100svh; background-position: center top; }
    .hero-content { padding-top: 2.5rem; }

    .warum-kacheln { grid-template-columns: 1fr; }

    .philipp-inner { grid-template-columns: 1fr; }
    .philipp-photo-wrap { aspect-ratio: 3 / 2; }

    .termin-inner { grid-template-columns: 1fr; }
    .termin-preview-entry { grid-template-columns: 3rem 1fr; }
    .termin-preview-time { display: none; }

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

    .footer-top { grid-template-columns: 1fr 1fr; }

    .uber-grid { grid-template-columns: 1fr; }
    .uber-grid.reverse { direction: ltr; }

    .thema-split { grid-template-columns: 1fr; }

    .mitmach-grid { grid-template-columns: 1fr; }
    .mitmach-item { border-right: none; }

    .termin-entry { grid-template-columns: auto 1fr; }
    .termin-time-col { display: none; }

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

    .presse-grid { grid-template-columns: 1fr; }
    .presse-foto { aspect-ratio: 3 / 2; }
}

@media (max-width: 600px) {
    .thema-row { grid-template-columns: 1fr auto; align-items: start; }
    .thema-row-arrow { font-size: 1rem; padding-top: clamp(1.75rem, 3vw, 2.5rem); align-self: start; }
    .themen-grid { grid-template-columns: 1fr; }
    .thema-karte { border-right: none; border-bottom: 1px solid var(--border); }
    .thema-karte:last-child { border-bottom: none; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ COOKIE BANNER ============ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    color: var(--dark-text);
    padding: clamp(1.25rem, 3vw, 2rem) var(--pad);
    border-top: 3px solid var(--red);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
}

.cookie-text p {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(244,241,235,0.75);
    margin-bottom: 1.25rem;
    max-width: 64ch;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: none;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: rgba(244,241,235,0.85);
    cursor: pointer;
    user-select: none;
}

.cookie-category input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(244,241,235,0.4);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: background 0.15s, border-color 0.15s;
}

.cookie-category input[type="checkbox"]:checked {
    background: var(--red);
    border-color: var(--red);
}

.cookie-category input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
}

.cookie-category input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 180px;
}

.cookie-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.7rem 1.25rem;
}

.btn--cookie-accept {
    background: var(--red);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn--cookie-accept:hover { opacity: 0.88; }

.btn--cookie-save {
    background: transparent;
    color: rgba(244,241,235,0.7);
    border: 1px solid rgba(244,241,235,0.3);
    font-family: var(--font);
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.btn--cookie-save:hover {
    border-color: rgba(244,241,235,0.7);
    color: var(--dark-text);
}

@media (max-width: 700px) {
    .cookie-inner {
        grid-template-columns: 1fr;
    }
    .cookie-actions {
        flex-direction: row;
        min-width: 0;
    }
    .cookie-actions .btn {
        flex: 1;
    }
}
