:root {
    --ink: #0c0d0d;
    --ink-soft: #151616;
    --paper: #e9e3d8;
    --paper-dark: #d9d0c2;
    --muted: #aaa69e;
    --bronze: #c79555;
    --bronze-light: #d9ad73;
    --bronze-dark: #8d6739;
    --line: rgba(233, 227, 216, 0.18);
    --content: 1180px;
    --header-height: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
img { width: 100%; }
::selection { background: var(--bronze); color: var(--ink); }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 14px; color: #111; background: var(--paper); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.test-mode-badge { position: fixed; left: 16px; bottom: 16px; z-index: 190; max-width: calc(100vw - 32px); padding: 8px 12px; border: 1px solid rgba(233, 227, 216, .35); background: rgba(12, 13, 13, .94); color: var(--bronze-light); box-shadow: 0 8px 30px rgba(0, 0, 0, .38); font-size: .78rem; line-height: 1.35; letter-spacing: .02em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.section-shell { width: min(var(--content), calc(100% - 48px)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 14px; color: var(--bronze); text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; font-weight: 700; }
.eyebrow::before { content: ""; width: 54px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(22px, 4vw, 68px);
    background: linear-gradient(180deg, rgba(8, 9, 9, .97), rgba(8, 9, 9, .86));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: auto; height: 58px; max-width: min(260px, 28vw); object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 38px); }
.main-nav > a, .nav-group > a { position: relative; padding: 28px 0 25px; text-decoration: none; color: #dad7d0; font-size: .92rem; }
.main-nav > a::after, .nav-group > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 15px; height: 1px; background: var(--bronze); transition: right .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--bronze); }
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-group > a:hover::after, .nav-group > a.active::after { right: 0; }
.nav-group { position: relative; display: flex; align-items: center; gap: 5px; }
.submenu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.submenu { position: absolute; top: calc(100% - 5px); left: -22px; min-width: 245px; padding: 12px 0; background: rgba(12, 13, 13, .98); border: 1px solid var(--line); box-shadow: 0 22px 45px rgba(0, 0, 0, .35); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .22s ease; }
.submenu a { display: block; padding: 10px 22px; color: #d8d3ca; text-decoration: none; font-size: .88rem; }
.submenu a:hover { color: var(--bronze); background: rgba(255, 255, 255, .035); }
.nav-group:hover .submenu, .nav-group:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; margin: 6px auto; background: var(--paper); transition: .25s ease; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: url("../images/allgemein/godafoss.webp") center center / cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 6, 6, .96) 0%, rgba(5, 6, 6, .66) 38%, rgba(5, 6, 6, .20) 70%, rgba(5, 6, 6, .16) 100%), linear-gradient(0deg, rgba(5, 6, 6, .46), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(680px, 90vw); margin-left: clamp(24px, 5vw, 84px); padding-top: 74px; }

