/* ============================================================
   Preisliste — restyled price section ONLY
   No new fonts. Only existing brand colors:
     #2C4771 (medium navy)  — backgrounds, accents
     #181A4D (deep navy)    — prices, emphasis
     #cdcedc (light grey)   — subtle bg / dividers
     #9b9ca5 (mid grey)     — muted text
   ============================================================ */

body.menu-page {
    --navy: #2C4771;
    --navy-deep: #181A4D;
    --grey-light: #cdcedc;
    --grey-mid: #9b9ca5;
    --rule: rgba(44, 71, 113, 0.22);
    --ink: #1f1f1f;
}

body.menu-page .section {
    padding: 2em 0 1.5em 0;
}

body.menu-page .section .container {
    max-width: 1180px;
}

/* === Header above the menu === */
.menu-head {
    text-align: left;
    margin: 0 0 1.6em 0;
    max-width: none;
}

.menu-head h1.menu-title {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.9em;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin: 0;
    text-align: left;
    line-height: 1;
}

.menu-sub {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 0.85em;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0.8em 0 0 0;
    text-align: left;
}

.menu-rule {
    display: block;
    width: 3em;
    height: 2px;
    background: var(--navy);
    margin: 0.9em 0 0 0;
}

/* === Two-column layout ===
   Desktop: header in left col row 1, main in left col row 2,
   side column spans both rows on the right (so it top-aligns with header).
   Mobile: single column — header → side → main. */
.menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 2.6em;
    align-items: start;
}

.menu-head { grid-column: 1; grid-row: 1; }
.menu-main { grid-column: 1; grid-row: 2; }
.menu-side { grid-column: 2; grid-row: 1 / span 2; }

@media (max-width: 880px) {
    .menu-layout {
        grid-template-columns: 1fr;
        row-gap: 2.2em;
    }
    .menu-head { grid-column: 1; grid-row: 1; }
    .menu-side { grid-column: 1; grid-row: 2; }
    .menu-main { grid-column: 1; grid-row: 3; }
}

/* === Appointment card (sidebar top) — uses brand navy === */
.menu-aside {
    background: var(--navy);
    color: #fff;
    padding: 1.4em 1.4em 1.5em;
    text-align: center;
    margin-bottom: 1.6em;
}

.menu-aside h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.8em 0;
    color: #fff;
}

.menu-aside .aside-eyebrow {
    font-family: "Oswald", sans-serif;
    font-size: 0.85em;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin: 0 0 0.4em 0;
    font-weight: 400;
}

.menu-aside .menu-phone {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.7em;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin: 0.4em 0 0.6em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.1em;
    transition: color .2s, border-color .2s;
}

.menu-aside .menu-phone:hover {
    color: var(--grey-light);
    border-color: var(--grey-light);
}

.menu-aside .menu-hours {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1.15em;
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 1.1em 0 0 0;
}

.menu-aside .menu-hours strong {
    color: #fff;
    font-weight: 500;
    margin-right: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95em;
}

/* === Category blocks === */
.menu-block { margin-bottom: 2.2em; }
.menu-block:last-child { margin-bottom: 0; }

.menu-cat {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin: 0 0 0.8em 0;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--rule);
    position: relative;
}

.menu-cat::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 2.4em;
    background: var(--navy);
}

/* === Items === */
.menu-items { list-style: none; margin: 0; padding: 0; }

.menu-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 0.7em 0;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1.4em;
    color: var(--ink);
    line-height: 1.3;
}

.menu-item + .menu-item { border-top: 1px dashed rgba(44, 71, 113, 0.13); }

.menu-item-name { flex-shrink: 0; font-weight: 400; }
.menu-item-name em { font-style: normal; font-weight: 300; opacity: 0.7; }

.menu-item-leader {
    flex: 1;
    margin: 0 0.7em;
    border-bottom: 1px dotted var(--navy);
    opacity: 0.32;
    transform: translateY(-0.32em);
    min-width: 1.5em;
}

