/* ===========================
   ROLAND SUTER — Stylesheet
   Design: Minimalistisch, Weiss/Grau
   Typografie: Playfair Display + Inter
   =========================== */

:root {
    --white: #ffffff;
    --off-white: #f7f7f6;
    --grey-light: #ebebea;
    --grey-mid: #c8c8c4;
    --grey-dark: #6b6b67;
    --ink: #1a1a18;
    --ink-soft: #333330;
    --accent: #2d4a3e;
    --accent-light: #e8efec;
    --border: #e2e2de;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --max-w: 1100px;
    --section-pad: 96px;
    --transition: 0.25s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- Links --- */
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { opacity: 0.75; }

/* --- Container --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===========================
   NAVIGATION
   =========================== */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ink);
    transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
    padding-top: 64px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    background: #1a3a4a;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(20%);
    transition: transform 0.6s ease;
}
.hero-image-wrap:hover .hero-photo { transform: scale(1.02); }

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 64px 64px 72px;
    background: var(--white);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-dark);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 380px;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: #1e3329; transform: translateY(-1px); opacity: 1; }

.btn-secondary {
    display: inline-block;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    padding: 11px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); opacity: 1; }

/* ===========================
   SECTIONS
   =========================== */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--off-white); }

.section-header {
    margin-bottom: 56px;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-dark);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 16px;
    display: inline-block;
}

/* ===========================
   ÜBER / BIO
   =========================== */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}

.bio-text .lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 20px;
}
.bio-text p { color: var(--ink-soft); margin-bottom: 16px; }

.bio-facts {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fact-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.fact-item:first-child { border-top: 1px solid var(--border); }

.fact-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
}
.fact-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--grey-dark);
    letter-spacing: 0.03em;
    margin-top: 4px;
}

/* ===========================
   CONTENT GRID (Kabarettist, Autor, Regisseur)
   =========================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

.content-main .lead {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.content-main p { color: var(--ink-soft); margin-bottom: 14px; }

.content-list h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-dark);
    margin-bottom: 16px;
}
.content-list ul { list-style: none; }
.content-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.content-list li:first-child { border-top: 1px solid var(--border); }

/* --- Media Strip --- */
.media-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

.media-item {
    background: var(--white);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.section-alt .media-item { background: var(--off-white); }

.media-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.media-item strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.media-item span { font-size: 0.82rem; color: var(--grey-dark); line-height: 1.4; }

/* --- Teufelhof Card --- */
.teufelhof-card {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 40px 40px 40px 44px;
}
.teufelhof-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
}
.teufelhof-card p { color: var(--ink-soft); margin-bottom: 24px; max-width: 500px; }

/* ===========================
   NEWS / AKTUELLES
   =========================== */
.posts-list {
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--ink);
}

.post-item { border-bottom: 1px solid var(--border); }

.post-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 28px 0;
    cursor: pointer;
    display: grid;
    grid-template-columns: 120px 1fr 32px;
    gap: 24px;
    align-items: center;
    transition: background var(--transition);
}
.post-header:hover { background: var(--off-white); padding-left: 16px; padding-right: 16px; margin: 0 -16px; width: calc(100% + 32px); }

.post-meta-header { }
.post-date {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--grey-dark);
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
}
.post-header[aria-expanded="true"] .post-title { font-weight: 700; }

.post-toggle-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--grey-dark);
    justify-self: end;
    transition: transform var(--transition), color var(--transition);
    line-height: 1;
}
.post-header[aria-expanded="true"] .post-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.post-body {
    overflow: hidden;
}
.post-body[hidden] { display: none; }

.post-content {
    padding: 8px 0 40px 144px;
    max-width: 720px;
    color: var(--ink-soft);
    line-height: 1.75;
}
.post-content p { margin-bottom: 14px; }
.post-content a { color: var(--accent); }
.post-content strong { font-weight: 600; color: var(--ink); }

.no-posts { color: var(--grey-dark); font-style: italic; }

/* ===========================
   KONTAKT
   =========================== */
.section-kontakt { background: var(--ink); }
.section-kontakt .section-label { color: var(--grey-mid); }
.section-kontakt h2 { color: var(--white); border-bottom-color: var(--grey-mid); }

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

.kontakt-block h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 16px;
}
.kontakt-block p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.95rem; }

.kontakt-email {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: opacity var(--transition);
}
.kontakt-email:hover { opacity: 0.75; }

.kontakt-block .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}
.kontakt-block .btn-secondary:hover { background: var(--white); color: var(--ink); opacity: 1; }

.kontakt-collab {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--white) !important;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #111110;
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { text-align: center; }
.footer-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-copy {
    font-size: 0.8rem;
    color: var(--grey-dark);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.footer-nav a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-dark);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-legal {
    font-size: 0.75rem;
    color: #444;
}
.footer-legal a { color: #555; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image-wrap { height: 60vw; min-height: 320px; }
    .hero-text { padding: 48px 24px; }
    .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }

    .bio-grid,
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .bio-facts { flex-direction: row; flex-wrap: wrap; gap: 0; }
    .fact-item { flex: 1 1 140px; border-right: 1px solid var(--border); }
    .fact-item:last-child { border-right: none; }

    .media-strip { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }

    .post-header { grid-template-columns: 1fr 28px; }
    .post-meta-header { display: none; }
    .post-content { padding-left: 0; }
}

@media (max-width: 680px) {
    :root { --section-pad: 64px; }

    .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 0; }
    .nav-links a { display: block; padding: 12px 24px; font-size: 0.9rem; }
    .nav-toggle { display: flex; }

    .hero-image-wrap { height: 56vw; }
    .hero-text { padding: 40px 24px; }
    .hero h1 { font-size: 2.6rem; }
    .hero-sub { font-size: 1rem; }

    .teufelhof-card { padding: 28px; }
    .bio-facts { flex-direction: column; }
    .fact-item { flex: none; border-right: none; }
}

/* ===========================
   ACCESSIBILITY & REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
