@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
    --parchment: #f2e8d0;
    --parchment-dark: #e0d0aa;
    --ink: #2a1f0e;
    --ink-light: #4a3728;
    --rust: #8b3a1a;
    --rust-light: #c4622d;
    --gold: #9a7a2a;
    --gold-light: #c8a84b;
    --moss: #3d5a2e;
    --stone: #6b5c47;
    --stone-light: #9c8c78;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: #1a1208;
    color: var(--ink);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 18, 8, 0.95);
    border-bottom: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    color: var(--parchment-dark);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at center top, rgba(154, 122, 42, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #0e0a04 0%, #1a1208 40%, #241808 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -2rem;
    background:
        linear-gradient(180deg, rgba(14, 10, 4, 0.5), rgba(26, 18, 8, 0.74)),
        url("../imgGallery/web/home/IMG (4).webp") center/cover no-repeat;
    filter: blur(10px);
    transform: scale(1.08);
    opacity: 0.72;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239a7a2a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero-emblem {
    width: 400px;
    height: 300px;
    margin-bottom: 2rem;
    position: relative;
}

.hero-emblem svg {
    width: 100%;
    height: 100%;
}

.hero-emblem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-subtitle-top {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--parchment);
    line-height: 1.05;
    text-shadow: 0 2px 40px rgba(154, 122, 42, 0.3);
    margin-bottom: 0.3rem;
}

.hero-title span {
    color: var(--gold-light);
}

.hero-world {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 3vw, 1.6rem);
    color: var(--stone-light);
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto 2rem;
    max-width: 400px;
    width: 100%;
}

.hero-divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid var(--gold);
    opacity: 0.4;
}

.hero-divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--parchment-dark);
    max-width: 540px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    background: var(--rust);
    color: var(--parchment);
    border: 1px solid var(--rust-light);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--rust-light);
}

.btn-secondary {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(154, 122, 42, 0.1);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--stone-light);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

/* SECTIONS */
section {
    scroll-margin-top: 60px;
}

.section-parchment {
    background: var(--parchment);
    padding: 5rem 2rem;
    position: relative;
}

.section-parchment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-dark {
    background: linear-gradient(180deg, #1a1208, #241808);
    padding: 5rem 2rem;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.section-title.light {
    color: var(--parchment);
}

/* ÜBER UNS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--ink-light);
}

.about-text p+p {
    margin-top: 1rem;
}

.about-founders {
    background: #ede0c0;
    border: 1px solid var(--parchment-dark);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
}

.about-founders h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--parchment-dark);
}

.founder:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.founder-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--parchment);
    flex-shrink: 0;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.founder-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.founder-role {
    font-size: 0.9rem;
    color: var(--stone);
    font-style: italic;
}

.larp-types {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.larp-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid;
}

.larp-tag.fantasy {
    border-color: var(--gold);
    color: var(--rust);
    background: rgba(154, 122, 42, 0.08);
}

.larp-tag.scifi {
    border-color: var(--stone-light);
    color: var(--stone);
    background: rgba(107, 92, 71, 0.08);
}

/* TERMINE */
.events-section {
    margin-top: 2rem;
}

.events-section+.events-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(154, 122, 42, 0.18);
}

.events-section-head {
    margin-bottom: 1.25rem;
}

.events-section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
}

.events-section-desc {
    color: var(--stone-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.event-card {
    border: 1px solid rgba(154, 122, 42, 0.25);
    background: rgba(242, 232, 208, 0.04);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}

.event-card:hover {
    border-color: var(--gold);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--rust);
}

.event-type {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-type.fantasy {
    color: var(--gold-light);
}

.event-type.scifi {
    color: #7aaccc;
}

.event-date {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--stone-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--parchment);
    margin-bottom: 0.6rem;
}

.event-desc {
    font-size: 0.95rem;
    color: var(--stone-light);
    line-height: 1.6;
}

.event-meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--stone-light);
    display: flex;
    gap: 1rem;
}

/* GALERIE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 8px;
    margin-top: 2.5rem;
}

.gallery-item {
    background: #2a1f10;
    border: 1px solid rgba(154, 122, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.gallery-item:hover {
    border-color: var(--gold);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    cursor: zoom-in;
}

.gallery-item img.active {
    opacity: 1;
}

.gallery-counter {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    color: var(--parchment);
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    letter-spacing: 0.1em;
    pointer-events: none;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.gallery-nav button {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(154, 122, 42, 0.4);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.gallery-nav button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-nav button.active-toggle {
    background: rgba(154, 122, 42, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(154, 122, 42, 0.3);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold-light);
}

.section-intro {
    max-width: 760px;
    color: var(--ink-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.gallery-event-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.gallery-event-switcher button {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.65rem 1.1rem;
    background: rgba(242, 232, 208, 0.55);
    color: var(--ink-light);
    border: 1px solid rgba(154, 122, 42, 0.25);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.gallery-event-switcher button:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
    color: var(--ink);
}

.gallery-event-switcher button.active {
    background: var(--ink);
    color: var(--parchment);
    border-color: var(--ink);
}

.gallery-panel {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(154, 122, 42, 0.18);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 18px 50px rgba(42, 31, 14, 0.06);
}

.gallery-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.gallery-panel-kicker {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.45rem;
}

.gallery-panel-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ink);
    line-height: 1.2;
}

.gallery-panel-summary {
    max-width: 360px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-light);
    text-align: right;
}

.gallery-highlights {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 9rem;
    gap: 10px;
    grid-auto-flow: dense;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    min-height: 9rem;
    border: 1px solid rgba(154, 122, 42, 0.2);
    background: #2a1f10;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlight-card figcaption {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.7rem;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--parchment);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.highlight-card.hero {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 18rem;
}

.highlight-card.medium {
    grid-column: span 4;
}

.highlight-card.small {
    grid-column: span 3;
}

/* EVENT GALERIE */
.event-gallery-hero {
    text-align: center;
}