.hero h1 { margin: 25px 0 22px; font-size: clamp(4rem, 7.7vw, 7.2rem); line-height: .92; letter-spacing: -.052em; }
.hero p { max-width: 570px; margin: 0; color: #ddd8cf; font-size: clamp(1rem, 1.5vw, 1.35rem); line-height: 1.52; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 30px; border: 1px solid var(--bronze); text-decoration: none; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: .25s ease; }
.button-primary { background: var(--bronze); color: #111; }
.button-primary:hover { background: var(--bronze-light); border-color: var(--bronze-light); transform: translateY(-2px); }
.button-secondary { background: rgba(8, 9, 9, .42); color: var(--paper); }
.button-secondary:hover { background: rgba(199, 149, 85, .18); transform: translateY(-2px); }
.photo-note { position: absolute; z-index: 2; right: clamp(24px, 4vw, 66px); bottom: 42px; display: flex; flex-direction: column; gap: 4px; padding-left: 15px; border-left: 1px solid var(--bronze); color: #d6d1c8; font-size: .8rem; }
.scroll-cue { position: absolute; z-index: 2; bottom: 22px; left: 50%; min-width: 110px; min-height: 72px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0; padding: 7px 18px 5px; border: 1px solid var(--bronze); border-radius: 999px; background: rgba(8, 9, 9, .58); box-shadow: 0 8px 28px rgba(0, 0, 0, .34); transform: translateX(-50%); text-decoration: none; color: var(--bronze-light); animation: drift 1.8s infinite; }
.scroll-cue-label { font-size: .7rem; font-weight: 700; line-height: 1; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue-arrow { font-size: 2.35rem; line-height: .92; }
.scroll-cue:hover, .scroll-cue:focus-visible { border-color: var(--bronze-light); background: rgba(8, 9, 9, .82); color: var(--paper); }
@keyframes drift { 50% { transform: translate(-50%, 8px); } }

.intro { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 7vw, 110px); padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); }
.section-number { color: var(--bronze-dark); font-family: Georgia, serif; font-size: 1.2rem; }
.intro h2, .gallery-heading h2, .monthly h2, .aktuell-copy h2, .exhibition-copy h2, .order-heading h2, .contact-copy h2, .story h2, .form-intro h2 { margin: 18px 0 0; font-size: clamp(2.65rem, 5vw, 5.15rem); line-height: .98; letter-spacing: -.035em; }
.intro-text { color: #bbb7ae; font-size: 1.03rem; line-height: 1.8; }
.intro-text p:first-child { margin-top: 0; }

.gallery-section { padding: 110px 0 90px; background: #111212; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.gallery-heading p { max-width: 420px; margin: 0; color: var(--muted); line-height: 1.7; }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.featured-card { position: relative; min-height: 560px; overflow: hidden; border-right: 1px solid rgba(255, 255, 255, .18); background: #222; color: var(--paper); text-decoration: none; }
.featured-card img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.02); transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .4s ease; }
.featured-card:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 7, 7, .94), rgba(6, 7, 7, .04) 70%); }
.gallery-index { position: absolute; top: 25px; left: 25px; color: rgba(255, 255, 255, .7); font-family: Georgia, serif; }
.gallery-copy { position: absolute; left: 28px; right: 28px; bottom: 35px; display: flex; flex-direction: column; gap: 8px; }
.gallery-copy strong { font-family: Georgia, serif; font-size: clamp(1.55rem, 2.2vw, 2.35rem); font-weight: 400; line-height: 1.05; }
.gallery-copy small { color: #c5c1b9; }
.gallery-arrow { position: absolute; right: 28px; top: 23px; color: var(--bronze); font-size: 1.3rem; }
.section-link { width: min(var(--content), calc(100% - 48px)); margin: 42px auto 0; }
.text-link { display: inline-flex; gap: 18px; margin-top: 20px; padding-bottom: 6px; color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--bronze); }
.text-link span { color: var(--bronze); }

