/* Datei: assets/css/style.css */

/* =========================================================
   01. Root / Basis
   ========================================================= */

:root {
    --dark: #15140f;
    --dark-2: #242015;
    --green: #0f2c1c;
    --green-2: #173b28;
    --gold: #a88645;
    --gold-2: #c5a669;
    --cream: #f7f2e8;
    --cream-2: #eee5d4;
    --text: #1f1b14;
    --muted: #6f675b;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: #ffffff;
    padding: 8px 12px;
    z-index: 9999;
}

.skip-link:focus {
    left: 10px;
}


/* =========================================================
   02. Header / Navigation
   ========================================================= */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    color: #ffffff;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(21, 20, 15, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(1480px, calc(100% - 48px));
    height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.brand-text strong {
    display: block;
    font-family: "Cinzel", Georgia, serif;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0.04em;
}

.brand-text small {
    display: block;
    margin-top: 4px;
    color: #e8d8b2;
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    opacity: 0.95;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   03. Hero Slideshow
   ========================================================= */

.hero-slider {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #ffffff;
    background: #111111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.035);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.42) 43%,
        rgba(0, 0, 0, 0.18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    padding-top: 235px;
}

.eyebrow {
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin: 16px 0 20px;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 4.9vw, 72px);
    font-style: italic;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--gold-2);
}

.hero-content p:not(.eyebrow) {
    max-width: 550px;
    color: #f3eadb;
    font-size: 18px;
}

.hero-arrow {
	display: none;
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.32);
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 34px;
}

.hero-next {
    right: 34px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--gold);
}


/* =========================================================
   04. Buttons / Sections
   ========================================================= */

.section {
    padding: 70px 0;
}

.section-light {
    background: linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 34px;
    text-align: center;
}

.section-title span {
    width: 70px;
    height: 1px;
    background: var(--gold);
}

.section-title h2 {
    margin: 0;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(23px, 2.2vw, 34px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn {
    min-height: 46px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
    content: "›";
    font-size: 20px;
    line-height: 1;
}

.btn-gold {
    background: var(--gold);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(168, 134, 69, 0.28);
}

.btn-gold:hover {
    background: var(--gold-2);
    transform: translateY(-1px);
}

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

.center {
    display: flex;
    justify-content: center;
    text-align: center;
}


/* =========================================================
   05. Startseite Kategorien
   ========================================================= */

.category-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.category-card {
    min-height: 430px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: #17150f;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.17);
}

.category-card img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card-content {
    min-height: 215px;
    padding: 24px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(36, 32, 21, 0.94), rgba(21, 20, 15, 0.98));
}

.category-card h3 {
    margin: 0 0 12px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 20px;
    line-height: 1.35;
    text-transform: uppercase;
}

.category-card p {
    margin: 0 0 18px;
    color: #e6ded0;
    font-size: 15px;
    line-height: 1.65;
}

.category-card span {
    margin-top: auto;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}


/* =========================================================
   06. Startseite Video Intro
   ========================================================= */

.video-intro-section {
    padding: 82px 0;
    background: linear-gradient(180deg, #fffaf0 0%, #f7f2e8 100%);
}

.video-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: center;
}

.video-intro-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(168, 134, 69, 0.32);
    border-radius: var(--radius);
    background: #16130e;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.video-intro-media::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(216, 179, 106, 0.42);
    pointer-events: none;
}

.video-intro-player {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.video-open-hint {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 4;
    padding: 10px 16px;
    background: rgba(168, 134, 69, 0.94);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.video-open-hint::after {
    content: " ↗";
}

.video-intro-media:hover .video-open-hint {
    opacity: 1;
    transform: translateY(0);
}

.video-intro-content h2 {
    margin: 12px 0 20px;
    color: #1f1b14;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.18;
}

.video-intro-content p:not(.eyebrow) {
    margin: 0 0 16px;
    color: #4a4135;
    font-size: 16px;
    line-height: 1.8;
}

.video-intro-content .btn {
    margin-top: 14px;
}


/* =========================================================
   07. Video Modal
   ========================================================= */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}

.video-modal-box {
    position: relative;
    z-index: 2;
    width: min(1180px, 96vw);
    padding: 14px;
    border: 1px solid rgba(216, 179, 106, 0.55);
    background: #11100c;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.video-modal-box::before {
    content: "";
    position: absolute;
    inset: 26px;
    z-index: 3;
    border: 1px solid rgba(216, 179, 106, 0.32);
    pointer-events: none;
}

.video-modal-player {
    width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
    background: #000000;
}

.video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(216, 179, 106, 0.72);
    border-radius: 50%;
    background: #17140f;
    color: #f6efe2;
    font-size: 30px;
    line-height: 38px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
    background: #d8b36a;
    color: #17140f;
    transform: scale(1.04);
}

.video-modal-open {
    overflow: hidden;
}


/* =========================================================
   08. Vorschau Galerie Startseite
   ========================================================= */

.preview-gallery {
    max-width: 960px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.preview-gallery a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.preview-gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.preview-gallery a:hover img {
    transform: scale(1.05);
}


/* =========================================================
   09. Unterseiten
   ========================================================= */

.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.25));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 150px 0 70px;
}

