/* ── HEADER ─────────────────────────────────────────────── */
.drop-nav-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white, #fff);
    border-bottom: 1px solid var(--border, #ddd);
}

.drop-nav-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}


/* ── LOGO ───────────────────────────────────────────────── */
.drop-nav-logo {
    font-family: var(--serif, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink, #1A1A1A);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.drop-nav-logo .mark {
    color: #b08d57;
    font-style: italic;
}


/* ── DESKTOP NAV ────────────────────────────────────────── */
.drop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.drop-nav-item {
    position: relative;
}

.drop-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft, #555);
    text-decoration: none;
    border-radius: 8px;
    transition: .15s;
    cursor: pointer;
    white-space: nowrap;
}

.drop-nav-link:hover {
    color: var(--ink, #1A1A1A);
    background: var(--bg, #f6f4f0);
}

.drop-nav-link .drop-nav-arrow {
    font-size: .55rem;
    transition: transform .2s;
    margin-left: 2px;
    color: var(--ink-muted, #888);
}

.drop-nav-item:hover .drop-nav-arrow {
    transform: rotate(180deg);
    color: var(--section, #2E7D6F);
}

.drop-nav-item:hover > .drop-nav-link {
    color: var(--section, #2E7D6F);
    background: var(--section-light, #e8f0ee);
}


/* ── DROPDOWN PANEL ─────────────────────────────────────── */
.drop-nav-dropdown {
    position: absolute;
    top: 100%;
    padding-top: 8px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--white, #fff);
    border: 1px solid var(--border, #ddd);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s;
}

.drop-nav-item:hover .drop-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--ink-soft, #555);
    text-decoration: none;
    border-radius: 8px;
    transition: .15s;
}

.drop-nav-dropdown a:hover {
    background: var(--section-light, #e8f0ee);
    color: var(--section, #2E7D6F);
}

.drop-nav-dd-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.drop-nav-dd-text {
    display: flex;
    flex-direction: column;
}

.drop-nav-dd-label {
    font-weight: 500;
    font-size: .88rem;
    color: var(--ink, #1A1A1A);
}

.drop-nav-dd-desc {
    font-size: .72rem;
    color: var(--ink-muted, #888);
    margin-top: 1px;
}

.drop-nav-dropdown a:hover .drop-nav-dd-label {
    color: var(--section, #2E7D6F);
}

.drop-nav-dd-divider {
    height: 1px;
    background: var(--border, #ddd);
    margin: 4px 8px;
}


/* ── CTA BUTTON ─────────────────────────────────────────── */
.drop-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--section, #2E7D6F);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
    margin-left: 8px;
    white-space: nowrap;
}

.drop-nav-cta:hover {
    background: var(--section-dark, #1d5c52);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46,125,111,.3);
}


/* ── BURGER (Mobile) ────────────────────────────────────── */
.drop-nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    background: none;
    border: none;
}

.drop-nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink, #1A1A1A);
    border-radius: 2px;
    transition: .3s;
}

.drop-nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.drop-nav-burger.open span:nth-child(2) {
    opacity: 0;
}
.drop-nav-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ── MOBILE NAV ─────────────────────────────────────────── */
.drop-nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white, #fff);
    z-index: 999;
    overflow-y: auto;
    padding: 16px 24px 32px;
}

.drop-nav-mobile.open {
    display: block;
}

/* ── Mobile: Direkt-Links ── */
.drop-nav-mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink, #1A1A1A);
    text-decoration: none;
    border-bottom: 1px solid var(--border, #ddd);
}

.drop-nav-mobile-link:hover {
    color: var(--section, #2E7D6F);
}

/* ── Mobile: Gruppen (Accordion) ── */
.drop-nav-mobile-group {
    margin-bottom: 0;
}

.drop-nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink, #1A1A1A);
    cursor: pointer;
    border-bottom: 1px solid var(--border, #ddd);
    user-select: none;
}

.drop-nav-mobile-header .drop-nav-m-arrow {
    font-size: .7rem;
    color: var(--ink-muted, #888);
    transition: transform .2s;
}

.drop-nav-mobile-group.open .drop-nav-m-arrow {
    transform: rotate(180deg);
    color: var(--section, #2E7D6F);
}

.drop-nav-mobile-group.open .drop-nav-mobile-header {
    color: var(--section, #2E7D6F);
    border-bottom-color: var(--section, #2E7D6F);
}

/* ── Mobile: Sub-Links ── */
.drop-nav-mobile-sub {
    display: none;
    padding: 4px 0 8px 12px;
}

.drop-nav-mobile-group.open .drop-nav-mobile-sub {
    display: block;
}

.drop-nav-mobile-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.94rem;
    color: var(--ink-soft, #555);
    text-decoration: none;
    border-radius: 8px;
    transition: .15s;
}

.drop-nav-mobile-sub a:hover {
    background: var(--section-light, #e8f0ee);
    color: var(--section, #2E7D6F);
}

/* ── Mobile: CTA ── */
.drop-nav-mobile-cta {
    display: block;
    text-align: center;
    padding: 14px;
    margin-top: 16px;
    background: var(--section, #2E7D6F);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.drop-nav-mobile-cta:hover {
    background: var(--section-dark, #1d5c52);
}


/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .drop-nav {
        display: none;
    }
    .drop-nav-cta-desktop {
        display: none;
    }
    .drop-nav-burger {
        display: flex;
    }
}







/* ── FOOTER CONTAINER ───────────────────────────────────── */
.drop-nav-footer {
    background: #1e1e1e;
    color: #ccc;
    margin-top: 48px;
}

.drop-nav-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px 32px;
}


/* ── BRAND / LOGO ───────────────────────────────────────── */
.drop-nav-footer-brand {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.drop-nav-footer-logo {
    font-family: var(--serif, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.drop-nav-footer-logo .mark {
    color: #b08d57;
    font-style: italic;
}

.drop-nav-footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
    margin-top: 8px;
    max-width: 500px;
    line-height: 1.5;
    font-style: italic;
}


/* ── LINK GRID (4 Spalten) ──────────────────────────────── */
/*
.drop-nav-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}
*/


.drop-nav-footer-grid {
    display: block;
    column-count: 5;
    column-gap: 2rem;
}
.drop-nav-footer-col {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 2rem;
    display: block;
}

@media (max-width: 1100px) { .drop-nav-footer-grid { column-count: 4; } }
@media (max-width: 900px)  { .drop-nav-footer-grid { column-count: 3; } }
@media (max-width: 600px)  { .drop-nav-footer-grid { column-count: 2; } }
@media (max-width: 420px)  { .drop-nav-footer-grid { column-count: 1; } }




.drop-nav-footer-col h4 {
    font-family: var(--sans, 'DM Sans', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
}

.drop-nav-footer-h4-mt {
    margin-top: 20px !important;
}

.drop-nav-footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    padding: 4px 0;
    transition: color .15s;
}

.drop-nav-footer-col a:hover {
    color: #fff;
}


/* ── BOTTOM BAR ─────────────────────────────────────────── */
.drop-nav-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #181818;
}

.drop-nav-footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,.35);
}

.drop-nav-footer-bottom-links {
    display: flex;
    gap: 16px;
}

.drop-nav-footer-bottom-links a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .15s;
}

.drop-nav-footer-bottom-links a:hover {
    color: rgba(255,255,255,.7);
}


/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .drop-nav-footer-inner {
        padding: 32px 24px 24px;
    }

    .drop-nav-footer-bottom-inner {
        padding: 14px 24px;
    }
}

@media (max-width: 600px) {
    .drop-nav-footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