.monthly { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 7vw, 100px); align-items: center; padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); }
.monthly-image { position: relative; width: min(100%, 620px); justify-self: center; color: inherit; text-decoration: none; }
.monthly-image::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--bronze-dark); }
.monthly-image img { position: relative; aspect-ratio: 1.35; object-fit: cover; }
.monthly-image > span { position: absolute; right: -1px; bottom: -35px; color: var(--muted); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.monthly-copy { max-width: 650px; }
.monthly-preview { display: -webkit-box; overflow: hidden; margin: 28px 0 0; color: #d8d3ca; font-size: 1.08rem; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.monthly-cta { margin-top: 30px; box-shadow: 0 10px 28px rgba(0, 0, 0, .24); }
.monthly-cta span { margin-left: 10px; font-size: 1.1em; }

.aktuell-preview, .exhibition-preview { padding: clamp(90px, 10vw, 150px) 0; background: #e6dfd3; color: #161717; }
.aktuell-inner, .aktuell-detail, .exhibition-inner, .exhibition-detail { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.aktuell-inner-text-only { grid-template-columns: minmax(0, 760px); justify-content: center; }
.aktuell-image, .aktuell-visual, .exhibition-poster { position: relative; padding: 0; background: transparent; box-shadow: none; transform: rotate(-5deg); }
.aktuell-image img, .exhibition-poster img { position: relative; aspect-ratio: 1.45; object-fit: cover; border: 2px solid var(--bronze-dark); }
.aktuell-visual img { position: relative; border: 2px solid var(--bronze-dark); }
.aktuell-copy .eyebrow, .exhibition-copy .eyebrow { color: var(--bronze-dark); }
.aktuell-copy > p, .exhibition-copy > p { max-width: 520px; color: #55524c; line-height: 1.75; font-size: 1.05rem; }
.aktuell-copy dl, .exhibition-copy dl, .story-facts dl { margin: 35px 0; border-top: 1px solid rgba(22, 23, 23, .18); }
.aktuell-copy dl div, .exhibition-copy dl div, .story-facts dl div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(22, 23, 23, .18); }
dt { color: var(--bronze-dark); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
dd { margin: 0; color: #383632; font-size: .92rem; }
.dark-link { color: #1c1d1d; }

.order-preview { padding-top: clamp(95px, 10vw, 150px); padding-bottom: clamp(95px, 10vw, 150px); }
.order-heading { max-width: 760px; }
.order-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; margin-top: 58px; }
.order-text { padding-right: clamp(10px, 5vw, 70px); color: var(--muted); line-height: 1.8; }
.price-card { min-height: 210px; display: flex; flex-direction: column; justify-content: center; padding: 32px; border: 1px solid var(--line); background: linear-gradient(135deg, #181919, #101111); }
.price-card > span { color: var(--bronze); font-family: Georgia, serif; font-size: 2.4rem; }
.price-card strong { margin-top: 15px; font-size: 1.35rem; }
.price-card small { margin-top: 9px; color: var(--muted); }

.contact-preview { padding: clamp(95px, 10vw, 150px) 0; background: #121313; border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 8vw, 120px); }
.contact-copy p { max-width: 450px; color: var(--muted); line-height: 1.7; }
.contact-copy > a { display: inline-block; margin-top: 22px; color: var(--bronze); text-underline-offset: 6px; }
.contact-card { align-self: center; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); background: linear-gradient(145deg, #1a1b1b, #101111); }
.contact-card p { margin-top: 0; color: var(--muted); line-height: 1.8; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: center; padding: 55px clamp(24px, 5vw, 80px); border-top: 1px solid var(--line); color: var(--muted); }
.footer-brand { color: var(--paper); text-transform: uppercase; letter-spacing: .24em; font-size: .85rem; }
.site-footer p { margin: 5px 0 0; }
.footer-links { display: flex; gap: 25px; grid-column: 2; grid-row: 1 / span 2; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--bronze); }
.site-footer small { font-size: .72rem; }

.page-hero { position: relative; min-height: 70svh; display: flex; align-items: flex-end; padding: calc(var(--header-height) + 80px) 0 90px; background-position: center; background-size: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 6, 6, .82), rgba(5, 6, 6, .12)), linear-gradient(0deg, rgba(5, 6, 6, .52), transparent 65%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin: 22px 0 16px; font-size: clamp(4rem, 9vw, 8.2rem); line-height: .9; letter-spacing: -.05em; }
.page-hero p { max-width: 620px; margin: 0; color: #d4cfc6; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.compact-hero { min-height: 54svh; background-image: url("../images/galerien/landschaft-und-natur/landschaftundnaturtop.webp"); }
.monthly-hero { background-image: var(--monthly-hero-image); }
.aktuell-hero { background-color: #050606; }
.contact-hero { background-image: url("../images/allgemein/abendstimmung.webp"); }
.order-hero { background-image: url("../images/galerien/panoramas/lai-palpuegna.webp"); }

.gallery-page { padding-top: 70px; padding-bottom: 130px; }
.gallery-overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-back { margin: 0 0 36px; }
.gallery-tools { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 42px; padding: 22px 24px; border: 1px solid var(--line); background: #111212; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.gallery-tools .filter-bar { margin-bottom: 0; }
.filter-button { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); background: transparent; color: #c8c4bc; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.filter-button:hover, .filter-button.active { color: #111; background: var(--bronze); border-color: var(--bronze); }
.gallery-result-status { flex: 0 0 auto; margin: 0 0 11px; color: var(--muted); font-size: .76rem; letter-spacing: .06em; white-space: nowrap; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 24px; }
.photo-card { position: relative; margin: 0; }
.photo-card[hidden] { display: none; }
.photo-card-wide { grid-column: span 2; }
.photo-open { width: 100%; padding: 0; overflow: hidden; border: 0; background: #1a1b1b; cursor: zoom-in; }
.photo-open img { aspect-ratio: 1.35; height: 100%; object-fit: cover; transition: transform .6s ease, filter .35s ease; }
.photo-card-wide .photo-open img { aspect-ratio: 2.15; }
.photo-open:hover img { transform: scale(1.035); filter: saturate(1.1); }
.photo-card figcaption { display: flex; justify-content: space-between; gap: 16px; padding: 14px 1px; border-bottom: 1px solid var(--line); }
.photo-card figcaption strong { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.photo-card figcaption span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; text-align: right; }
.photo-badges { position: absolute; z-index: 2; top: 13px; left: 13px; display: flex; flex-wrap: wrap; gap: 7px; pointer-events: none; }
.photo-badge { display: inline-flex; min-height: 28px; align-items: center; padding: 0 10px; color: #111; background: var(--bronze-light); box-shadow: 0 3px 18px rgba(0, 0, 0, .32); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.photo-badge-new { color: var(--paper); background: #335f4c; }
.gallery-load-more { display: flex; justify-content: center; padding-top: 58px; }
.gallery-load-more-button[hidden] { display: none; }
.video-feature { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 55px; margin-top: 90px; padding: 48px; background: #121313; border: 1px solid var(--line); }
.video-feature[hidden] { display: none; }
.video-feature h2 { margin: 18px 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1; }
.video-feature p { color: var(--muted); }
.video-feature video { width: 100%; background: #050505; }
.gallery-youtube-prompt { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 55px; padding: 28px 32px; border: 1px solid var(--line); border-left: 3px solid var(--bronze-dark); background: #111212; }
.gallery-youtube-prompt .text-link { font-size: clamp(1rem, 1.5vw, 1.2rem); }


.gallery-continuation { margin-top: clamp(95px, 11vw, 150px); }
.gallery-neighbours { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.gallery-neighbour { display: flex; min-height: 125px; flex-direction: column; justify-content: center; gap: 8px; padding: 26px 32px; text-decoration: none; background: #111212; transition: background .25s ease, color .25s ease; }
.gallery-neighbour + .gallery-neighbour { border-left: 1px solid var(--line); }
.gallery-neighbour:hover { background: #1a1b1b; color: var(--bronze-light); }
.gallery-neighbour span { color: var(--bronze); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gallery-neighbour strong { font-family: Georgia, serif; font-size: clamp(1.5rem, 2.5vw, 2.3rem); font-weight: 400; }
.gallery-neighbour-next { align-items: flex-end; text-align: right; }
.gallery-recommendations { margin-top: clamp(85px, 9vw, 125px); }
.gallery-recommendations-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 35px; }
.gallery-recommendations-heading h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1; }
.gallery-recommendation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.gallery-recommendation-card { min-height: 390px; border: 1px solid var(--line); }
.gallery-monthly-prompt { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 45px; margin-top: clamp(85px, 9vw, 125px); padding: clamp(38px, 6vw, 72px); color: #191a1a; background: var(--paper-dark); }
.gallery-monthly-prompt h2 { margin: 14px 0 12px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; }
.gallery-monthly-prompt p { max-width: 650px; margin: 0; color: #58544e; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 72px 80px 35px; background: rgba(3, 4, 4, .96); backdrop-filter: blur(12px); }
.lightbox[hidden] { display: none; }
.lightbox figure { width: min(1150px, 86vw); max-height: calc(100vh - 105px); margin: 0; overflow-y: auto; }
.lightbox img { width: 100%; max-height: 68vh; object-fit: contain; }
.lightbox figcaption { display: flex; justify-content: space-between; align-items: flex-start; gap: 25px; padding-top: 17px; }
.lightbox-caption-main { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.lightbox figcaption strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.lightbox figcaption span { color: var(--muted); }
.lightbox-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 14px; }
.lightbox-counter { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.lightbox-copy { min-height: 38px; padding: 0 14px; border: 1px solid var(--bronze); background: transparent; color: var(--paper); cursor: pointer; }
.lightbox-copy:hover, .lightbox-copy.copied { background: var(--bronze); color: #111; }
.lightbox-close, .lightbox-nav { position: absolute; border: 1px solid var(--line); background: rgba(10, 11, 11, .5); cursor: pointer; }
.lightbox-close { top: 18px; right: 24px; width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; }
.lightbox-nav { top: 50%; width: 52px; height: 72px; transform: translateY(-50%); font-size: 2.4rem; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-panorama { padding: 58px 24px 18px; }
.lightbox-panorama figure { display: flex; width: min(96vw, 2400px); max-height: calc(100vh - 76px); max-height: calc(100dvh - 76px); flex-direction: column; overflow: hidden; }
.lightbox-panorama img { width: 100%; max-height: calc(100vh - 148px); max-height: calc(100dvh - 148px); object-fit: contain; }
.lightbox-panorama figcaption { flex: 0 0 auto; padding: 13px 6px 0; }

.story { padding-top: 110px; padding-bottom: 140px; }
.story-intro { display: grid; grid-template-columns: .25fr 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.story-intro > p { margin-top: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.story-image { margin: 100px 0 110px; }
.story-image img { max-height: 780px; object-fit: cover; }
.story-image figcaption { padding-top: 13px; color: var(--muted); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; text-align: right; }
.story-body { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 8vw, 120px); }
.story-body > div > h2 { margin-top: 0; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.story-body > div > h2:not(:first-child) { margin-top: clamp(45px, 6vw, 75px); }
.story-body p { color: #bdb8af; line-height: 1.85; }
.story-facts { padding: 38px; color: #191a1a; background: var(--paper-dark); }

.aktuell-detail, .exhibition-detail { padding-top: 120px; padding-bottom: 140px; }
.aktuell-detail .aktuell-copy, .exhibition-detail .exhibition-copy { color: var(--paper); }
.aktuell-detail .aktuell-copy > p, .exhibition-detail .exhibition-copy > p { color: var(--muted); }
.aktuell-detail .aktuell-copy > .eyebrow { color: var(--bronze); }
.aktuell-detail .aktuell-copy dl, .exhibition-detail .exhibition-copy dl { border-color: var(--line); }
.aktuell-detail .aktuell-copy dl div, .exhibition-detail .exhibition-copy dl div { border-color: var(--line); }
.aktuell-detail .aktuell-copy dt, .exhibition-detail .exhibition-copy dt { color: var(--bronze); }
.aktuell-detail .aktuell-copy dd, .exhibition-detail .exhibition-copy dd { color: #c9c5bd; }
.large-poster { transform: none; }

.prices { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 22px; align-items: stretch; padding-top: 90px; }
.prices > p { margin: 0; align-self: center; padding-left: 30px; color: var(--muted); line-height: 1.8; }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); padding-top: 110px; padding-bottom: 140px; }
.form-intro > p { color: var(--muted); line-height: 1.8; }
.form-intro > a:not(.text-link) { color: var(--bronze); text-underline-offset: 6px; }
.local-note { margin-top: 55px; padding: 18px; border-left: 2px solid var(--bronze-dark); font-size: .83rem; }
.form-panel { scroll-margin-top: calc(var(--header-height) + 24px); padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); background: #121313; }
.contact-form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid #555; padding: 12px 0; color: var(--paper); background: transparent; outline: none; resize: vertical; }
.contact-form select { padding: 12px 34px 12px 10px; color: var(--paper); background: #121313; color-scheme: dark; }
.contact-form select option { color: #111; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--bronze); }
.contact-form .button { justify-self: start; border: 0; margin-top: 8px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-message { margin-bottom: 30px; padding: 18px 20px; border-left: 3px solid; }
.form-message strong { display: block; }
.form-message a { text-underline-offset: 4px; }
.form-message.success { border-color: #6aa66f; background: rgba(106, 166, 111, .1); }
.form-message.error { border-color: #bf765e; background: rgba(191, 118, 94, .1); }
.form-message ul { margin-bottom: 0; }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.monthly-signup { padding: 0 0 clamp(90px, 10vw, 145px); }
.monthly-signup-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(35px, 6vw, 85px); align-items: center; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-left: 3px solid var(--bronze-dark); background: #121313; }
.monthly-signup-copy h2 { margin: 15px 0 18px; font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1.05; }
.monthly-signup-copy p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.7; }
.monthly-signup-copy strong { color: var(--paper); }
.monthly-signup-form { display: flex; gap: 12px; align-items: stretch; }
.monthly-signup-form > input[type="email"] { min-width: 0; flex: 1 1 auto; border: 1px solid #555; padding: 14px 16px; color: var(--paper); background: #0d0e0e; outline: none; }
.monthly-signup-form > input[type="email"]:focus { border-color: var(--bronze); }
.monthly-signup-form > input[type="email"]::placeholder { color: #918c84; opacity: 1; }
.monthly-signup-form .button { flex: 0 0 auto; border: 0; cursor: pointer; }
.monthly-signup-note { margin: 13px 0 0; color: var(--muted); font-size: .8rem; letter-spacing: .04em; }
.monthly-signup-panel .form-message { margin-bottom: 20px; }

.legal { max-width: 850px; padding-top: 90px; padding-bottom: 130px; }
.legal h2 { margin: 55px 0 12px; font-size: 2.2rem; }
.legal p { color: #c0bbb3; }
.legal a { color: var(--bronze); }
.legal .analytics-settings { margin-top: 24px; padding-top: 12px; border-top: 1px solid var(--line); font-size: .94rem; }
.legal .analytics-settings > summary { width: fit-content; max-width: 100%; min-height: 44px; padding: 9px 0; color: var(--bronze); cursor: pointer; }
.legal .analytics-settings > summary:hover { color: var(--bronze-light); text-decoration: underline; text-underline-offset: 4px; }
.legal .analytics-settings > summary:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }
.legal .analytics-settings-content { margin-top: 12px; }
.legal .analytics-settings-content > p:first-child { margin-top: 0; }
.legal .analytics-settings .button { max-width: 100%; min-height: 44px; padding: 8px 18px; font-size: .9rem; }
.legal .analytics-settings .button:disabled { opacity: .65; cursor: not-allowed; }
.legal .analytics-settings .button:disabled:hover { transform: none; background: rgba(8, 9, 9, .42); }
.not-found { min-height: 75svh; padding-top: calc(var(--header-height) + 160px); padding-bottom: 100px; }
.not-found h1 { max-width: 850px; margin: 24px 0; font-size: clamp(3rem, 7vw, 6rem); line-height: .95; }
.not-found p { color: var(--muted); }

@media (max-width: 1080px) {
    .gallery-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    :root { --header-height: 68px; }
    .brand img { height: 48px; max-width: min(220px, 55vw); }
    .menu-toggle { display: block; position: relative; z-index: 2; }
    .main-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        /* The header's backdrop-filter creates a containing block: use viewport height explicitly. */
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        display: block;
        padding: 16px 24px calc(40px + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        background: rgba(8, 9, 9, .99);
        transform: translateY(-115%);
        visibility: hidden;
        transition: .3s ease;
    }
    .main-nav.nav-open { transform: translateY(0); visibility: visible; }
    .main-nav > a, .nav-group > a { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.15rem; line-height: 1.4; }
    .main-nav > a::after, .nav-group > a::after { display: none; }
    .nav-group { display: grid; grid-template-columns: 1fr 46px; gap: 0; }
    .submenu-toggle { display: block; height: 50px; font-size: 1.5rem; }
    .submenu { position: static; grid-column: 1 / -1; display: none; min-width: 0; padding: 0 0 10px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .submenu a { font-size: 1.05rem; line-height: 1.5; }
    .nav-group.submenu-open .submenu { display: block; }
    .nav-group:hover .submenu { transform: none; }
    .hero-content { padding-top: var(--header-height); }
    .intro { grid-template-columns: 1fr 1fr; }
    .intro-text { grid-column: auto; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card { min-height: 500px; }
    .monthly { grid-template-columns: 1fr; }
    .monthly-image, .monthly-copy { width: min(100%, 720px); justify-self: center; }
    .aktuell-inner, .aktuell-detail, .exhibition-inner, .exhibition-detail { grid-template-columns: .9fr 1.1fr; gap: 50px; }
    .aktuell-inner-text-only { grid-template-columns: minmax(0, 760px); }
    .order-grid { grid-template-columns: 1fr 1fr; }
    .order-text { grid-column: 1 / -1; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .story-intro { grid-template-columns: 80px 1fr; }
    .story-intro > p { grid-column: 2; }
    .prices { grid-template-columns: 1fr 1fr; }
    .prices > p { grid-column: 1 / -1; padding: 15px 0 0; }
}

@media (max-width: 720px) {
    .gallery-overview-grid { grid-template-columns: 1fr; }
    .site-header { padding-inline: 18px; }
    .brand { letter-spacing: .19em; font-size: .76rem; }
    .hero { min-height: 770px; background-position: 57% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(5, 6, 6, .92), rgba(5, 6, 6, .46)), linear-gradient(0deg, rgba(5, 6, 6, .85), transparent 60%); }
    .hero-content { width: auto; margin: 0 24px; }
    .hero h1 { font-size: clamp(3.55rem, 17vw, 5.25rem); }
    .hero-actions { display: grid; }
    .photo-note { right: 24px; bottom: 28px; }
    .scroll-cue { display: none; }
    .section-shell { width: min(100% - 36px, var(--content)); }
    .intro { grid-template-columns: 1fr; gap: 25px; }
    .intro-text, .story-intro > p { grid-column: auto; }
    .section-number { display: none; }
    .gallery-section { padding-top: 85px; }
    .gallery-heading { display: grid; gap: 24px; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-card { min-height: 460px; border-right: 0; border-bottom: 1px solid var(--line); }
    .monthly { gap: 60px; }
    .monthly-image, .monthly-copy { width: 100%; }
    .monthly-image::before { inset: -10px 10px 10px -10px; }
    .monthly-image > span { position: static; display: block; padding-top: 12px; }
    .aktuell-inner, .aktuell-detail, .exhibition-inner, .exhibition-detail { grid-template-columns: 1fr; }
    .aktuell-image, .aktuell-visual, .exhibition-poster { transform: none; }
    .aktuell-copy dl div, .exhibition-copy dl div, .story-facts dl div { grid-template-columns: 1fr; gap: 7px; }
    .order-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; }
    .footer-links { grid-column: auto; grid-row: auto; flex-wrap: wrap; }
    .page-hero { min-height: 62svh; padding-bottom: 60px; }
    .page-hero h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
    .gallery-tools { align-items: stretch; flex-direction: column; padding: 18px; }
    .gallery-result-status { margin: 0; white-space: normal; }
    .filter-button { flex: 1 1 calc(50% - 10px); }
    .photo-grid { grid-template-columns: 1fr; }
    .photo-card-wide { grid-column: auto; }
    .photo-card-wide .photo-open img { aspect-ratio: 1.65; }
    .video-feature { grid-template-columns: 1fr; padding: 26px; gap: 28px; }
    .gallery-youtube-prompt { align-items: flex-start; flex-direction: column; gap: 16px; padding: 24px; }
    .gallery-neighbours { grid-template-columns: 1fr; }
    .gallery-neighbour + .gallery-neighbour { border-left: 0; border-top: 1px solid var(--line); }
    .gallery-neighbour-next { align-items: flex-start; text-align: left; }
    .gallery-recommendation-grid { grid-template-columns: 1fr; }
    .gallery-recommendation-card { min-height: 330px; }
    .gallery-monthly-prompt { grid-template-columns: 1fr; gap: 28px; }
    .lightbox { padding: 76px 16px 28px; }
    .lightbox figure { width: 100%; max-height: calc(100vh - 105px); }
    .lightbox img { max-height: 58vh; }
    .lightbox-nav { top: auto; bottom: 18px; height: 48px; }
    .lightbox figcaption { flex-direction: column; gap: 12px; padding-bottom: 55px; }
    .lightbox-actions { width: 100%; justify-content: space-between; }
    .lightbox-panorama { padding: 66px 8px 12px; }
    .lightbox-panorama figure { width: 100%; max-height: calc(100vh - 78px); max-height: calc(100dvh - 78px); }
    .lightbox-panorama img { max-height: calc(100vh - 205px); max-height: calc(100dvh - 205px); }
    .story { padding-top: 80px; }
    .story-intro, .story-body { grid-template-columns: 1fr; }
    .story-image { margin: 70px 0; }
    .form-layout { grid-template-columns: 1fr; padding-top: 80px; }
    .form-row { grid-template-columns: 1fr; }
    .monthly-signup-inner { grid-template-columns: 1fr; }
    .monthly-signup-form { flex-direction: column; }
    .monthly-signup-form .button { width: 100%; }
    .prices { grid-template-columns: 1fr; }
    .prices > p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* BILD-DES-MONATS-ARCHIV: BEGIN */
.archive { padding-top: 90px; padding-bottom: 140px; }
.archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 30px; }
.archive-card { overflow: hidden; border: 1px solid var(--line); background: #121313; }
.archive-card-image { display: block; overflow: hidden; }
.archive-card-image img { aspect-ratio: 1.45; object-fit: cover; transition: transform .55s ease; }
.archive-card:hover .archive-card-image img { transform: scale(1.035); }
.archive-card-copy { padding: 30px; }
.archive-card-copy h2 { margin: 16px 0; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1; }
.archive-card-copy p, .archive-empty { color: var(--muted); line-height: 1.75; }
.archive-story-image { margin-top: 55px; }
@media (max-width: 760px) {
    .archive-grid { grid-template-columns: 1fr; }
    .archive { padding-top: 60px; padding-bottom: 90px; }
}
/* BILD-DES-MONATS-ARCHIV: END */

/* REISE-MANAGER: BEGIN */
.travel-overview-hero { min-height: 66svh; background-color: #101212; }
.travel-overview { padding-top: clamp(80px, 9vw, 130px); padding-bottom: clamp(100px, 12vw, 170px); }
.travel-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 28px; }
.travel-card { overflow: hidden; border: 1px solid var(--line); background: #121313; }
.travel-card-image { position: relative; display: block; overflow: hidden; }
.travel-card-image img { aspect-ratio: 1.55; object-fit: cover; transition: transform .65s ease, filter .4s ease; }
.travel-card:hover .travel-card-image img { transform: scale(1.035); filter: saturate(1.08); }
.travel-card-copy { padding: clamp(26px, 4vw, 42px); }
.travel-card-copy h2 { margin: 17px 0 8px; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1; }
.travel-card-copy > p:not(.travel-card-date), .travel-empty { color: var(--muted); line-height: 1.75; }
.travel-card-date { color: var(--bronze-light); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.travel-latest-badge { position: absolute; top: 18px; left: 18px; padding: 8px 12px; color: #111; background: var(--bronze-light); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.travel-detail-hero { min-height: 82svh; }
.travel-detail-hero .page-hero-content { max-width: 880px; }
.travel-hero-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 26px; color: var(--bronze-light); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.travel-intro { padding-top: 75px; padding-bottom: clamp(90px, 10vw, 150px); }
.travel-intro-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(240px, .7fr); gap: clamp(34px, 6vw, 90px); align-items: start; }
.travel-intro h2, .travel-section-heading h2, .travel-home-copy h2 { margin: 18px 0 0; font-size: clamp(2.8rem, 5.8vw, 5.6rem); line-height: .95; }
.travel-lead { margin-top: 0; color: #cbc5bb; font-size: 1.18rem; line-height: 1.85; }
.travel-overview-copy .travel-lead { margin-top: 24px; }
.travel-facts { margin: 0; padding: 30px; color: #171818; background: var(--paper-dark); }
.travel-facts div { padding: 12px 0; border-bottom: 1px solid rgba(20, 21, 21, .18); }
.travel-facts div:last-child { border-bottom: 0; }
.travel-facts dt { color: #716a60; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.travel-facts dd { margin: 5px 0 0; font-family: Georgia, serif; font-size: 1.25rem; }
.travel-section-heading { display: grid; grid-template-columns: 1fr 1.4fr; gap: 25px 60px; align-items: end; margin-bottom: 48px; }
.travel-section-heading .eyebrow { grid-column: 1 / -1; }
.travel-section-heading > p { margin: 0; color: var(--muted); text-align: right; }
.travel-route { padding-bottom: clamp(100px, 12vw, 170px); }
.travel-route-map { margin: 0; background: transparent; }
.travel-route-map img { width: auto; max-width: 100%; height: auto; max-height: 800px; margin-inline: auto; border: 1px solid var(--bronze-dark); object-fit: contain; background: transparent; }
.travel-route-map figcaption { padding: 15px 3px 2px; color: var(--muted); text-align: right; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.travel-route-stops { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 28px 0 0; padding: 0; list-style-position: inside; color: #cbc5bb; }
.travel-route-stops li::marker { color: var(--bronze); font-weight: 700; }
.travel-story { padding-top: clamp(90px, 11vw, 155px); padding-bottom: clamp(100px, 12vw, 170px); }
.travel-story-copy { max-width: 850px; margin-left: auto; }
.travel-story-copy p { color: #c3beb5; font-size: 1.06rem; line-height: 1.9; }
.travel-story-copy p + p { margin-top: 28px; }
.travel-gallery { padding-bottom: clamp(110px, 13vw, 180px); }
.travel-gallery .photo-card figcaption { display: grid; justify-content: stretch; gap: 4px; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.travel-gallery .travel-photo-date { color: var(--bronze); font-size: .72rem; letter-spacing: .08em; text-align: left; }
.travel-home-preview { padding: clamp(95px, 11vw, 155px) 0; color: #171818; background: var(--paper-dark); }
.travel-home-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.travel-home-image { position: relative; display: block; padding: 0; background: transparent; box-shadow: none; transform: rotate(-5deg); }
.travel-home-image img { position: relative; aspect-ratio: 1.45; object-fit: cover; border: 2px solid var(--bronze-dark); }
.travel-home-copy .eyebrow { color: var(--bronze-dark); }
.travel-home-copy > p { color: #57534d; line-height: 1.8; }
@media (max-width: 1000px) {
    .travel-intro-grid { grid-template-columns: 1fr 1fr; }
    .travel-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
    .travel-home-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .travel-card-grid, .travel-intro-grid, .travel-section-heading { grid-template-columns: 1fr; }
    .travel-section-heading > p { text-align: left; }
    .travel-facts { grid-column: auto; grid-template-columns: 1fr; }
    .travel-route-stops { display: grid; }
    .travel-home-image { transform: none; }
}
/* REISE-MANAGER: END */

/* BILD-DES-MONATS-DETAIL: BEGIN */
.monthly-current-hero { min-height: 52svh; padding: calc(var(--header-height) + 50px) 0 58px; }
.monthly-current-hero h1 { margin: 14px 0 10px; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.monthly-current-hero p { font-size: clamp(.95rem, 1.25vw, 1.1rem); }
.monthly-current-story { padding-top: 70px; padding-bottom: 95px; }
.monthly-current-story .story-intro { display: block; }
.monthly-current-story .story-intro h2 { margin-top: 12px; font-size: clamp(2.2rem, 4vw, 4rem); }
.monthly-current-story .story-intro .story-section-heading { font-size: clamp(1.6rem, 2.4vw, 2.4rem); }
.monthly-current-story .story-intro > p { font-size: 1rem; line-height: 1.65; }
.monthly-current-story .story-image { margin: 55px 0 65px; }
.monthly-current-story .story-image img { width: auto; max-width: 100%; height: auto; max-height: calc(100svh - 120px); margin-inline: auto; object-fit: contain; border: 1px solid var(--bronze-dark); }
.monthly-current-story .story-body { gap: clamp(38px, 6vw, 75px); }
.monthly-current-story .story-body > div > h2, .monthly-archive-story .story-body > div > h2 { font-size: clamp(1.15rem, 1.4vw, 1.3rem); line-height: 1.35; letter-spacing: .01em; }
.monthly-current-story .story-body > div > h2:first-child, .monthly-archive-story .story-body > div > h2:first-child { margin-top: clamp(45px, 6vw, 75px); }
.monthly-current-story .story-body > div > h2:not(:first-child) { margin-top: clamp(45px, 6vw, 75px); }
.monthly-current-story .story-body p { line-height: 1.7; }
.monthly-current-story .story-facts { padding: 28px; }
.monthly-current-story .story-facts dl { margin: 24px 0; }
.monthly-current-story .story-facts dl div { padding: 10px 0; }
@media (max-width: 1080px) {
    .monthly-current-story .story-intro { grid-template-columns: 1fr 1fr; }
    .monthly-current-story .story-intro > p { grid-column: auto; }
}
@media (max-width: 720px) {
    .monthly-current-hero { min-height: 48svh; padding: calc(var(--header-height) + 34px) 0 42px; }
    .monthly-current-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
    .monthly-current-story { padding-top: 55px; padding-bottom: 75px; }
    .monthly-current-story .story-intro, .monthly-current-story .story-body { grid-template-columns: 1fr; }
    .monthly-current-story .story-intro > p { grid-column: auto; }
    .monthly-current-story .story-image { margin: 42px 0 50px; }
}
/* BILD-DES-MONATS-DETAIL: END */
