/* ============================================================
   Fonts – lokal gehostet (DSGVO-konform, kein Google CDN)
   ============================================================ */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300 500;
    font-display: swap;
    src: url('../fonts/quicksand-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                   U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300 500;
    font-display: swap;
    src: url('../fonts/quicksand-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                   U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/caveat-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                   U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/caveat-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                   U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Custom Properties
   ============================================================ */
:root {
    --primary:     #1e1e1e;
    --primary-h:   #333333;
    --primary-l:   #f0efed;
    --secondary:   #c17a5a;
    --bg:          #faf9f7;
    --surface:     #f2efe9;
    --surface-alt: #e8e4dc;
    --text:        #1e1e1e;
    --muted:       #6b6660;
    --border:      #ddd9d0;
    --r:           999px;
    --rl:          28px;
    --sp:          100px;
    --cw:          1100px;
    --nav-h:       78px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Quicksand', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.c { max-width: var(--cw); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   Navigation – floating pill
   ============================================================ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 12px 28px;
    pointer-events: none;
}
.nav-pill {
    background: rgba(15, 15, 15, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: var(--r);
    max-width: var(--cw);
    margin: 0 auto;
    pointer-events: all;
}
.nav-i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    padding: 0 20px;
}
.logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}
.logo-img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 500;
    transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}
