/* ═══ STARTSEITE — Einstieg "Heute" ═══════════════════════════
   Aus dem Redesign uebernommen: die Seite beantwortet ein Datum,
   keine Stimmung. Alles darunter (Kacheln, Bento, Visit) liegt
   weiterhin in app.css. */

.heute, .woche { --rand: 56px; }

/* Asymmetrischer Split: Foto traegt, Text sitzt darueber links. */
.heute {
    position: relative;
    min-height: min(84dvh, 780px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
    border-bottom: 1px solid var(--line);
}

.heute-foto {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    overflow: hidden;
}

.heute-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Weicher Uebergang zur Textspalte statt harter Kante */
.heute-foto::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(26,18,11,0.55) 22%, transparent 60%);
    pointer-events: none;
}

.heute-text {
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    align-self: center;
    padding: 72px var(--rand);
    max-width: 640px;
}

.heute-tag {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.heute h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(52px, 6.4vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    text-wrap: balance;
}

.heute-zeile {
    margin-top: 22px;
    font-family: var(--serif);
    font-size: clamp(19px, 1.5vw, 24px);
    line-height: 1.45;
    color: var(--paper);
    max-width: 46ch;
}

.heute-fakten {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--line);
}

.heute-fakten > div {
    padding: 18px 32px 0 0;
    margin-right: 32px;
    border-right: 1px solid var(--line);
}
.heute-fakten > div:last-child { border-right: none; margin-right: 0; }

.heute-fakten dt {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--paper-dim);
    margin-bottom: 8px;
}

.heute-fakten dd {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--paper);
    font-variant-numeric: tabular-nums;
}

.heute-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* Sekundaerer CTA: Linie statt zweiter Flaeche */
.btn-linie {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--paper);
    padding: 16px 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.1s;
}
@media (hover: hover) and (pointer: fine) {
    .btn-linie:hover { border-color: var(--amber); color: var(--amber); }
}
.btn-linie:active { transform: translateY(1px); }


/* ── DIE WOCHE ─────────────────────────────────────────────
   Horizontale Leiste, sieben gleichwertige Spalten. */
.woche {
    padding: 96px var(--rand);
    border-bottom: 1px solid var(--line);
}

.woche h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 40px;
}

.woche-liste {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid var(--line);
}

.woche-tag { border-bottom: 1px solid var(--line); }
.woche-tag + .woche-tag { border-left: 1px solid var(--line); }

.woche-tag a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 24px 20px 28px;
    transition: background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
    .woche-tag a:hover { background: var(--bg-2); }
}

.wt-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

.wt-titel {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.2;
    color: var(--paper);
    text-wrap: balance;
}

.wt-raum {
    margin-top: auto;
    padding-top: 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper-dim);
    font-variant-numeric: tabular-nums;
}

/* Heute ist der einzige hervorgehobene Tag. */
.woche-tag.ist-heute { background: var(--bg-2); }
.woche-tag.ist-heute .wt-tag { color: var(--amber); }
.woche-tag.ist-heute .wt-titel { color: var(--cream); }
.woche-tag.ist-heute a { box-shadow: inset 0 2px 0 var(--amber); }

/* ── TABLET ≤ 1100px ───────────────────────────────────────*/
@media (max-width: 1100px) {
    .heute, .woche { --rand: 32px; }

    .woche-liste { grid-template-columns: repeat(4, 1fr); }
    .woche-tag:nth-child(4n+1) { border-left: none; }
    .woche-tag:nth-child(n+5) { border-top: 1px solid var(--line); }
}

/* ── MOBILE ≤ 768px ────────────────────────────────────────*/
@media (max-width: 768px) {
    .heute, .woche { --rand: 20px; }

    /* Foto oben, Text darunter — kein Text ueber Bild auf klein */
    .heute {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .heute-foto {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 4 / 3;
    }
    .heute-foto::after {
        background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
    }
    .heute-text {
        grid-column: 1;
        grid-row: 2;
        padding: 0 var(--rand) 56px;
        margin-top: -40px;
        max-width: none;
    }
    .heute-fakten > div {
        padding-right: 20px;
        margin-right: 20px;
    }
    .heute-fakten dd { font-size: 20px; }
    .heute-cta { margin-top: 32px; }
    .heute-cta .btn-amber,
    .heute-cta .btn-linie { flex: 1 1 100%; justify-content: center; text-align: center; }

    .woche { padding: 56px var(--rand); }
    .woche-liste { grid-template-columns: 1fr; }
    .woche-tag + .woche-tag { border-left: none; }
    .woche-tag:nth-child(n+5) { border-top: none; }
    .woche-tag a {
        flex-direction: row;
        align-items: baseline;
        gap: 16px;
        padding: 16px 0;
    }
    .wt-tag { flex: 0 0 84px; }
    .wt-titel { flex: 1; font-size: 18px; }
    .wt-raum { margin-top: 0; padding-top: 0; text-align: right; flex: 0 0 auto; }
    .woche-tag.ist-heute a { box-shadow: inset 2px 0 0 var(--amber); padding-left: 14px; }
}

/* ── ZWEI-KLICK-KARTE ──────────────────────────────────────
   Platzhalter statt iframe: Google sieht den Gast erst, wenn
   der Gast das will. Fuellt exakt die Flaeche der Karte. */
.map-consent {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 40px;
    background: var(--bg-2);
    border: 1px solid var(--line);
}

.mc-inner {
    max-width: 34ch;
    text-align: center;
}

.mc-pin {
    color: var(--amber);
    margin-bottom: 18px;
}
.mc-pin svg { width: 34px; height: 34px; }

.mc-addr {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--paper);
    margin-bottom: 10px;
}

.mc-note {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.5;
    color: var(--paper-dim);
    margin-bottom: 24px;
    text-wrap: balance;
}

.mc-extern {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper-dim);
}

@media (max-width: 768px) {
    .map-consent { min-height: 380px; padding: 32px 20px; }
}