.event-gallery-hero {
    overflow: hidden;
}

.event-gallery-hero .section-inner {
    position: relative;
    z-index: 1;
}

.event-gallery-hero-lothal::after {
    content: '';
    position: absolute;
    inset: -2rem;
    background:
        linear-gradient(180deg, rgba(20, 20, 28, 0.52), rgba(26, 18, 8, 0.78)),
        url("../imgGallery/web/home/IMG (2).webp") center/cover no-repeat;
    filter: blur(10px);
    transform: scale(1.08);
    opacity: 0.78;
    pointer-events: none;
}

.event-gallery-hero-weinfest::after {
    content: '';
    position: absolute;
    inset: -2rem;
    background:
        linear-gradient(180deg, rgba(24, 20, 12, 0.48), rgba(42, 24, 10, 0.82)),
        url("../imgGallery/web/inaka-weinfest-i/IMG (1).webp") center/cover no-repeat;
    filter: blur(10px);
    transform: scale(1.08);
    opacity: 0.8;
    pointer-events: none;
}

.event-gallery-lead {
    max-width: 760px;
    margin: 0 auto 1.25rem;
    color: var(--parchment-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.event-gallery-meta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.event-gallery-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 2rem;
}

.event-gallery-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid rgba(154, 122, 42, 0.18);
    background: #2a1f10;
}

.event-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.event-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.event-gallery-card figcaption {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.7rem;
    z-index: 1;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--parchment);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* VIEWER */
.gallery-viewer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-viewer.open {
    display: flex;
}

.gallery-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 3, 0.88);
    backdrop-filter: blur(10px);
}

.gallery-viewer-panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1180px);
    max-height: 92vh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(200, 168, 75, 0.2);
    background: rgba(26, 18, 8, 0.88);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.gallery-viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.gallery-viewer-title {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.gallery-viewer-counter {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-light);
}

.gallery-viewer-stage {
    position: relative;
    min-height: 0;
    display: grid;
    place-items: center;
}

.gallery-viewer-stage img {
    max-width: 100%;
    max-height: calc(92vh - 10rem);
    object-fit: contain;
    display: block;
}

.gallery-viewer-caption {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--parchment-dark);
    text-align: center;
}

.gallery-viewer-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(200, 168, 75, 0.35);
    background: rgba(26, 18, 8, 0.72);
    color: var(--gold-light);
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.gallery-viewer-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-viewer-btn.prev {
    left: 0.5rem;
}

.gallery-viewer-btn.next {
    right: 0.5rem;
}

.gallery-viewer-close {
    border: 1px solid rgba(200, 168, 75, 0.35);
    background: rgba(26, 18, 8, 0.72);
    color: var(--gold-light);
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    cursor: pointer;
}

body.viewer-open {
    overflow: hidden;
}

/* KONTAKT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-info h3,
.contact-form-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-light);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--parchment-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(242, 232, 208, 0.06);
    border: 1px solid rgba(154, 122, 42, 0.3);
    color: var(--parchment);
    padding: 0.7rem 1rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* FOOTER */
footer {
    background: #0e0a04;
    border-top: 1px solid rgba(154, 122, 42, 0.3);
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--stone-light);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.footer-stats {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(154, 122, 42, 0.25);
    background: rgba(242, 232, 208, 0.04);
    min-width: 220px;
}

.footer-stats-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone-light);
}

.footer-stats-value {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.footer-stats-status {
    font-size: 0.8rem;
    color: var(--stone-light);
}

.footer-impressum a {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(155, 140, 120, 0.3);
    padding-bottom: 1px;
    transition: color 0.2s;
}

.footer-impressum a:hover {
    color: var(--gold-light);
}

.legal-content {
    max-width: 760px;
}

.legal-content .section-title {
    margin-top: 2.5rem;
    margin-bottom: 0.85rem;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.legal-content .section-title:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-light);
}

.legal-content p + p {
    margin-top: 0.9rem;
}

.legal-content ul {
    margin: 0.75rem 0 1rem 1.5rem;
}

.legal-content li + li {
    margin-top: 0.25rem;
}

@media (max-width: 640px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 160px);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-panel-header {
        flex-direction: column;
        align-items: start;
    }

    .gallery-panel-summary {
        text-align: left;
        max-width: none;
    }

    .gallery-highlights {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .highlight-card.hero,
    .highlight-card.medium,
    .highlight-card.small {
        grid-column: span 1;
        grid-row: auto;
        min-height: 180px;
    }

    .nav-links {
        gap: 1rem;
    }

    .footer-stats {
        width: 100%;
        max-width: 320px;
    }
}