.page-hero h1 {
    margin: 8px 0 12px;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 4.6vw, 64px);
}

.page-hero p:not(.eyebrow) {
    max-width: 650px;
    color: #f0e6d3;
    font-size: 18px;
}

.two-col {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 34px;
    align-items: start;
}

.content-card,
.side-card {
    padding: 34px;
    border: 1px solid rgba(168, 134, 69, 0.22);
    background: #fffaf0;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.side-card {
    position: sticky;
    top: 116px;
    background: #19170f;
    color: #ffffff;
}

.prose h1,
.prose h2,
.side-card h3 {
    margin-top: 0;
    font-family: "Cinzel", Georgia, serif;
}

.prose p {
    color: #40392f;
}

.side-card p {
    color: #e6ded0;
}

.page-placeholder {
    min-height: 60vh;
    padding-top: 140px;
}


/* =========================================================
   10. Bildergalerie / Downloads / Formular
   ========================================================= */

.gallery-filter {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-filter button {
    padding: 10px 16px;
    border: 1px solid rgba(168, 134, 69, 0.5);
    border-radius: 2px;
    background: #fffaf0;
    color: #2c2419;
    font-weight: 800;
    cursor: pointer;
}

.gallery-filter button.is-active,
.gallery-filter button:hover {
    background: var(--dark);
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-grid.small-grid {
    grid-template-columns: repeat(2, minmax(220px, 360px));
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #dddddd;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.is-hidden {
    display: none;
}

.download-grid {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.download-card {
    padding: 22px;
    border: 1px solid rgba(168, 134, 69, 0.35);
    background: #fffaf0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-radius:10px;
}

.download-card strong {
    display: block;
    font-family: "Cinzel", Georgia, serif;
}

.download-card span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    color: #2b241a;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border: 1px solid rgba(168, 134, 69, 0.38);
    background: #ffffff;
    font: inherit;
}


/* =========================================================
   11. SweetAlert Lightbox
   ========================================================= */

.rg-lightbox {
    max-width: 94vw !important;
    padding: 10px !important;
    background: #15140f !important;
}

.rg-lightbox .swal2-image {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 82vh !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
}

.swal2-close {
    color: #f6efe2 !important;
}


/* =========================================================
   12. Footer
   ========================================================= */

.site-footer {
    padding: 46px 0 24px;
    border-top: 1px solid rgba(216, 179, 106, 0.42);
    background:
        radial-gradient(circle at 14% 18%, rgba(216, 179, 106, 0.075), transparent 28%),
        linear-gradient(135deg, #17140f 0%, #211d14 55%, #11100c 100%);
    color: #f6efe2;
}

.site-footer .footer-inner {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1.3fr 1fr 0.82fr 1fr;
    gap: 42px;
    align-items: start;
}

.site-footer .footer-block h3,
.site-footer .footer-block h4 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.04em;
}

.site-footer .footer-block h3 {
    color: #fff8e8;
    font-size: 24px;
    line-height: 1.25;
}

.site-footer .footer-block h4 {
    color: #d8b36a;
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase;
}

.site-footer .footer-block p {
    margin: 0 0 9px;
    color: rgba(246, 239, 226, 0.84);
    font-size: 14px;
    line-height: 1.65;
}

.site-footer .footer-block a {
    color: rgba(246, 239, 226, 0.9);
    text-decoration: none;
    transition: color 0.22s ease;
}

.site-footer .footer-block a:hover {
    color: #d8b36a;
}

.site-footer .footer-logo-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.site-footer .footer-logo-large {
    width: 150px;
    height: 225px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
}

.site-footer .footer-brand .footer-small {
    margin-top: 18px;
    color: rgba(216, 179, 106, 0.92);
    font-size: 13px;
    letter-spacing: 0.03em;
}

.site-footer .footer-contact a,
.site-footer .footer-block p a {
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer .footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
}

.site-footer .footer-social {
    min-width: 180px;
}

.site-footer .social-icons {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.site-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(246, 239, 226, 0.92);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer .social-icons a:hover {
    transform: translateY(-1px);
}

.site-footer .social-icons svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border: 1px solid rgba(216, 179, 106, 0.62);
    border-radius: 50%;
    fill: #d8b36a;
    background: rgba(255, 255, 255, 0.025);
    transition:
        fill 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.site-footer .social-icons a:first-child:hover {
    color: #e4405f !important;
}

.site-footer .social-icons a:first-child:hover svg {
    fill: #ffffff !important;
    background: #e4405f !important;
    border-color: #e4405f !important;
    box-shadow: 0 8px 22px rgba(228, 64, 95, 0.35);
}

.site-footer .social-icons a:nth-child(2):hover {
    color: #ff0000 !important;
}

.site-footer .social-icons a:nth-child(2):hover svg {
    fill: #ffffff !important;
    background: #ff0000 !important;
    border-color: #ff0000 !important;
    box-shadow: 0 8px 22px rgba(255, 0, 0, 0.35);
}

.site-footer .footer-bottom {
    width: min(1440px, calc(100% - 64px));
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(246, 239, 226, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer .footer-copyright,
.site-footer .developer-credit {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: rgba(246, 239, 226, 0.66) !important;
    font-size: 13px !important;
    line-height: 1.5;
}

.site-footer .footer-copyright {
    text-align: left;
}

.site-footer .developer-credit {
    text-align: right;
    white-space: nowrap;
}

.site-footer .developer-credit a {
    display: inline;
    margin-left: 4px;
    color: #d8b36a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer .developer-credit a:hover {
    color: #f0cf86;
}


/* =========================================================
   13. Responsive
   ========================================================= */

@media (min-width: 1441px) {
    .header-inner {
        height: 104px;
    }

    .hero-slider {
        min-height: 820px;
    }
}

@media (max-width: 1366px) {
    .header-inner {
        width: min(1240px, calc(100% - 36px));
        height: 82px;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .brand-text strong {
        font-size: 22px;
    }

    .main-nav {
        gap: 14px;
        font-size: 12px;
    }

    .hero-slider {
        min-height: 660px;
    }
}

@media (max-width: 1280px) {
    .video-intro-grid {
        gap: 38px;
    }

    .video-intro-player {
        height: 440px;
    }

    .site-footer .footer-inner {
        width: min(1240px, calc(100% - 48px));
        grid-template-columns: 130px 1.2fr 1fr 0.78fr 0.95fr;
        gap: 30px;
    }

    .site-footer .footer-logo-large {
        width: 130px;
        height: 195px;
    }

    .site-footer .footer-bottom {
        width: min(1240px, calc(100% - 48px));
    }
}

@media (max-width: 980px) {
    .site-footer .footer-inner {
        width: min(760px, calc(100% - 40px));
        grid-template-columns: 130px 1fr 1fr;
        gap: 30px 34px;
    }

    .site-footer .footer-social {
        grid-column: 2 / span 2;
    }

    .site-footer .footer-bottom {
        width: min(760px, calc(100% - 40px));
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 28px, 720px);
    }

    .header-inner {
        width: calc(100% - 24px);
        height: 74px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        font-size: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 74px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: rgba(21, 20, 15, 0.98);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-slider {
        min-height: 610px;
    }

    .hero-content {
        padding-top: 160px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .hero-prev {
        left: 14px;
    }

    .hero-next {
        right: 14px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title span {
        width: 38px;
    }

    .category-grid,
    .preview-gallery,
    .gallery-grid,
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        gap: 18px;
    }

    .category-card {
        min-height: auto;
    }

    .category-card img {
        height: 180px;
    }

    .preview-gallery img {
        height: 210px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .side-card {
        position: static;
    }

    .video-intro-section {
        padding: 60px 0;
    }

    .video-intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .video-intro-player {
        height: 420px;
    }
}

@media (max-width: 680px) {
    .video-open-hint {
        display: none !important;
    }

    .video-intro-media {
        cursor: default;
    }

    .video-modal {
        padding: 18px;
    }

    .video-modal-box {
        width: 100%;
        padding: 8px;
    }

    .video-modal-close {
        top: -14px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .site-footer {
        padding: 36px 0 22px;
    }

    .site-footer .footer-inner {
        width: min(100% - 34px, 520px);
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .site-footer .footer-logo-block {
        justify-content: center;
    }

    .site-footer .footer-logo-large {
        width: 130px;
        height: 195px;
        margin: 0 auto;
    }

    .site-footer .footer-social {
        grid-column: auto;
    }

    .site-footer .social-icons {
        align-items: center;
    }

    .site-footer .social-icons a {
        justify-content: center;
    }

    .site-footer .footer-bottom {
        width: min(100% - 34px, 520px);
        margin-top: 28px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .site-footer .footer-copyright,
    .site-footer .developer-credit {
        text-align: center;
    }

    .site-footer .developer-credit {
        white-space: normal;
    }

    .site-footer .developer-credit a {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .brand-text strong {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p:not(.eyebrow) {
        font-size: 15px;
    }

    .btn {
        width: 100%;
    }

    .category-grid,
    .preview-gallery,
    .gallery-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid.small-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: auto;
    }

    .category-card img {
        height: 220px;
    }

    .preview-gallery img {
        height: 230px;
    }

    .content-card,
    .side-card {
        padding: 22px;
    }

    .page-hero {
        min-height: 340px;
    }

    .page-hero-content {
        padding: 120px 0 42px;
    }

    .video-intro-section {
        padding: 46px 0;
    }

    .video-intro-player {
        height: 300px;
    }

    .video-intro-media::before {
        inset: 9px;
    }

    .rg-lightbox {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        padding: 8px !important;
    }

    .rg-lightbox .swal2-image {
        max-width: 100% !important;
        max-height: 72vh !important;
        object-fit: contain !important;
    }

    .swal2-close {
        font-size: 34px !important;
    }
}


/* =========================================================
   Image Modal / Lightbox ohne SweetAlert
   ========================================================= */

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.image-modal.is-open {
    display: flex;
}

.image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(8px);
}

.image-modal-box {
    position: relative;
    z-index: 2;
    width: min(1100px, 94vw);
    height: min(82vh, 850px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid rgba(216, 179, 106, 0.55);
    background: #11100c;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.image-modal-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(216, 179, 106, 0.72);
    border-radius: 50%;
    background: #17140f;
    color: #f6efe2;
    font-size: 30px;
    line-height: 38px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.image-modal-close:hover {
    background: #d8b36a;
    color: #17140f;
}

.image-modal-open {
    overflow: hidden;
}

/* Mobile Bildgröße sauber begrenzen */
@media (max-width: 680px) {
    .image-modal {
        padding: 14px;
    }

    .image-modal-box {
        width: calc(100vw - 28px);
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        padding: 8px;
    }

    .image-modal-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .image-modal-close {
        top: -12px;
        right: -8px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* =========================================================
   Historisches Seite
   ========================================================= */

.historical-section {
    padding: 78px 0 86px;
}

.historical-text-card {
    max-width: 1180px;
    margin: 0 auto 58px;
    padding: 54px 62px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.historical-text-card h2 {
    max-width: 880px;
    margin: 12px 0 28px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 26px;
    line-height: 1.16;
    color: #1f1b14;
}

.historical-prose {
    max-width: 980px;
}

.historical-prose p {
    margin: 0 0 20px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.9;
}

.historical-prose h3 {
    margin: 38px 0 18px;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.2;
    color: #1f1b14;
}

.historical-image-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.historical-image-wrap a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.historical-image-wrap img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.historical-image-wrap a:hover img {
    transform: scale(1.025);
}

/* Historisches Responsive */
@media (max-width: 900px) {
    .historical-section {
        padding: 58px 0 64px;
    }

    .historical-text-card {
        padding: 38px 34px;
        margin-bottom: 40px;
    }

    .historical-prose p {
        font-size: 16px;
        line-height: 1.8;
    }

    .historical-image-wrap img {
        height: 620px;
    }
}

@media (max-width: 560px) {
    .historical-section {
        padding: 44px 0 52px;
    }

    .historical-text-card {
        padding: 28px 22px;
    }

    .historical-text-card h2 {
        font-size: 24px;
    }

    .historical-prose p {
        font-size: 15px;
        line-height: 1.75;
    }

    .historical-image-wrap img {
        height: 360px;
    }
}

/* =========================================================
   Aktuelles Seite
   ========================================================= */

.news-section {
    padding: 78px 0 90px;
}

.news-card {
    max-width: 1180px;
    margin: 0 auto 54px;
    padding: 46px 52px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.news-card-featured {
    border-color: rgba(216, 179, 106, 0.45);
    background:
        radial-gradient(circle at top right, rgba(216, 179, 106, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(255, 250, 240, 0.99), rgba(247, 242, 232, 0.96));
}

.news-date {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.news-card h2 {
    max-width: 980px;
    margin: 0 0 24px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.18;
    color: #1f1b14;
}

.news-prose {
    max-width: 980px;
}

.news-prose p {
    margin: 0 0 18px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.85;
}

.news-prose strong {
    color: #1f1b14;
}

.news-prose a {
    color: var(--gold);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.news-prose blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--gold);
    background: rgba(168, 134, 69, 0.08);
    color: #3d352b;
    font-size: 16px;
    line-height: 1.8;
}

.news-download-box {
    margin-top: 30px;
    padding: 24px;
    border: 1px solid rgba(168, 134, 69, 0.32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.42);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.news-download-box strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Cinzel", Georgia, serif;
    color: #1f1b14;
    font-size: 18px;
}

.news-download-box span {
    display: block;
    color: #6f675b;
    font-size: 14px;
}

.news-claim {
    margin-top: 24px !important;
    color: var(--gold) !important;
    font-family: "Cinzel", Georgia, serif;
    font-size: 24px !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-main-image,
.news-two-images,
.news-four-images {
    margin-top: 34px;
}

.news-main-image a,
.news-two-images a,
.news-four-images a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.news-main-image img,
.news-two-images img,
.news-four-images img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-main-image img {
    height: 750px;
}

.news-two-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.news-two-images img {
    height: 300px;
}

.news-four-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.news-four-images img {
    height: 300px;
}

.news-main-image a:hover img,
.news-two-images a:hover img,
.news-four-images a:hover img {
    transform: scale(1.025);
}

/* Aktuelles Responsive */
@media (max-width: 900px) {
    .news-section {
        padding: 58px 0 66px;
    }

    .news-card {
        padding: 38px 34px;
        margin-bottom: 40px;
    }

    .news-prose p {
        font-size: 16px;
        line-height: 1.78;
    }

    .news-download-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-main-image img {
        height: 620px;
    }

    .news-two-images img,
    .news-four-images img {
        height: 420px;
    }
}

@media (max-width: 560px) {
    .news-section {
        padding: 44px 0 52px;
    }

    .news-card {
        padding: 28px 22px;
    }

    .news-card h2 {
        font-size: 24px;
    }

    .news-prose p {
        font-size: 15px;
        line-height: 1.75;
    }

    .news-prose blockquote {
        padding: 20px;
        font-size: 15px;
    }

    .news-download-box {
        padding: 20px;
    }

    .news-two-images,
    .news-four-images {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .news-main-image img {
        height: 360px;
    }

    .news-two-images img,
    .news-four-images img {
        height: 360px;
    }
}

/* =========================================================
   Heiraten Seite - moderne Textblöcke + Bilder
   ========================================================= */

.wedding-page {
    padding: 78px 0 90px;
}

.wedding-top-text {
    max-width: 1080px;
    margin: 0 auto 72px;
}

.wedding-top-text h2 {
    margin: 12px 0 28px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.wedding-top-text p {
    margin: 0 0 18px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.85;
}

.wedding-instagram-btn {
    margin-top: 16px;
}

.wedding-main-title {
    margin-bottom: 46px;
}

.wedding-main-title h2 {
    font-size: 38px;
}

.wedding-offer-block {
    max-width: 1180px;
    margin: 0 auto 64px;
    padding: 38px;
    border: 1px solid rgba(168, 134, 69, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 242, 232, 0.96));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

.wedding-offer-two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.wedding-offer-text h3 {
    margin: 0 0 20px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.25;
    color: #1f1b14;
}

.wedding-offer-text p {
    margin: 0 0 18px;
    color: #3f372e;
    font-size: 16px;
    line-height: 1.8;
}

.wedding-offer-text ul {
    margin: 0 0 24px 18px;
    padding: 0;
}

.wedding-offer-text li {
    margin-bottom: 12px;
    color: #3f372e;
    font-size: 16px;
    line-height: 1.75;
}

.wedding-image-row {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.wedding-image-row a,
.wedding-offer-image a,
.wedding-collage a,
.wedding-youtube-preview {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}

.wedding-image-row img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wedding-offer-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wedding-image-row a:hover img,
.wedding-offer-image a:hover img,
.wedding-collage a:hover img,
.wedding-youtube-preview:hover img {
    transform: scale(1.025);
}

.wedding-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.wedding-collage img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wedding-collage a:nth-child(1),
.wedding-collage a:nth-child(2) {
    grid-row: span 2;
}

.wedding-collage a:nth-child(1) img,
.wedding-collage a:nth-child(2) img {
    height: 430px;
}

.wedding-youtube-block {
    max-width: 1200px;
    margin: 30px auto 0;
}

.wedding-youtube-preview {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.wedding-youtube-preview img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.wedding-youtube-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(210, 0, 0, 0.95);
    color: #ffffff;
    font-size: 42px;
    line-height: 92px;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

/* Heiraten Responsive */
@media (max-width: 900px) {
    .wedding-page {
        padding: 58px 0 66px;
    }

    .wedding-top-text {
        margin-bottom: 52px;
    }

    .wedding-offer-block {
        padding: 30px;
        margin-bottom: 42px;
    }

    .wedding-offer-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .wedding-image-row img,
    .wedding-offer-image img,
    .wedding-collage img,
    .wedding-collage a:nth-child(1) img,
    .wedding-collage a:nth-child(2) img {
        height: 320px;
    }

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

    .wedding-youtube-preview img {
        height: 420px;
    }
}

@media (max-width: 560px) {
    .wedding-page {
        padding: 44px 0 52px;
    }

    .wedding-top-text h2,
    .wedding-offer-text h3 {
        font-size: 24px;
    }

    .wedding-main-title h2 {
        font-size: 30px;
    }

    .wedding-top-text p,
    .wedding-offer-text p,
    .wedding-offer-text li {
        font-size: 15px;
        line-height: 1.72;
    }

    .wedding-offer-block {
        padding: 24px 20px;
    }

    .wedding-image-row,
    .wedding-collage {
        grid-template-columns: 1fr;
    }

    .wedding-image-row img,
    .wedding-offer-image img,
    .wedding-collage img,
    .wedding-collage a:nth-child(1) img,
    .wedding-collage a:nth-child(2) img {
        height: 300px;
    }

    .wedding-youtube-preview img {
        height: 230px;
    }

    .wedding-youtube-play {
        width: 68px;
        height: 68px;
        font-size: 30px;
        line-height: 68px;
    }
}

/* Heiraten - Weiteres Bild ruhiger darstellen */
.wedding-offer-block .wedding-offer-image img {
    height: 560px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .wedding-offer-block .wedding-offer-image img {
        height: 420px;
    }
}

@media (max-width: 560px) {
    .wedding-offer-block .wedding-offer-image img {
        height: 300px;
    }
}


/* =========================================================
   Gästehaus Seite
   ========================================================= */

.guesthouse-section {
    padding: 78px 0 90px;
}

.guesthouse-text-card {
    max-width: 1180px;
    margin: 0 auto 58px;
    padding: 54px 62px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.guesthouse-text-card h2 {
    max-width: 980px;
    margin: 12px 0 28px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.guesthouse-prose {
    max-width: 980px;
}

.guesthouse-prose p {
    margin: 0 0 20px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.9;
}

.guesthouse-prose strong {
    color: #1f1b14;
}

.guesthouse-prose h3 {
    margin: 38px 0 18px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.guesthouse-main-image {
    width: min(1200px, 100%);
    margin: 0 auto 70px;
}

.guesthouse-main-image a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.guesthouse-main-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.guesthouse-main-image a:hover img {
    transform: scale(1.025);
}

.guesthouse-gallery-title {
    margin-bottom: 34px;
}

.guesthouse-gallery-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.guesthouse-gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}

.guesthouse-gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.guesthouse-gallery-grid a:hover img {
    transform: scale(1.04);
}

/* Gästehaus Responsive */
@media (max-width: 900px) {
    .guesthouse-section {
        padding: 58px 0 66px;
    }

    .guesthouse-text-card {
        padding: 38px 34px;
        margin-bottom: 42px;
    }

    .guesthouse-prose p {
        font-size: 16px;
        line-height: 1.8;
    }

    .guesthouse-main-image {
        margin-bottom: 52px;
    }

    .guesthouse-main-image img {
        height: 520px;
    }

    .guesthouse-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .guesthouse-gallery-grid img {
        height: 280px;
    }
}

@media (max-width: 560px) {
    .guesthouse-section {
        padding: 44px 0 52px;
    }

    .guesthouse-text-card {
        padding: 28px 22px;
    }

    .guesthouse-text-card h2,
    .guesthouse-prose h3 {
        font-size: 24px;
    }

    .guesthouse-prose p {
        font-size: 15px;
        line-height: 1.75;
    }

    .guesthouse-main-image img {
        height: 340px;
    }

    .guesthouse-gallery-grid {
        grid-template-columns: 1fr;
    }

    .guesthouse-gallery-grid img {
        height: 300px;
    }
}



/* =========================================================
   Sonstige Angebote Seite
   ========================================================= */

.offers-section {
    padding: 78px 0 90px;
}

.offers-text-card {
    max-width: 1180px;
    margin: 0 auto 58px;
    padding: 54px 62px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.offers-text-card h2 {
    max-width: 920px;
    margin: 12px 0 28px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.offers-prose {
    max-width: 980px;
}

.offers-prose p {
    margin: 0 0 20px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.9;
}

.offers-list-grid {
    margin: 26px 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.offers-list-grid ul {
    margin: 0;
    padding: 26px 30px 24px 48px;
    border: 1px solid rgba(168, 134, 69, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.42);
}

.offers-list-grid li {
    margin-bottom: 12px;
    color: #3f372e;
    font-size: 16px;
    line-height: 1.7;
}

.offers-text-card .btn {
    margin-top: 10px;
}

.offers-main-image {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.offers-main-image a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.offers-main-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.offers-main-image a:hover img {
    transform: scale(1.025);
}

/* Sonstige Angebote Responsive */
@media (max-width: 900px) {
    .offers-section {
        padding: 58px 0 66px;
    }

    .offers-text-card {
        padding: 38px 34px;
        margin-bottom: 42px;
    }

    .offers-prose p {
        font-size: 16px;
        line-height: 1.8;
    }

    .offers-list-grid {
        grid-template-columns: 1fr;
    }

    .offers-main-image img {
        height: 520px;
    }
}

@media (max-width: 560px) {
    .offers-section {
        padding: 44px 0 52px;
    }

    .offers-text-card {
        padding: 28px 22px;
    }

    .offers-text-card h2 {
        font-size: 24px;
    }

    .offers-prose p,
    .offers-list-grid li {
        font-size: 15px;
        line-height: 1.75;
    }

    .offers-list-grid ul {
        padding: 22px 22px 20px 38px;
    }

    .offers-main-image img {
        height: 340px;
    }
}

/* =========================================================
   Architektur Seite
   ========================================================= */

.architecture-section {
    padding: 78px 0 90px;
}

.architecture-text-card {
    max-width: 1180px;
    margin: 0 auto 58px;
    padding: 54px 62px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.architecture-text-card h2 {
    max-width: 920px;
    margin: 12px 0 28px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.architecture-prose {
    max-width: 1000px;
}

.architecture-prose p {
    margin: 0 0 20px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.9;
}

.architecture-main-image {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.architecture-main-image a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.architecture-main-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.architecture-main-image a:hover img {
    transform: scale(1.025);
}

/* Architektur Responsive */
@media (max-width: 900px) {
    .architecture-section {
        padding: 58px 0 66px;
    }

    .architecture-text-card {
        padding: 38px 34px;
        margin-bottom: 42px;
    }

    .architecture-prose p {
        font-size: 16px;
        line-height: 1.8;
    }

    .architecture-main-image img {
        height: 520px;
    }
}

@media (max-width: 560px) {
    .architecture-section {
        padding: 44px 0 52px;
    }

    .architecture-text-card {
        padding: 28px 22px;
    }

    .architecture-text-card h2 {
        font-size: 24px;
    }

    .architecture-prose p {
        font-size: 15px;
        line-height: 1.75;
    }

    .architecture-main-image img {
        height: 340px;
    }
}

/* =========================================================
   Anhänge & Artikel - Bilder 600 x 400
   ========================================================= */

.article-image-grid {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 600px);
    gap: 32px;
    justify-content: center;
}

.article-image-item {
    display: block;
    width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.article-image-item img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.article-image-item:hover img {
    transform: scale(1.035);
}

/* Tablet */
@media (max-width: 1280px) {
    .article-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .article-image-item,
    .article-image-item img {
        width: 100%;
        height: 360px;
    }
}

/* Handy */
@media (max-width: 680px) {
    .article-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-image-item,
    .article-image-item img {
        width: 100%;
        height: 260px;
    }
}

/* Anhänge & Artikel - Downloadkarten gleichmäßig */
.download-card {
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-card strong {
    display: block;
    min-height: 48px;
}

.download-card span {
    display: block;
    margin-top: auto;
}


/* =========================================================
   Bildergalerie Seite - Hochzeiten / Gästehaus / Hofgut
   ========================================================= */

.gallery-page-section {
    padding: 78px 0 90px;
}

.gallery-grid-clean {
    max-width: 1240px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gallery-grid-clean .gallery-item {
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}

.gallery-grid-clean .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-grid-clean .gallery-item:hover img {
    transform: scale(1.04);
}

/* Tablet */
@media (max-width: 900px) {
    .gallery-page-section {
        padding: 58px 0 66px;
    }

    .gallery-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .gallery-grid-clean .gallery-item img {
        height: 280px;
    }
}

/* Handy */
@media (max-width: 560px) {
    .gallery-page-section {
        padding: 44px 0 52px;
    }

    .gallery-grid-clean {
        grid-template-columns: 1fr;
    }

    .gallery-grid-clean .gallery-item img {
        height: 300px;
    }
}


/* =========================================================
   Über uns Seite
   ========================================================= */

.about-section {
    padding: 78px 0 90px;
}

.about-text-card {
    max-width: 1180px;
    margin: 0 auto 58px;
    padding: 54px 62px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.about-second-card {
    margin-top: 70px;
}

.about-text-card h2 {
    max-width: 920px;
    margin: 12px 0 28px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.about-prose {
    max-width: 980px;
}

.about-prose p {
    margin: 0 0 20px;
    color: #3f372e;
    font-size: 17px;
    line-height: 1.9;
}

.about-prose strong {
    color: #1f1b14;
}

/* Slider 900 x 600 */
.about-slider-wrap {
    position: relative;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.75s ease;
}

.about-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-arrow {
	display:none;
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(216, 179, 106, 0.72);
    border-radius: 50%;
    background: rgba(21, 20, 15, 0.82);
    color: #f6efe2;
    font-size: 34px;
    line-height: 40px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-slider-arrow:hover {
    background: #d8b36a;
    color: #17140f;
}

.about-slider-prev {
    left: -22px;
}

.about-slider-next {
    right: -22px;
}

.about-slider-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.about-slider-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(168, 134, 69, 0.35);
    cursor: pointer;
}

.about-slider-dots button.is-active {
    background: var(--gold);
}

.about-main-image {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-main-image a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.about-main-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-main-image a:hover img {
    transform: scale(1.025);
}

.about-final-claim {
    max-width: 1180px;
    margin: 46px auto 0;
    padding: 34px 28px;
    border: 1px solid rgba(168, 134, 69, 0.28);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top right, rgba(216, 179, 106, 0.13), transparent 38%),
        linear-gradient(135deg, rgba(255, 250, 240, 0.99), rgba(247, 242, 232, 0.96));
    color: #1f1b14;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

/* Über uns Responsive */
@media (max-width: 900px) {
    .about-section {
        padding: 58px 0 66px;
    }

    .about-text-card {
        padding: 38px 34px;
        margin-bottom: 42px;
    }

    .about-prose p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-slider {
        height: 520px;
    }

    .about-slider-prev {
        left: 12px;
    }

    .about-slider-next {
        right: 12px;
    }

    .about-main-image img {
        height: 520px;
    }
}

@media (max-width: 560px) {
    .about-section {
        padding: 44px 0 52px;
    }

    .about-text-card {
        padding: 28px 22px;
    }

    .about-text-card h2 {
        font-size: 24px;
    }

    .about-prose p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-slider {
        height: 340px;
    }

    .about-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .about-main-image img {
        height: 340px;
    }

    .about-final-claim {
        padding: 26px 20px;
        font-size: 24px;
    }
}



/* =========================================================
   Kontaktseite - Formular + Google Maps
   ========================================================= */

.contact-section {
    padding: 78px 0 90px;
}

.contact-layout-new {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
    gap: 34px;
    align-items: stretch;
}

.contact-form-card {
    padding: 48px 52px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    margin: 10px 0 30px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1f1b14;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #1f1b14;
    font-weight: 700;
    font-size: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(168, 134, 69, 0.34);
    border-radius: 10px;
    background: #fffdf8;
    color: #1f1b14;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}



.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(184, 147, 69, 0.85);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184, 147, 69, 0.14);
}

.captcha-row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    align-items: end;
}

.captcha-image {
    min-height: 78px;
    padding: 13px;
    border: 1px solid rgba(168, 134, 69, 0.34);
    border-radius: 10px;
    background: #fffdf8;
    display: flex;
    
    justify-content: center;
}

.captcha-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-submit {
    width: 100%;
    margin-top: 4px;
    justify-content: center;
}

.form-error-box {
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(170, 49, 49, 0.22);
    border-radius: 10px;
    background: rgba(170, 49, 49, 0.08);
    color: #7e1f1f;
    font-weight: 700;
}

.contact-map-card {
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background: #17150f;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.1);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Kontakt Responsive */
@media (max-width: 980px) {
    .contact-layout-new {
        grid-template-columns: 1fr;
    }

    .contact-map-card {
        min-height: 460px;
    }
}

@media (max-width: 680px) {
    .contact-section {
        padding: 44px 0 52px;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .contact-form-card h2 {
        font-size: 24px;
    }

    .form-row.two-cols,
    .captcha-row {
        grid-template-columns: 1fr;
    }

    .captcha-image {
        justify-content: flex-start;
    }

    .contact-map-card {
        min-height: 360px;
    }
}

/* =========================================================
   Kontaktseite FINAL Override - 3 Felder pro Reihe
   ========================================================= */

.contact-form-card.contact-form-wide {
    width: min(1200px, 100%) !important;
    margin: 0 auto 34px !important;
}

.contact-form .form-row.three-cols {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    width: 100% !important;
}

.contact-form .form-row.three-cols label {
    width: 100% !important;
    margin: 0 !important;
}

.contact-form .form-row.three-cols input,
.contact-form .form-row.three-cols select {
    width: 100% !important;
}

.contact-form .message-field {
    width: min(1200px, 100%) !important;
}

.contact-form .message-field textarea {
    width: 100% !important;
    height: 175px !important;
}

.contact-captcha-row {
    display: grid !important;
    grid-template-columns: 220px 320px !important;
    gap: 20px !important;
    align-items: end !important;
}

.contact-submit {
    width: 360px !important;
    max-width: 100% !important;
}

/* Google Map unten */
.contact-map-wide {
    width: min(1200px, 100%) !important;
    height: 400px !important;
    margin: 0 auto !important;
}

/* Tablet */
@media (max-width: 980px) {
    .contact-form .form-row.three-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Handy */
@media (max-width: 680px) {
    .contact-form .form-row.three-cols,
    .contact-captcha-row {
        grid-template-columns: 1fr !important;
    }

    .contact-submit {
        width: 100% !important;
    }

    .contact-map-wide {
        height: 320px !important;
    }
}

/* =========================================================
   Kontaktseite FINAL - gleiche Feldhöhen
   ========================================================= */

.contact-form input,
.contact-form select {
    height: 58px !important;
    min-height: 58px !important;
    box-sizing: border-box !important;
}

.contact-form input[type="date"] {
    height: 58px !important;
    min-height: 58px !important;
    line-height: 58px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.contact-captcha-row {
    align-items: end !important;
}

.captcha-image {
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
}

.captcha-image img {
   
    width: auto !important;
}

.captcha-code-field input {
    height: 58px !important;
    min-height: 58px !important;
}

/* Heiraten - YouTube Vorschau */
.wedding-youtube-preview {
    position: relative;
    display: block;
    width: min(1200px, 100%);
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: #17140f;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.wedding-youtube-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.wedding-youtube-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.18);
}

.wedding-youtube-preview:hover img {
    transform: scale(1.025);
    opacity: 0.94;
}

.wedding-youtube-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #e00000;
    color: #ffffff;
    font-size: 42px;
    line-height: 92px;
    text-align: center;
    padding-left: 6px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
    .wedding-youtube-preview {
        height: 440px;
    }
}

@media (max-width: 560px) {
    .wedding-youtube-preview {
        height: 260px;
    }

    .wedding-youtube-play {
        width: 68px;
        height: 68px;
        font-size: 32px;
        line-height: 68px;
    }
}

/* =========================================================
   Header Navigation - mehr Menüpunkte sauber anzeigen
   ========================================================= */

.main-nav {
    gap: 18px;
}

.main-nav a {
    white-space: nowrap;
    font-size: 14px;
    padding: 8px 0;
}

.header-inner {
    gap: 22px;
}

/* Bei kleineren Laptops noch kompakter */
@media (max-width: 1220px) {
    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        font-size: 12px;
    }
}

/* =========================================================
   Rechtliche Seiten - Impressum & Datenschutz
   ========================================================= */

.legal-section {
    padding: 78px 0 90px;
}

.legal-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 64px;
    border: 1px solid rgba(168, 134, 69, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.legal-card h2 {
    margin: 0 0 22px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    line-height: 1.25;
    color: #1f1b14;
}

.legal-card h2:not(:first-child) {
    margin-top: 46px;
}

.legal-card h3 {
    margin: 34px 0 14px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    line-height: 1.3;
    color: #1f1b14;
}

.legal-card p,
.legal-card li {
    color: #3f372e;
    font-size: 16px;
    line-height: 1.85;
}

.legal-card p {
    margin: 0 0 18px;
}

.legal-card ul {
    margin: 0 0 24px 22px;
    padding: 0;
}

.legal-card a {
    color: #8f6f2c;
    font-weight: 700;
    text-decoration: none;
}

.legal-card a:hover {
    color: #1f1b14;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 48px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(168, 134, 69, 0.22);
    color: #7a6b5b !important;
    font-size: 14px !important;
}

@media (max-width: 760px) {
    .legal-section {
        padding: 44px 0 52px;
    }

    .legal-card {
        padding: 30px 22px;
    }

    .legal-card h2 {
        font-size: 24px;
    }

    .legal-card h3 {
        font-size: 19px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 15px;
        line-height: 1.75;
    }
}

