:root {
    --gold: #9a7c3f;
    --gold-light: #c4a35a;
    --dark: #1a1a1a;
    --light-bg: #f5f3ef;
    --mid: #6b6560;
    --border: #ddd8cf;
}

body {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    background: #fff;
    color: var(--dark);
}

/* ── Top contact bar ── */
.topbar {
    background: #f0ece4;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--mid);
    padding: 7px 0;
}
.topbar a {
    color: var(--mid);
    text-decoration: none;
}
.topbar a:hover {
    color: var(--gold);
}
.topbar .sep {
    margin: 0 10px;
    opacity: 0.4;
}

/* ── Header / Logo ── */
header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 22px 0 18px;
}
.logo img {
    max-width: 300px;
}
.logo-eyebrow {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 2px;
}
.logo-name {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(36px, 6vw, 58px);
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1;
    color: var(--dark);
}

/* ── Gold rule ── */
.gold-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px 0;
}

/* ── Hero banner ── */
.hero {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(154, 124, 63, 0.15);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(154, 124, 63, 0.1);
    pointer-events: none;
}

.notice-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(154, 124, 63, 0.1);
    border: 1px solid rgba(154, 124, 63, 0.3);
    border-radius: 2px;
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.notice-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(28px, 4.5vw, 46px);
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 16px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero .lead {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    max-width: 480px;
    font-weight: 300;
}

/* ── CTA buttons ── */
.btn-morgner {
    display: inline-block;
    background: var(--dark);
    color: #fff !important;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid var(--dark);
    transition: background 0.25s;
}
.btn-morgner:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-morgner-outline {
    display: inline-block;
    background: transparent;
    color: var(--dark) !important;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    border: 1px solid var(--dark);
    transition: all 0.25s;
}
.btn-morgner-outline:hover {
    background: var(--dark);
    color: #fff !important;
}

/* ── Info section ── */
.info-section {
    padding: 64px 0;
    background: #fff;
}

.info-card {
    border: 1px solid var(--border);
    background: var(--light-bg);
    padding: 36px 32px;
    height: 100%;
}

.card-eyebrow {
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 400;
}
.card-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

/* ── Hours table ── */
.hours-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}
.hours-table td {
    padding: 8px 0;
    color: var(--mid);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hours-table td:first-child {
    color: var(--dark);
    font-weight: 400;
    padding-right: 20px;
    white-space: nowrap;
}
.hours-table tr:last-child td {
    border-bottom: none;
}

/* ── Contact items ── */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-item a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
}
.contact-item a:hover {
    color: var(--gold);
}
.contact-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 2px;
}
.contact-value {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
}

/* ── Map placeholder ── */
.map-box {
    background: #e8e4dc;
    border: 1px solid var(--border);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--mid);
    letter-spacing: 1px;
    margin-top: 20px;
    text-decoration: none;
    transition: background 0.2s;
}
.map-box:hover {
    background: #dedad0;
    color: var(--gold);
}

/* ── Page heading (Impressum / Datenschutz) ── */
.page-heading {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 48px 0 40px;
}
.page-heading .eyebrow {
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 400;
}
.page-heading h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--dark);
    margin: 0;
}
.page-heading .gold-rule {
    margin: 16px 0 0;
}

/* ── Legal content ── */
.legal-content {
    padding: 56px 0 72px;
}
.legal-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 22px;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 10px;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h3 {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.legal-content p,
.legal-content address,
.legal-content ul {
    font-size: 14px;
    line-height: 1.9;
    color: var(--mid);
    font-style: normal;
    margin-bottom: 0;
}
.legal-content ul {
    padding-left: 20px;
}
.legal-content ul li {
    margin-bottom: 4px;
}
.legal-content a {
    color: var(--gold);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* ── Footer ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    padding: 28px 0;
    letter-spacing: 0.3px;
}
footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}
footer a:hover {
    color: var(--gold-light);
}