.menu-item-price {
    flex-shrink: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.05em;
    font-variant-numeric: tabular-nums;
    color: var(--navy-deep);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.menu-item-price .price-prefix {
    font-weight: 300;
    margin-right: 0.2em;
    color: var(--navy);
    opacity: 0.75;
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* === Comparison matrix: Damenhaarschnitt × kurz/mittel/lang === */
.menu-item--matrix {
    padding: 0.8em 0;
    flex-direction: column;
}

.cut-matrix {
    width: 100%;
    border-collapse: collapse;
    font-family: "Oswald", sans-serif;
    margin: 0;
}

.cut-matrix thead th {
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.65;
    padding: 0 0.4em 0.55em;
    text-align: center;
    border-bottom: 1px solid var(--rule);
}

.cut-matrix thead th:first-child {
    width: 44%;
    text-align: left;
}

.cut-matrix tbody th {
    text-align: left;
    color: var(--navy-deep);
    padding: 0.6em 0.4em 0.6em 0;
    vertical-align: middle;
    font-weight: 400;
}

.cut-matrix tbody td {
    text-align: center;
    font-variant-numeric: tabular-nums;
    color: var(--navy-deep);
    padding: 0.6em 0.4em;
    vertical-align: middle;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.cut-matrix tbody tr + tr th,
.cut-matrix tbody tr + tr td {
    border-top: 1px dashed rgba(44, 71, 113, 0.13);
}

.cut-matrix tbody tr.primary-row th {
    font-weight: 500;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy-deep);
}

.cut-matrix tbody tr.primary-row td {
    font-weight: 600;
    font-size: 1.25em;
}

.cut-matrix tbody tr.secondary-row th {
    padding-left: 1em;
    font-weight: 300;
    font-size: 0.85em;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.78;
}

.cut-matrix tbody tr.secondary-row td {
    font-weight: 400;
    font-size: 0.95em;
    color: var(--navy);
    opacity: 0.72;
}

.cut-matrix tbody tr.tertiary-row th,
.cut-matrix tbody tr.tertiary-row td {
    border-top: 1px solid var(--rule);
    padding-top: 0.85em;
}

.cut-matrix tbody tr.tertiary-row th {
    font-weight: 400;
    font-size: 0.92em;
    color: var(--navy-deep);
    text-transform: none;
    letter-spacing: 0.02em;
}

.cut-matrix tbody tr.tertiary-row td {
    font-weight: 500;
    font-size: 1em;
    color: var(--navy-deep);
}

/* === Multi-price subtitle (Waschen/Föhnen/Legen) === */
.menu-item-meta {
    flex-basis: 100%;
    margin-top: 0.4em;
    padding-left: 0.2em;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 0.78em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.78;
    text-align: right;
}

/* === Pony feature highlight — matches Termin box width === */
.menu-block--feature {
    background: var(--grey-light);
    padding: 1.1em 1.4em 1.2em;
    margin-left: 0;
    margin-right: 0;
    border-left: 3px solid var(--navy);
}

.menu-block--feature .menu-cat { border-bottom-color: rgba(24, 26, 77, 0.25); }

.menu-block--feature .menu-item-meta {
    color: var(--navy-deep);
    opacity: 1;
    font-weight: 500;
}

/* === Footnote === */
.menu-footnote {
    margin: 2.6em auto 0;
    max-width: 640px;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
}

.menu-footnote::before, .menu-footnote::after {
    content: "✦";
    color: var(--navy);
    margin: 0 0.6em;
    font-size: 0.7em;
    vertical-align: middle;
    letter-spacing: 0;
}

/* === Responsive === */
@media (max-width: 880px) {
    .menu-head h1.menu-title { font-size: 1.6em; }
    .menu-cat { font-size: 1.25em; letter-spacing: 0.25em; }
    .menu-item { font-size: 1.15em; }
    .menu-block--feature { margin-left: 0; margin-right: 0; }
}

@media (max-width: 480px) {
    .menu-item-leader { display: none; }
    .menu-item-name { flex: 1; }
}
