:root {
    --beige: #F6F2E9;
    --card: #FCFAF3;
    --ink: #2B322E;
    --sage: #8CA192;
    --sage-light: #B9C7BC;
    --sage-dark: #5B7267;
    --blue-deep: #233340;
    --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', serif;
    --sans: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

nav ul a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: none;
}

nav ul a:hover {
    color: var(--sage-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 15px;
    background: var(--blue-deep);
    color: var(--beige);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn:hover {
    background: var(--sage-dark);
    color: var(--beige);
}

@media (max-width: 768px) {
    nav ul.desktop {
        display: none;
    }

    #menu-toggle {
        display: block;
    }
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2c302e;
    background: var(--beige);
    line-height: 1.6;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    position: sticky;
    top: 0;
    background: rgba(246, 242, 233, .94);
    border-bottom: 1px solid rgba(43, 50, 46, .08);
    z-index: 20;
    backdrop-filter: blur(4px);
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--blue-deep);
    text-decoration: none;
    border-bottom: none;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    border-top: 1px solid rgba(43, 50, 46, .08);
}

#mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--ink);
    display: block;
}

#mobile-menu.open {
    display: flex;
}

.site-brand {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #1a2e26;
    text-transform: uppercase;
}

.site-brand span {
    display: block;
    font-size: 12px;
    color: #5a7367;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Linksbündiger Hauptbereich */
.main-wrapper {
    flex: 1;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 24px;
}

.sub-title {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 0px;
    display: block;
    text-align: center;
}

h1 {
    font-family: var(--font-serif);
    color: var(--heading-color);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 5px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 275px 1fr;
    gap: 20px 40px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.two-column-grid:last-of-type {
    border-bottom: none;
}

.col-title {
    font-size: 14px;
    font-weight: 600;
    color: #2b4c3f;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-top: 2px;
}

.col-content {
    font-size: 15px;
    color: #333;
}

.col-content p {
    margin-bottom: 12px;
}

.col-content p:last-child {
    margin-bottom: 0;
}

a {
    color: #2b4c3f;
    text-decoration: none;
    border-bottom: 1px solid #8ba497;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: #5a7367;
    border-bottom-color: #5a7367;
}

.details-list {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px 0px;
}

.details-label {
    font-weight: 600;
    color: #555;
}

footer {
    padding: 40px 0;
    font-size: 14px;
    color: rgba(43, 50, 46, .6);
    background: rgba(246, 242, 233, .94);
}

.footer-links a {
    margin-left: 20px;
    color: #7d8580;
    border-bottom: none;
}

.footer-links a:hover {
    color: #2b4c3f;
}

footer .top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

footer .name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--blue-deep);
}

footer .tagline {
    font-size: 13px;
    margin-top: 4px;
}

footer .contact p {
    margin: 0 0 4px;
}

footer a {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
}

footer .contact a:hover {
    color: var(--sage-dark);
}

footer .legal {
    border-top: 1px solid rgba(43, 50, 46, .08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

@media (max-width: 768px) {

    .header,
    .main-wrapper,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .details-list {
        grid-template-columns: 110px 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 15px;
    }
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 14px;
    display: block;
    text-align: center;
}