.nav-cta:hover { opacity: .85; }
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    pointer-events: all;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 49;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.nav-overlay.open { display: flex; }
.nav-overlay ul { list-style: none; text-align: center; padding: 0; margin: 0 0 32px; }
.nav-overlay ul li { padding: 4px 0; }
.nav-overlay ul a {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color .15s;
}
.nav-overlay ul a:hover { color: #fff; }
.nav-overlay-close {
    position: absolute;
    top: 20px; right: 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
    padding: 10px 22px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--muted); color: var(--text); }
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--primary);
    padding: 13px 28px;
    border-radius: var(--r);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    transition: opacity .15s;
}
.btn-white:hover { opacity: .9; }
.btn-white-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 13px 28px;
    border-radius: var(--r);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    transition: all .15s;
}
.btn-white-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding: calc(var(--sp) + 78px) 0 calc(var(--sp) + 80px);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    z-index: 2;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-bg, linear-gradient(160deg, #2a2a2a 0%, #1e1e1e 100%));
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.hero .c { position: relative; z-index: 2; width: 100%; }
.hero-i {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 52px;
}
.hero-body { max-width: 660px; }
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--r);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: .01em;
}
.hero h1 {
    font-family: 'Caveat', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero-verse {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: -10px;
    margin-bottom: 22px;
    letter-spacing: .04em;
}
.hero p {
    font-size: 17px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.75;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-acts { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .btn       { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.hero .btn-ghost { background: rgba(255,255,255,.15); color: #f5f2ee; border-color: rgba(255,255,255,.3); }

/* ============================================================
   Event Float Card
   ============================================================ */
.event-float { position: relative; z-index: 10; padding: 0 28px; }
.event-card {
    max-width: var(--cw);
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--rl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}
.event-date {
    background: var(--primary);
    color: #fff;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}
.event-date .day   { font-size: 2rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .85; margin-top: 4px; }
.event-body { padding: 20px 28px; flex: 1; }
.event-label { font-size: 16px; font-weight: 400; color: var(--primary); margin-bottom: 6px; }
.event-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.event-meta  { font-size: 13px; color: var(--muted); }
.event-cta   { padding: 20px 28px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.event-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-l);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
}
.event-cta a:hover { opacity: .8; }
.event-cta a.ev-secondary { background: transparent; border: 1.5px solid var(--border); color: var(--muted); }

/* ============================================================
   About
   ============================================================ */
.about {
    padding: calc(var(--sp) + 100px) 0 var(--sp);
    background: var(--surface);
    position: relative;
    z-index: 1;
}
.about-i { display: grid; grid-template-columns: 3fr 0.5fr 5fr; gap: 32px; align-items: center; }
.about-body { grid-column: 3; transform: translateY(80px); }
.about-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 400; margin-bottom: 14px; }
.about-body p  { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.check-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.about-vis {
    background: var(--surface-alt);
    border-radius: var(--rl);
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    transform: translateY(-70px);
    box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10);
}
.about-vis img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Section Header
   ============================================================ */
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head.left { text-align: left; margin-bottom: 36px; }
.sec-label { font-size: 18px; font-weight: 400; color: var(--primary); margin-bottom: 10px; }
.sec-head h2   { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; margin-bottom: 12px; }
.sec-head p    { font-size: 16px; color: var(--muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   Quote
   ============================================================ */
.quote-sec { padding: var(--sp) 0 60px; background: var(--surface); }
.quote-inner { position: relative; padding-top: 24px; }
.quote-text {
    font-family: 'Caveat', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
    max-width: 700px;
}
.quote-source {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ============================================================
   Photo Collage
   ============================================================ */
.photos-sec { background: var(--surface); position: relative; z-index: 2; margin-top: -140px; overflow: visible; }
.photos-cloud { position: relative; height: 380px; overflow: visible; }
.photo-item {
    position: absolute;
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.12), 0 16px 48px rgba(0,0,0,.22);
    background: var(--surface-alt);
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-item:nth-child(1) { left: 0%;  width: 20%; height: 270px; bottom: -80px; z-index: 1; }
.photo-item:nth-child(2) { left: 18%; width: 17%; height: 345px; bottom: -70px; z-index: 2; }
.photo-item:nth-child(3) { left: 34%; width: 21%; height: 185px; bottom:  10px; z-index: 1; }
.photo-item:nth-child(4) { left: 57%; width: 19%; height: 278px; bottom:  70px; z-index: 2; }
.photo-item:nth-child(5) { left: 74%; width: 14%; height: 145px; bottom: 112px; z-index: 3; }
.photo-item:nth-child(6) { left: 90%; width: 27%; height: 268px; bottom:  96px; z-index: 2; }

/* ============================================================
   Events Section
   ============================================================ */
.events-sec { padding: calc(var(--sp) + 40px) 0 var(--sp); background: var(--bg); }
.events-i { display: grid; grid-template-columns: 5fr 4fr; gap: 40px; align-items: start; }
.event-feat {
    border-radius: var(--rl);
    overflow: hidden;
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.event-feat-img { position: absolute; inset: 0; background: var(--surface-alt); }
.event-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.event-feat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
}
.event-feat-body { position: relative; z-index: 1; padding: 28px 32px; }
.event-feat .hero-badge { margin-bottom: 12px; }
.event-feat h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 400; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.event-feat-text  { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 8px; }
.event-feat-dates { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.event-feat .btn  { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.event-feat-flat { justify-content: flex-start; border: 2.5px solid #ecddd8; background: #fff; }
.event-feat-flat .event-feat-body { padding: 32px; display: flex; flex-direction: column; height: 100%; justify-content: center; }
.ef-flat-badge { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-bottom: 10px; }
.event-feat-flat h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 22px; }
.ef-flat-list { display: flex; flex-direction: column; margin-bottom: 20px; }
.ef-flat-row  { display: flex; gap: 16px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.ef-flat-row:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.ef-flat-hl   { background: #ecddd8; border-radius: 10px; padding: 12px 14px; margin: 6px -14px; border: none !important; }
.ef-flat-date { font-weight: 700; font-size: 13px; min-width: 90px; flex-shrink: 0; opacity: .9; }
.ef-flat-info { display: flex; flex-direction: column; gap: 2px; }
.ef-flat-name { font-size: 14px; font-weight: 500; line-height: 1.3; }
.ef-flat-time { font-size: 12px; opacity: .6; }
.ef-flat-note { font-size: 12px; opacity: .55; margin-top: 4px; margin-bottom: 18px; }
.ef-flat-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    background: rgba(0,0,0,.12);
    color: inherit;
    transition: opacity .15s;
}
.ef-flat-btn:hover { opacity: .75; }
.event-list-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.event-list-top h3 { font-size: 1rem; font-weight: 600; }
.event-list-top a  { font-size: 13px; color: var(--primary); text-decoration: none; }
.event-list-top a:hover { opacity: .75; }
.event-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.event-row:first-of-type { border-top: 1px solid var(--border); }
.ev-date-badge {
    background: var(--primary-l); color: var(--primary);
    border-radius: var(--r); padding: 6px 10px;
    text-align: center; flex-shrink: 0; min-width: 46px;
}
.ev-date-badge .ev-day { font-size: 1.15rem; font-weight: 700; line-height: 1; display: block; }
.ev-date-badge .ev-mon { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; display: block; opacity: .75; }
.ev-info  { flex: 1; min-width: 0; }
.ev-title { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev-meta  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ev-time  { font-size: 12px; color: var(--muted); flex-shrink: 0; white-space: nowrap; }
.ev-list-actions { display: flex; align-items: center; gap: 8px; }
.ev-cal-btn {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    border: 1px solid var(--border); border-radius: 6px;
    color: var(--muted); text-decoration: none;
    transition: border-color .15s, color .15s;
    position: relative; flex-shrink: 0;
}
.ev-cal-btn:hover { border-color: var(--primary); color: var(--primary); }
.ev-cal-btn::after {
    content: 'Kalender abonnieren';
    position: absolute; bottom: calc(100% + 7px); right: 0;
    background: var(--text); color: #fff;
    font-size: 11px; white-space: nowrap;
    padding: 4px 9px; border-radius: 5px;
    opacity: 0; pointer-events: none; transition: opacity .15s;
}
.ev-cal-btn:hover::after { opacity: 1; }

/* ============================================================
   Bereiche / Gemeinschaft
   ============================================================ */
.bereiche-sec { padding: var(--sp) 0; background: var(--surface); }
.bereiche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bereich-card {
    background: var(--bg);
    border-radius: var(--rl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}
.bereich-img {
    margin: -28px -24px 20px;
    height: 160px;
    overflow: hidden;
    border-radius: var(--rl) var(--rl) 0 0;
    background: var(--surface-alt);
}
.bereich-img img { width: 100%; height: 100%; object-fit: cover; }
.bereich-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.bereich-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.bereich-links   { display: flex; gap: 10px; margin-top: 16px; }
.bereich-links a {
    font-size: 13px; font-weight: 600;
    text-decoration: none; padding: 6px 14px;
    border-radius: var(--r); transition: opacity .15s;
}
.bereich-links a:first-child { background: var(--primary-l); color: var(--primary); }
.bereich-links a:last-child  { background: var(--surface-alt); color: var(--muted); }
.bereich-links a:hover { opacity: .75; }

/* ============================================================
   Visit CTA
   ============================================================ */
.visit-sec { padding: var(--sp) 0; background: linear-gradient(135deg, #3a3a3a 0%, var(--primary) 100%); }
.visit-i   { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.visit-body { flex: 1; }
.visit-body h2 {
    font-family: 'Caveat', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: #fff; font-weight: 400;
    margin-bottom: 16px; line-height: 1.15;
}
.visit-body p      { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }
.visit-details     { display: flex; flex-direction: column; gap: 10px; }
.visit-detail      { display: flex; align-items: baseline; gap: 12px; font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.5; }
.visit-detail strong { color: #fff; flex-shrink: 0; min-width: 90px; font-weight: 600; }
.visit-acts        { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
    padding: 52px 0 24px;
}
.footer-g {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.f-brand .logo { color: var(--primary); font-size: 18px; }
.f-brand p     { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.7; max-width: 230px; }
.f-col h4      { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.f-col ul      { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.f-col ul a    { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .15s; }
.f-col ul a:hover { color: var(--text); }
.f-contact     { margin-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.f-contact-row { font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: baseline; }
.f-contact-row span  { flex-shrink: 0; font-weight: 600; color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; min-width: 52px; }
.f-contact-row a     { color: var(--muted); text-decoration: none; transition: color .15s; }
.f-contact-row a:hover { color: var(--text); }
.footer-b {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-b span { font-size: 12px; color: var(--muted); }

/* ============================================================
   Standard Page Content (non-homepage)
   ============================================================ */
.page-wrap    { padding-top: calc(var(--nav-h) + 24px); min-height: 70vh; }
.page-content { padding: 3rem 0 4rem; }
.page-content h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.2; }
.page-content h2 { font-size: 1.4rem; font-weight: 600; margin: 2rem 0 .75rem; }
.page-content h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 .5rem; }
.page-content p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; max-width: 680px; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--muted); }
.page-content li { margin-bottom: .4rem; line-height: 1.7; }
.page-content a  { color: var(--secondary); text-decoration: underline; }
.page-content a:hover { opacity: .8; }
.page-content img { border-radius: 12px; margin: 1.5rem 0; }
.page-content hr  { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ============================================================
   404
   ============================================================ */
.not-found { text-align: center; padding: 5rem 0; }
.not-found h1 { font-size: 4rem; font-weight: 300; color: var(--muted); margin-bottom: .5rem; }
.not-found p  { color: var(--muted); margin-bottom: 2rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    :root { --sp: 80px; }
    .c { padding: 0 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .hero { padding: calc(80px + 78px) 0 calc(80px + 40px); }
    .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
    .event-float { padding: 0 16px; }
    .event-card { flex-direction: column; }
    .event-date { flex-direction: row; justify-content: flex-start; gap: 8px; padding: 16px 20px; min-width: unset; }
    .event-date .day { font-size: 1.4rem; }
    .event-cta { padding: 16px 20px; }
    .about { padding: calc(80px + 40px) 0 80px; }
    .about-i { grid-template-columns: 1fr; gap: 36px; }
    .about-body { grid-column: auto; transform: none; }
    .about-vis  { max-width: 400px; margin: 0 auto; width: 100%; transform: none; }
    .grid3 { grid-template-columns: 1fr; }
    .visit-i { flex-direction: column; gap: 32px; align-items: flex-start; }
    .bereiche-grid { grid-template-columns: repeat(2, 1fr); }
    .events-i { grid-template-columns: 1fr; gap: 32px; }
    .event-feat { min-height: 360px; }
    .footer-g { grid-template-columns: 1fr 1fr; gap: 28px; }
    .photos-sec { margin-top: -40px; }
    .photos-cloud { display: flex; gap: 8px; align-items: flex-end; height: 200px; }
    .photo-item { position: relative; bottom: auto !important; left: auto !important; width: auto !important; flex: 1; box-shadow: none; }
    .photo-item:nth-child(1) { height: 85%; }
    .photo-item:nth-child(2) { height: 58%; }
    .photo-item:nth-child(3) { height: 75%; }
    .photo-item:nth-child(4) { height: 50%; }
    .photo-item:nth-child(5) { height: 90%; }
    .photo-item:nth-child(6) { height: 65%; }
    .footer-b { flex-direction: column; gap: 8px; text-align: center; }
    .quote-text { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}
@media (max-width: 480px) {
    :root { --sp: 60px; }
    .hero-acts { flex-direction: column; }
    .hero-acts .btn { text-align: center; justify-content: center; }
    .footer-g { grid-template-columns: 1fr; }
    .bereiche-grid { grid-template-columns: 1fr; }
}
