/*
Theme Name: Bahnhofsvision
Theme URI: https://bahnhofsvision.de
Author: oli bolzano
Author URI: https://olibolzano.com
Description: Individuelles WordPress-Theme für die Bahnhofsvision in Aachen-Kornelimünster.
Version: 1.0
Text Domain: bahnhofsvision
*/


/* ----------------------------------------------------------
Fonts
---------------------------------------------------------- */

@font-face {
font-family: "Source Sans 3";
src: url("assets/fonts/SourceSans3-Regular.ttf.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Source Sans 3";
src: url("assets/fonts/SourceSans3-Medium.ttf.woff2") format("woff2");
font-weight: 500;
font-style: normal;
font-display: swap;
}


/* ----------------------------------------------------------
Grundvariablen
---------------------------------------------------------- */

:root {
--color-background: #f7f5f0;
--color-text: #1d1d1b;
--color-muted: #686868;
--color-accent: #58665a;
--color-dark: #171816;
--color-light: #ffffff;

--content-width: 1200px;
--content-narrow: 760px;

--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 2rem;
--space-lg: 4rem;
--space-xl: 7rem;
}


/* ----------------------------------------------------------
Basis
---------------------------------------------------------- */

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: var(--color-background);
color: var(--color-text);
font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.6;
}

img {
display: block;
max-width: 100%;
height: auto;
}

a {
color: inherit;
text-decoration: none;
}


/* ----------------------------------------------------------
Typografie
---------------------------------------------------------- */

h1,
h2,
h3,
p {
margin-top: 0;
}

h1,
h2,
h3 {
line-height: 1.1;
font-weight: 500;
}

h1 {
font-size: clamp(2.8rem, 8vw, 6.5rem);
}

h2 {
font-size: clamp(2rem, 5vw, 3.5rem);
}


/* ----------------------------------------------------------
Inhaltsbreiten
---------------------------------------------------------- */

.content-wrapper,
.site-header__inner,
.site-footer__inner {
width: min(calc(100% - 2rem), var(--content-width));
margin-inline: auto;
}


/* ----------------------------------------------------------
Header
---------------------------------------------------------- */

.site-header {
padding: 0.75rem 0;
background: var(--color-background);
}

.site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

.site-logo {
display: block;
width: min(330px, 38vw);
flex-shrink: 0;
}

.site-logo img {
display: block;
width: 100%;
height: auto;
}

.menu-toggle {
display: none;
}

.main-navigation {
margin-left: auto;
}

.main-navigation ul {
display: flex;
align-items: center;
gap: 2rem;
margin: 0;
padding: 0;
list-style: none;
}

.main-navigation li {
margin: 0;
padding: 0;
border: 0;
}

.main-navigation li:nth-child(3) {
margin-left: 0.6rem;
}

.main-navigation li:nth-last-child(-n + 2) {
border: 0;
border-top: 0;
border-bottom: 0;
box-shadow: none;
}

.main-navigation a {
display: block;
color: var(--color-text);
font-size: 0.95rem;
line-height: 1.2;
text-decoration: none;
white-space: nowrap;
border: 0;
box-shadow: none;
background-image: none;
}

.main-navigation a::before,
.main-navigation a::after {
content: none;
display: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
opacity: 0.6;
}


/* ----------------------------------------------------------
Startseite – Hero
---------------------------------------------------------- */

.hero {
min-height: 70vh;
display: flex;
align-items: flex-end;
padding: var(--space-lg) max(1rem, calc((100vw - var(--content-width)) / 2));
background:
linear-gradient(
to top,
rgba(0, 0, 0, 0.55) 0%,
rgba(0, 0, 0, 0.10) 45%,
rgba(0, 0, 0, 0.02) 100%
),
url("assets/images/bahnhofsvision-hero-desktop.jpg") center center / cover no-repeat;
color: var(--color-light);
}

.hero__content {
max-width: 900px;
}

.hero h1 {
margin-bottom: var(--space-sm);
}

.hero p {
margin: 0;
font-size: clamp(1.1rem, 2vw, 1.5rem);
}


/* ----------------------------------------------------------
Startseite – Intro
---------------------------------------------------------- */

.intro {
padding: var(--space-xl) 0;
}

.intro .content-wrapper {
width: min(calc(100% - 2rem), var(--content-width));
max-width: none;
margin-inline: auto;
}

.intro h2 {
max-width: 850px;
margin-bottom: 2rem;
}

.intro__text {
max-width: 680px;
margin: 0;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
line-height: 1.7;
}


/* ----------------------------------------------------------
Startseite – Innenraum
---------------------------------------------------------- */

.interior-image {
width: 100%;
margin: 0;
}

.interior-image img {
display: block;
width: 100%;
height: auto;
}


/* ----------------------------------------------------------
Essen & Trinken
---------------------------------------------------------- */

.food {
padding: var(--space-xl) 0;
}

.food .content-wrapper {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
align-items: center;
gap: clamp(3rem, 7vw, 7rem);
}

.food__content {
max-width: 520px;
}

.section-label {
margin: 0 0 1.25rem;
color: var(--color-accent);
font-size: 0.9rem;
line-height: 1.2;
}

.food h2 {
margin-bottom: 2rem;
}

.food__text {
margin: 0 0 2rem;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.2rem);
line-height: 1.7;
}

.food__image {
margin-top: 4rem;
}

.food__image img {
display: block;
width: 100%;
height: auto;
}

.text-link {
display: inline-block;
padding-bottom: 0.2rem;
border-bottom: 1px solid currentColor;
font-size: 1rem;
line-height: 1.4;
}

.text-link:hover,
.text-link:focus {
opacity: 0.6;
}


/* ----------------------------------------------------------
Wochenkarte – Startseite
---------------------------------------------------------- */

.weekly-menu {
padding: var(--space-xl) 0;
background: var(--color-light);
}

.weekly-menu .content-wrapper {
display: grid;
grid-template-columns: 90px minmax(0, 760px);
gap: 2.5rem;
align-items: start;
}

.weekly-menu__marker {
position: relative;
height: 100%;
min-height: 280px;
}

.weekly-menu__marker::before {
content: "";
position: absolute;
top: 0.45rem;
left: 50%;
width: 1px;
height: 100%;
background: var(--color-accent);
opacity: 0.35;
}

.weekly-menu__marker span {
position: absolute;
top: 0;
left: 50%;
width: 13px;
height: 13px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-light);
transform: translateX(-50%);
}

.weekly-menu__content {
max-width: 760px;
}

.weekly-menu h2 {
margin-bottom: 2rem;
}

.weekly-menu__text {
max-width: 620px;
margin: 0 0 2rem;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.2rem);
line-height: 1.7;
}


/* ----------------------------------------------------------
Der Bahnhof – Startseite
---------------------------------------------------------- */

.station-history {
padding: var(--space-xl) 0;
}

.station-history .content-wrapper {
display: grid;
grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
grid-template-areas:
"heading heading"
"image text";
column-gap: clamp(3rem, 7vw, 7rem);
row-gap: 3.5rem;
align-items: end;
}

.station-history__heading {
grid-area: heading;
max-width: 900px;
}

.station-history__heading h2 {
margin-bottom: 0;
}

.station-history__image {
grid-area: image;
width: 100%;
}

.station-history__image img {
display: block;
width: 100%;
height: auto;
}

.station-history__text {
grid-area: text;
max-width: 420px;
padding-bottom: 4.5rem;
}

.station-history__text p {
margin: 0 0 2rem;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.2rem);
line-height: 1.7;
}


@media (max-width: 800px) {

.station-history .content-wrapper {
grid-template-columns: 1fr;
grid-template-areas:
"heading"
"image"
"text";
gap: 2.5rem;
}

.station-history__text {
max-width: 680px;
padding-bottom: 0;
}

}


/* ----------------------------------------------------------
Gutscheine
---------------------------------------------------------- */

.vouchers {
padding: var(--space-xl) 0;
overflow: hidden;
}

.vouchers .content-wrapper {
display: grid;
grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
align-items: center;
gap: clamp(4rem, 8vw, 8rem);
}

.vouchers__content {
max-width: 480px;
}

.vouchers h2 {
margin-bottom: 2rem;
}

.vouchers__text {
margin: 0 0 2rem;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.2rem);
line-height: 1.7;
}

.vouchers__image {
padding: 2rem 1.5rem;
}

.vouchers__image img {
display: block;
width: 100%;
height: auto;
transform: rotate(1.25deg);
box-shadow:
0 1.5rem 3.5rem rgba(0, 0, 0, 0.13),
0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}


@media (max-width: 800px) {

.vouchers .content-wrapper {
grid-template-columns: 1fr;
gap: 3rem;
}

.vouchers__content {
max-width: 680px;
}

.vouchers__image {
padding: 1rem 0.5rem 2rem;
}

.vouchers__image img {
transform: rotate(0.75deg);
}

}


/* ----------------------------------------------------------
Vorbeikommen
---------------------------------------------------------- */

.visit {
padding: var(--space-xl) 0;
background: var(--color-dark);
color: var(--color-light);
}

.visit .content-wrapper {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr) minmax(260px, 0.9fr);
gap: clamp(3rem, 6vw, 7rem);
align-items: start;
}

.visit .section-label {
color: rgba(255, 255, 255, 0.55);
}

.visit__intro h2 {
margin: 0;
color: var(--color-light);
}

.visit h3 {
margin: 0 0 2rem;
color: var(--color-light);
font-size: 1rem;
font-weight: 500;
}

.visit__hours p,
.visit__contact p,
.visit__contact address {
margin: 0 0 1.5rem;
color: rgba(255, 255, 255, 0.72);
font-size: 1rem;
line-height: 1.7;
}

.visit__contact address {
font-style: normal;
}

.visit__contact a {
transition: opacity 0.2s ease;
}

.visit__contact a:hover,
.visit__contact a:focus {
opacity: 0.6;
}

.visit__link {
display: inline-block;
margin-top: 0.5rem;
padding-bottom: 0.2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.65);
color: var(--color-light);
}


@media (max-width: 800px) {

.visit .content-wrapper {
grid-template-columns: 1fr;
gap: 3.5rem;
}

.visit__intro {
margin-bottom: 1rem;
}

}


/* ----------------------------------------------------------
Footer
---------------------------------------------------------- */

.site-footer {
padding: var(--space-md) 0;
background: var(--color-dark);
color: var(--color-light);
border-top: 1px solid rgba(255, 255, 255, 0.12);
font-size: 0.875rem;
}

.site-footer p {
margin: 0;
}


/* ----------------------------------------------------------
Unterseiten – Seitenauftakt
---------------------------------------------------------- */

.subpage-intro {
padding: clamp(5rem, 9vw, 9rem) 0;
}

.subpage-intro__grid {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
align-items: center;
gap: clamp(3rem, 8vw, 8rem);
}

.subpage-intro__content {
max-width: 650px;
}

.subpage-intro h1 {
max-width: 720px;
margin: 0 0 1.75rem;
font-size: clamp(3rem, 6vw, 5.8rem);
font-weight: 500;
line-height: 0.98;
letter-spacing: -0.035em;
}

.subpage-intro__text {
max-width: 560px;
margin: 0;
color: var(--color-muted);
font-size: clamp(1.1rem, 1.6vw, 1.35rem);
line-height: 1.55;
}

.subpage-intro__image {
margin: 0;
}

.subpage-intro__image img {
display: block;
width: 100%;
height: auto;
}


/* ----------------------------------------------------------
Speiseplan – Streckennavigation
---------------------------------------------------------- */

.menu-route {
padding: var(--space-lg) 0 var(--space-xl);
background: var(--color-light);
}

.menu-route .section-label {
margin-bottom: 3rem;
}

.menu-route__track {
position: relative;
display: grid;
grid-template-columns: repeat(8, minmax(0, 1fr));
}

.menu-route__track::before {
content: "";
position: absolute;
top: 7px;
left: 6.25%;
right: 6.25%;
height: 1px;
background: var(--color-accent);
opacity: 0.45;
}

.menu-route__stop {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.9rem;
min-width: 0;
color: var(--color-text);
text-align: center;
}

.menu-route__dot {
display: block;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-light);
transition:
background-color 0.2s ease,
transform 0.2s ease;
}

.menu-route__label {
font-size: 0.95rem;
line-height: 1.25;
}

.menu-route__stop:hover .menu-route__dot,
.menu-route__stop:focus .menu-route__dot {
background: var(--color-accent);
transform: scale(1.08);
}

.menu-route__stop:hover .menu-route__label,
.menu-route__stop:focus .menu-route__label {
opacity: 0.6;
}


/* ----------------------------------------------------------
Speiseplan – Gerichte
---------------------------------------------------------- */

.menu-section {
padding: var(--space-xl) 0;
background: var(--color-background);
scroll-margin-top: 2rem;
}

.menu-section__header {
max-width: 760px;
margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.menu-section__header .section-label {
margin-bottom: 1.25rem;
}

.menu-section__header h2 {
margin: 0;
}

.menu-section__subtitle {
max-width: 560px;
margin: 0.9rem 0 0;
color: var(--color-muted);
font-size: 1rem;
line-height: 1.5;
}

.menu-items {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: clamp(4rem, 8vw, 8rem);
row-gap: 0;
}

.menu-item {
display: grid;
grid-template-columns: 48px minmax(0, 1fr);
gap: 1.5rem;
align-items: start;
padding: 2.25rem 0;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.menu-item:nth-last-child(-n + 2) {
border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.menu-item__number {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border: 1.5px solid var(--color-accent);
border-radius: 50%;
color: var(--color-accent);
font-size: 0.95rem;
font-weight: 500;
line-height: 1;
}

.menu-item__content {
min-width: 0;
}

.menu-item__heading {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 1.5rem;
align-items: baseline;
margin-bottom: 0.65rem;
}

.menu-item h3 {
margin: 0;
font-size: clamp(1.2rem, 1.8vw, 1.45rem);
font-weight: 500;
line-height: 1.25;
}

.menu-item__price {
margin: 0;
font-size: 1rem;
font-weight: 500;
line-height: 1.25;
white-space: nowrap;
}

.menu-item__description {
max-width: 430px;
margin: 0;
color: var(--color-muted);
font-size: 1rem;
line-height: 1.6;
}

.menu-item__notes {
margin-left: 0.2rem;
color: var(--color-muted);
font-size: 0.65em;
line-height: 1;
vertical-align: super;
}

.menu-item__vegetarian {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.55rem;
height: 1.55rem;
margin-left: 0.45rem;
border: 1.5px solid var(--color-accent);
border-radius: 50%;
color: var(--color-accent);
font-size: 0.72rem;
font-weight: 500;
line-height: 1;
vertical-align: 0.12em;
}


/* ----------------------------------------------------------
Speiseplan – Wunschkonzert und Hinweise
---------------------------------------------------------- */

.menu-item--choice {
grid-column: 1 / -1;
grid-template-columns: 48px minmax(0, 1fr);
}

.menu-item--choice .menu-item__content {
max-width: 760px;
}

.menu-item--choice .menu-item__heading {
grid-template-columns: minmax(0, 1fr);
}

.menu-item__options {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.5rem 3rem;
margin-top: 1.5rem;
}

.menu-item__options p {
margin: 0;
color: var(--color-muted);
font-size: 0.95rem;
line-height: 1.55;
}

.menu-item__options strong {
color: var(--color-text);
font-weight: 500;
}

.menu-item__options span {
margin-left: 0.5rem;
color: var(--color-text);
font-weight: 500;
white-space: nowrap;
}

.menu-section__notice {
display: flex;
align-items: center;
gap: 1rem;
margin: 3rem 0 0;
color: var(--color-muted);
font-size: 1rem;
line-height: 1.5;
}

.menu-section__notice-icon {
display: flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
width: 30px;
height: 30px;
border: 1.5px solid var(--color-accent);
border-radius: 50%;
color: var(--color-accent);
font-size: 0.95rem;
font-weight: 500;
font-style: normal;
line-height: 1;
}


/* ----------------------------------------------------------
Speiseplan – Carne-Zusätze
---------------------------------------------------------- */

.menu-extra {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: clamp(3rem, 8vw, 8rem);
margin-top: 4rem;
padding-top: 3rem;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.menu-extra__block {
max-width: 500px;
}

.menu-extra__block h3 {
margin: 0 0 1rem;
font-size: 1.2rem;
font-weight: 500;
line-height: 1.3;
}

.menu-extra__block p {
margin: 0 0 1rem;
color: var(--color-muted);
font-size: 1rem;
line-height: 1.6;
}

.menu-extra__block .menu-extra__price {
margin-bottom: 1.5rem;
color: var(--color-text);
font-weight: 500;
}

.menu-extra__block ul {
margin: 0;
padding: 0;
list-style: none;
}

.menu-extra__block li {
position: relative;
margin: 0 0 0.7rem;
padding-left: 1.15rem;
color: var(--color-muted);
font-size: 1rem;
line-height: 1.5;
}

.menu-extra__block li::before {
content: "–";
position: absolute;
left: 0;
top: 0;
color: var(--color-accent);
}


/* ----------------------------------------------------------
Speiseplan – Legende und Zusatzstoffe
---------------------------------------------------------- */

.menu-legend {
margin-top: clamp(4rem, 7vw, 6rem);
padding-top: 2.5rem;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.menu-legend__vegetarian {
display: flex;
align-items: center;
gap: 0.75rem;
margin: 0 0 1.25rem;
color: var(--color-muted);
font-size: 0.95rem;
line-height: 1.5;
}

.menu-legend__vegetarian .menu-item__vegetarian {
margin-left: 0;
flex: 0 0 auto;
}

.menu-legend__allergens {
max-width: 680px;
margin: 0 0 2.5rem;
color: var(--color-text);
font-size: 1rem;
font-weight: 500;
line-height: 1.6;
}

.menu-legend__additives {
max-width: 1000px;
}

.menu-legend__additives h3 {
margin: 0 0 1rem;
font-size: 1.1rem;
font-weight: 500;
line-height: 1.3;
}

.menu-legend__additives p {
margin: 0;
color: var(--color-muted);
font-size: 0.9rem;
line-height: 1.8;
}

.menu-legend__additives strong {
color: var(--color-text);
font-weight: 500;
}

.menu-legend__additives span {
display: inline-block;
margin: 0 0.45rem;
color: var(--color-accent);
}


/* ----------------------------------------------------------
Getränkefahrplan – Auftakt
---------------------------------------------------------- */

.drinks-intro {
padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
background: var(--color-dark);
color: var(--color-light);
}

.drinks-intro .section-label {
color: rgba(255, 255, 255, 0.55);
}

.drinks-intro h2 {
max-width: 850px;
margin: 0 0 2rem;
color: var(--color-light);
}

.drinks-intro__text {
max-width: 650px;
margin: 0;
color: rgba(255, 255, 255, 0.68);
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
line-height: 1.7;
}


/* ----------------------------------------------------------
Getränkefahrplan – Streckennavigation
---------------------------------------------------------- */

.drinks-route {
padding: var(--space-lg) 0 var(--space-xl);
background: var(--color-light);
}

.drinks-route__track {
position: relative;
display: grid;
grid-template-columns: repeat(7, minmax(0, 1fr));
}

.drinks-route__track::before {
content: "";
position: absolute;
top: 7px;
left: 7.14%;
right: 7.14%;
height: 1px;
background: var(--color-accent);
opacity: 0.45;
}

.drinks-route__stop {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.9rem;
min-width: 0;
color: var(--color-text);
text-align: center;
}

.drinks-route__dot {
display: block;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-light);
transition:
background-color 0.2s ease,
transform 0.2s ease;
}

.drinks-route__label {
padding: 0 0.35rem;
font-size: 0.95rem;
line-height: 1.25;
}

.drinks-route__stop:hover .drinks-route__dot,
.drinks-route__stop:focus .drinks-route__dot {
background: var(--color-accent);
transform: scale(1.08);
}

.drinks-route__stop:hover .drinks-route__label,
.drinks-route__stop:focus .drinks-route__label {
opacity: 0.6;
}


/* ----------------------------------------------------------
Getränkefahrplan – Bereiche
---------------------------------------------------------- */

.drinks-section {
padding: var(--space-xl) 0;
background: var(--color-background);
scroll-margin-top: 2rem;
}

.drinks-section:nth-of-type(even) {
background: var(--color-light);
}

.drinks-section__header {
max-width: 760px;
margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.drinks-section__header h2 {
margin: 0;
}


/* ----------------------------------------------------------
Getränkefahrplan – Getränkeliste
---------------------------------------------------------- */

.drink-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: clamp(4rem, 8vw, 8rem);
row-gap: 0;
}

.drink-item {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 1.5rem;
align-items: start;
padding: 1.5rem 0;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.drink-item:nth-last-child(-n + 2) {
border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.drink-item > div {
min-width: 0;
}

.drink-item h3 {
margin: 0 0 0.35rem;
font-size: 1.08rem;
font-weight: 500;
line-height: 1.35;
}

.drink-item h3 sup {
margin-left: 0.15rem;
color: var(--color-muted);
font-size: 0.58em;
font-weight: 400;
line-height: 1;
vertical-align: super;
}

.drink-item p {
margin: 0;
color: var(--color-muted);
font-size: 0.9rem;
line-height: 1.5;
}

.drink-item__price {
padding-top: 0.1rem;
color: var(--color-text) !important;
font-size: 0.95rem !important;
font-weight: 500;
line-height: 1.35 !important;
white-space: nowrap;
text-align: right;
}

.drink-item--text p:not(.drink-item__price) {
max-width: 460px;
line-height: 1.6;
}


/* ----------------------------------------------------------
Getränkefahrplan – Zusatzstoffe
---------------------------------------------------------- */

.drinks-legend {
margin-top: clamp(4rem, 7vw, 6rem);
padding-top: 2.5rem;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.drinks-legend h3 {
margin: 0 0 1rem;
font-size: 1.1rem;
font-weight: 500;
line-height: 1.3;
}

.drinks-legend p {
max-width: 1000px;
margin: 0;
color: var(--color-muted);
font-size: 0.9rem;
line-height: 1.8;
}

.drinks-legend strong {
color: var(--color-text);
font-weight: 500;
}

.drinks-legend span {
display: inline-block;
margin: 0 0.45rem;
color: var(--color-accent);
}


/* ----------------------------------------------------------
Wochenkarte – Seitenauftakt
---------------------------------------------------------- */

.weekly-page__intro {
padding: clamp(5rem, 9vw, 8rem) 0;
background: var(--color-background);
}

.weekly-page__intro .content-wrapper {
max-width: var(--content-width);
}

.weekly-page__intro h1 {
max-width: 930px;
margin: 0 0 2.25rem;
font-size: clamp(3rem, 7vw, 6.5rem);
font-weight: 500;
line-height: 0.98;
letter-spacing: -0.035em;
}

.weekly-page__intro-text {
max-width: 650px;
margin: 0;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
line-height: 1.7;
}

.weekly-page__validity {
display: flex;
align-items: center;
gap: 1rem;
margin-top: clamp(2.5rem, 5vw, 4rem);
}

.weekly-page__validity-dot {
display: block;
flex: 0 0 auto;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-background);
}

.weekly-page__validity p {
margin: 0;
color: var(--color-muted);
font-size: 1rem;
line-height: 1.5;
}

.weekly-page__validity strong {
color: var(--color-text);
font-weight: 500;
}


/* ----------------------------------------------------------
Wochenkarte – Fahrplan
---------------------------------------------------------- */

.weekly-page__menu {
padding: clamp(5rem, 8vw, 7rem) 0 var(--space-xl);
background: var(--color-light);
}

.weekly-schedule {
position: relative;
max-width: 960px;
}

.weekly-schedule::before {
content: "";
position: absolute;
top: 12px;
bottom: 12px;
left: 25px;
width: 1px;
background: var(--color-accent);
opacity: 0.38;
}

.weekly-schedule__item {
position: relative;
display: grid;
grid-template-columns: 52px minmax(0, 1fr);
gap: clamp(1.75rem, 4vw, 3.5rem);
padding: 0 0 clamp(3.5rem, 6vw, 5rem);
}

.weekly-schedule__item:last-child {
padding-bottom: 0;
}

.weekly-schedule__station {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
padding-top: 0.45rem;
}

.weekly-schedule__dot {
display: block;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-light);
}

.weekly-schedule__content {
min-width: 0;
padding-bottom: clamp(2rem, 4vw, 3rem);
border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.weekly-schedule__item:last-child .weekly-schedule__content {
padding-bottom: 0;
border-bottom: 0;
}

.weekly-schedule__heading {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: clamp(2rem, 5vw, 5rem);
align-items: baseline;
}

.weekly-schedule__title {
display: flex;
align-items: baseline;
gap: 1rem;
min-width: 0;
}

.weekly-schedule__number {
flex: 0 0 auto;
color: var(--color-accent);
font-size: 0.95rem;
font-weight: 500;
line-height: 1;
}

.weekly-schedule__title h2 {
margin: 0;
font-size: clamp(1.55rem, 2.7vw, 2.35rem);
font-weight: 500;
line-height: 1.2;
letter-spacing: -0.015em;
}

.weekly-schedule__price {
margin: 0;
color: var(--color-text);
font-size: 1.05rem;
font-weight: 500;
line-height: 1.3;
white-space: nowrap;
}

.weekly-schedule__description {
max-width: 690px;
margin: 1rem 0 0;
color: var(--color-muted);
font-size: 1.05rem;
line-height: 1.65;
}


/* ----------------------------------------------------------
Wochenkarte – Leerzustand
---------------------------------------------------------- */

.weekly-page__empty {
max-width: 800px;
padding-left: calc(52px + clamp(1.75rem, 4vw, 3.5rem));
}

.weekly-page__empty h2 {
max-width: 760px;
margin: 0 0 2rem;
}

.weekly-page__empty > p:last-child {
max-width: 620px;
margin: 0;
color: var(--color-muted);
font-size: 1.05rem;
line-height: 1.7;
}


/* ----------------------------------------------------------
Der Bahnhof – Unterseite – Seitenauftakt
---------------------------------------------------------- */

.station-page__intro {
padding: clamp(5rem, 9vw, 9rem) 0;
background: var(--color-background);
}

.station-page__intro-grid {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
gap: clamp(4rem, 8vw, 8rem);
align-items: center;
}

.station-page__intro-content {
min-width: 0;
}

.station-page__intro h1 {
max-width: 680px;
margin: 0 0 2.25rem;
font-size: clamp(3rem, 5.8vw, 5.7rem);
font-weight: 500;
line-height: 0.98;
letter-spacing: -0.035em;
}

.station-page__lead {
max-width: 590px;
margin: 0;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
line-height: 1.7;
}

.station-page__statement {
max-width: 590px;
margin: clamp(2.5rem, 5vw, 4rem) 0 0;
padding-top: 1.5rem;
border-top: 1px solid rgba(29, 29, 27, 0.16);
color: var(--color-text);
font-size: clamp(1.2rem, 1.8vw, 1.5rem);
font-weight: 500;
line-height: 1.45;
}

.station-page__illustration {
margin: 0;
}

.station-page__illustration img {
display: block;
width: 100%;
height: auto;
}

.station-page__illustration figcaption {
margin-top: 0.75rem;
color: var(--color-muted);
font-size: 0.8rem;
line-height: 1.4;
}


/* ----------------------------------------------------------
Der Bahnhof – Unterseite – Zeitstrecke
---------------------------------------------------------- */

.station-timeline {
padding: clamp(5rem, 9vw, 8rem) 0 var(--space-xl);
background: var(--color-light);
}

.station-timeline > .content-wrapper {
position: relative;
max-width: var(--content-width);
}

.station-timeline > .content-wrapper::before {
content: "";
position: absolute;
top: 11px;
bottom: 0;
left: 25px;
width: 1px;
background: var(--color-accent);
opacity: 0.38;
}

.station-timeline__stop {
position: relative;
display: grid;
grid-template-columns: 52px minmax(0, 760px);
gap: clamp(2.5rem, 6vw, 5.5rem);
padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.station-timeline__stop--last {
padding-bottom: clamp(4rem, 7vw, 6rem);
}

.station-timeline__marker {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
padding-top: 0.25rem;
}

.station-timeline__dot {
display: block;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-light);
}

.station-timeline__content {
min-width: 0;
}

.station-timeline__year {
margin: 0 0 1.25rem;
color: var(--color-accent);
font-size: 0.95rem;
font-weight: 500;
line-height: 1.3;
}

.station-timeline__content h2 {
max-width: 760px;
margin: 0 0 2.25rem;
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 500;
line-height: 1.05;
letter-spacing: -0.025em;
}

.station-timeline__content > p:not(.station-timeline__year):not(.station-timeline__closing):not(.station-timeline__final) {
max-width: 650px;
margin: 0 0 1.35rem;
color: var(--color-muted);
font-size: 1.05rem;
line-height: 1.75;
}

.station-timeline__closing {
max-width: 650px;
margin: 2rem 0 0;
color: var(--color-text);
font-size: 1.05rem;
font-weight: 500;
line-height: 1.65;
}


/* ----------------------------------------------------------
Der Bahnhof – 1960 / 1980
---------------------------------------------------------- */

.station-timeline__dates {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1px;
max-width: 650px;
margin: 2.75rem 0;
background: rgba(29, 29, 27, 0.14);
border-top: 1px solid rgba(29, 29, 27, 0.14);
border-bottom: 1px solid rgba(29, 29, 27, 0.14);
}

.station-timeline__date {
display: flex;
flex-direction: column;
gap: 0.6rem;
padding: 1.75rem 2rem;
background: var(--color-light);
}

.station-timeline__date strong {
color: var(--color-accent);
font-size: clamp(1.8rem, 3vw, 2.6rem);
font-weight: 500;
line-height: 1;
}

.station-timeline__date span {
color: var(--color-muted);
font-size: 0.95rem;
line-height: 1.5;
}


/* ----------------------------------------------------------
Der Bahnhof – Schluss
---------------------------------------------------------- */

.station-timeline__final {
max-width: 680px;
margin: 2.5rem 0 0;
padding-top: 2rem;
border-top: 1px solid rgba(29, 29, 27, 0.16);
color: var(--color-text);
font-size: clamp(1.15rem, 1.8vw, 1.4rem);
line-height: 1.6;
}

.station-timeline__final strong {
font-weight: 500;
}

.station-page__source {
max-width: 760px;
margin-left: calc(52px + clamp(2.5rem, 6vw, 5.5rem));
padding-top: 2rem;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.station-page__source p {
margin: 0;
color: var(--color-muted);
font-size: 0.82rem;
line-height: 1.6;
}

.station-page__source cite {
font-style: italic;
}


/* ----------------------------------------------------------
Kontakt – Seitenauftakt
---------------------------------------------------------- */

.contact-page__intro {
padding: clamp(5rem, 9vw, 9rem) 0;
background: var(--color-background);
}

.contact-page__intro h1 {
max-width: 900px;
margin: 0 0 2.25rem;
font-size: clamp(3rem, 7vw, 6.5rem);
font-weight: 500;
line-height: 0.98;
letter-spacing: -0.035em;
}

.contact-page__lead {
max-width: 650px;
margin: 0;
color: var(--color-muted);
font-size: clamp(1.05rem, 1.4vw, 1.25rem);
line-height: 1.7;
}


/* ----------------------------------------------------------
Kontakt – Strecke
---------------------------------------------------------- */

.contact-route {
padding: clamp(5rem, 8vw, 7rem) 0;
background: var(--color-light);
}

.contact-route > .content-wrapper {
position: relative;
}

.contact-route > .content-wrapper::before {
content: "";
position: absolute;
top: 8px;
bottom: 8px;
left: 25px;
width: 1px;
background: var(--color-accent);
opacity: 0.38;
}

.contact-route__stop {
position: relative;
display: grid;
grid-template-columns: 52px minmax(0, 760px);
gap: clamp(2.5rem, 6vw, 5.5rem);
padding: 0 0 clamp(4rem, 7vw, 5.5rem);
}

.contact-route__stop--last {
padding-bottom: 0;
}

.contact-route__marker {
position: relative;
z-index: 2;
display: flex;
justify-content: center;
padding-top: 0.15rem;
}

.contact-route__dot {
display: block;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-light);
}


/*
Wichtig:
Im Kontakt-Fahrplan dürfen die Marker selbst niemals
Rahmen, Unterstreichungen oder Pseudo-Elemente bekommen.
*/

.contact-route__marker,
.contact-route__marker::before,
.contact-route__marker::after,
.contact-route__dot::before,
.contact-route__dot::after {
border-top: 0;
border-bottom: 0;
box-shadow: none;
background-image: none;
}

.contact-route__marker::before,
.contact-route__marker::after,
.contact-route__dot::before,
.contact-route__dot::after {
content: none;
display: none;
}

.contact-route__content {
min-width: 0;
}

.contact-route__label {
margin: 0 0 1rem;
color: var(--color-accent);
font-size: 0.9rem;
font-weight: 500;
line-height: 1.3;
}

.contact-route__content h2 {
max-width: 760px;
margin: 0 0 1.8rem;
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 500;
line-height: 1.05;
letter-spacing: -0.025em;
}

.contact-route__address {
margin: 0 0 1.5rem;
color: var(--color-muted);
font-size: 1.05rem;
font-style: normal;
line-height: 1.7;
}

.contact-route__text {
max-width: 620px;
margin: 0 0 1.35rem;
color: var(--color-muted);
font-size: 1.05rem;
line-height: 1.7;
}


/* ----------------------------------------------------------
Kontakt – Links
---------------------------------------------------------- */

.contact-route a {
position: relative;
inset: auto;
display: inline;
width: auto;
max-width: 100%;
height: auto;
min-width: 0;
min-height: 0;
margin: 0;
padding: 0;
border: 0;
background: transparent;
box-shadow: none;
visibility: visible;
opacity: 1;
color: var(--color-text);
text-indent: 0;
font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
font-style: normal;
text-transform: none;
letter-spacing: normal;
white-space: normal;
overflow-wrap: anywhere;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2em;
}

/* Keine unsichtbaren Linkflächen durch dekorative Pseudo-Elemente. */
.contact-route a::before,
.contact-route a::after,
.contact-page__credit a::before,
.contact-page__credit a::after {
content: none;
display: none;
}

.contact-route .text-link {
font-size: 1rem;
font-weight: 400;
line-height: 1.4;
}

.contact-route__phone,
.contact-route__email {
font-size: clamp(1.25rem, 2vw, 1.65rem);
font-weight: 500;
line-height: 1.35;
}

.contact-route .text-link:hover,
.contact-route .text-link:focus,
.contact-route__phone:hover,
.contact-route__phone:focus,
.contact-route__email:hover,
.contact-route__email:focus {
opacity: 0.55;
}


/* ----------------------------------------------------------
Kontakt – Öffnungszeiten
---------------------------------------------------------- */

.contact-hours {
max-width: 650px;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}

.contact-hours__row {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 2rem;
align-items: baseline;
padding: 0.9rem 0;
border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.contact-hours__row span {
color: var(--color-muted);
font-size: 1rem;
line-height: 1.5;
}

.contact-hours__row strong {
color: var(--color-text);
font-size: 1rem;
font-weight: 500;
line-height: 1.5;
white-space: nowrap;
}

.contact-hours__kitchen {
max-width: 650px;
margin: 1.35rem 0 0;
color: var(--color-accent);
font-size: 0.95rem;
font-weight: 500;
line-height: 1.5;
}

.contact-route__reservation-note {
margin: 1.1rem 0 0;
color: var(--color-muted);
font-size: 0.9rem;
line-height: 1.5;
}


/* ----------------------------------------------------------
Kontakt – Abschluss und Credit
---------------------------------------------------------- */

.contact-page__closing {
padding: 3.5rem 0;
background: var(--color-background);
}

.contact-page__closing .content-wrapper {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 3rem;
}

.contact-page__closing-label {
margin: 0;
padding: 0;
border: 0;
color: var(--color-text);
font-size: clamp(1.25rem, 2vw, 1.65rem);
font-weight: 500;
line-height: 1.3;
text-decoration: none;
}

.contact-page__credit {
margin: 0;
padding: 0;
border: 0;
color: var(--color-muted);
font-size: 0.78rem;
font-weight: 400;
line-height: 1.5;
text-align: right;
}

.contact-page__credit a {
position: relative;
inset: auto;
display: inline;
margin: 0;
padding: 0;
border: 0;
box-shadow: none;
text-decoration-line: underline;
text-decoration-color: rgba(104, 104, 104, 0.45);
text-decoration-thickness: 1px;
text-underline-offset: 0.15em;
background: transparent;
color: var(--color-muted);
font: inherit;
visibility: visible;
opacity: 1;
text-indent: 0;
text-transform: none;
letter-spacing: normal;
white-space: normal;
}

.contact-page__credit a:hover,
.contact-page__credit a:focus {
opacity: 0.55;
}


/* ----------------------------------------------------------
Mobile
---------------------------------------------------------- */

@media (max-width: 800px) {

.food .content-wrapper {
grid-template-columns: 1fr;
gap: 2.5rem;
}

.food__content {
max-width: 680px;
}

.food__image {
margin-top: 0;
}

.subpage-intro {
padding: 4rem 0;
}

.subpage-intro__grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.subpage-intro__content {
max-width: 620px;
}

.subpage-intro h1 {
max-width: 600px;
font-size: clamp(2.8rem, 12vw, 4.5rem);
}

.subpage-intro__image {
width: min(100%, 560px);
}

.menu-section {
padding: var(--space-lg) 0;
}

.menu-section__header {
margin-bottom: 2.5rem;
}

.menu-items {
grid-template-columns: 1fr;
}

.menu-item {
grid-template-columns: 44px minmax(0, 1fr);
gap: 1.25rem;
padding: 2rem 0;
}

.menu-item:nth-last-child(-n + 2) {
border-bottom: 0;
}

.menu-item:last-child {
border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.menu-item__number {
width: 38px;
height: 38px;
font-size: 0.9rem;
}

.menu-item--choice {
grid-column: auto;
grid-template-columns: 44px minmax(0, 1fr);
}

.menu-item--choice .menu-item__content {
max-width: none;
}

.menu-extra {
grid-template-columns: 1fr;
gap: 2.5rem;
margin-top: 3rem;
padding-top: 2.5rem;
}

.menu-extra__block {
max-width: 680px;
}

.menu-legend {
margin-top: 3.5rem;
padding-top: 2.5rem;
}

.drinks-intro {
padding: var(--space-lg) 0;
}

.drinks-section {
padding: var(--space-lg) 0;
}

.drinks-section__header {
margin-bottom: 2.5rem;
}

.drink-list {
grid-template-columns: 1fr;
}

.drink-item {
padding: 1.4rem 0;
}

.drink-item:nth-last-child(-n + 2) {
border-bottom: 0;
}

.drink-item:last-child {
border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.drinks-legend {
margin-top: 3.5rem;
padding-top: 2.5rem;
}

.weekly-page__intro {
padding: var(--space-lg) 0;
}

.weekly-page__intro h1 {
max-width: 700px;
font-size: clamp(2.8rem, 11vw, 4.8rem);
}

.weekly-page__menu {
padding: var(--space-lg) 0;
}

.weekly-schedule {
max-width: none;
}

.weekly-schedule__item {
gap: 1.5rem;
padding-bottom: 3.5rem;
}

.weekly-schedule__heading {
gap: 1.5rem;
}

.weekly-schedule__description {
font-size: 1rem;
}

.weekly-page__empty {
padding-left: calc(52px + 1.5rem);
}

.station-page__intro {
padding: var(--space-lg) 0;
}

.station-page__intro-grid {
grid-template-columns: 1fr;
gap: 3.5rem;
}

.station-page__intro-content {
max-width: 700px;
}

.station-page__intro h1 {
max-width: 700px;
font-size: clamp(2.8rem, 11vw, 4.8rem);
}

.station-page__lead,
.station-page__statement {
max-width: 620px;
}

.station-page__illustration {
width: min(100%, 720px);
}

.station-timeline {
padding: var(--space-lg) 0;
}

.station-timeline__stop {
gap: 1.5rem;
padding-bottom: 5rem;
}

.station-timeline__stop--last {
padding-bottom: 4rem;
}

.station-timeline__content h2 {
margin-bottom: 1.75rem;
}

.station-page__source {
margin-left: calc(52px + 1.5rem);
}


/* Kontakt – Tablet */

.contact-page__intro {
padding: var(--space-lg) 0;
}

.contact-page__intro h1 {
max-width: 760px;
font-size: clamp(2.8rem, 11vw, 4.8rem);
}

.contact-route {
padding: var(--space-lg) 0;
}

.contact-route__stop {
gap: 1.5rem;
padding-bottom: 4.5rem;
}

.contact-route__content h2 {
margin-bottom: 1.6rem;
}

.contact-page__closing {
padding: 3rem 0;
}

}


@media (max-width: 700px) {

.site-header {
padding: 0.65rem 0;
}

.site-header__inner {
position: relative;
gap: 1rem;
}

.site-logo {
width: min(250px, 62vw);
max-width: none;
}

.menu-toggle {
display: flex;
align-items: center;
gap: 0.75rem;
margin-left: auto;
padding: 0;
border: 0;
background: transparent;
color: var(--color-text);
font: inherit;
font-size: 0.95rem;
line-height: 1;
cursor: pointer;
}

.menu-toggle__icon {
position: relative;
display: block;
width: 22px;
height: 14px;
}

.menu-toggle__icon span {
position: absolute;
left: 0;
width: 100%;
height: 1px;
background: currentColor;
transition:
top 0.2s ease,
transform 0.2s ease;
}

.menu-toggle__icon span:first-child {
top: 3px;
}

.menu-toggle__icon span:last-child {
top: 10px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
top: 7px;
transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
top: 7px;
transform: rotate(-45deg);
}

.main-navigation {
display: none;
position: absolute;
z-index: 20;
top: calc(100% + 0.65rem);
left: -1rem;
width: calc(100% + 2rem);
margin-left: 0;
padding: 1.25rem 1rem 1.4rem;
background: var(--color-background);
border-top: 1px solid rgba(29, 29, 27, 0.12);
}

.main-navigation.is-open {
display: block;
}

.main-navigation ul {
display: block;
}

.main-navigation li {
border: 0;
}

.main-navigation li:nth-child(3) {
margin-left: 0;
}

.main-navigation li:nth-last-child(-n + 2) {
border: 0;
box-shadow: none;
}

.main-navigation li + li {
border-top: 0;
}

.main-navigation a {
padding: 0.72rem 0;
font-size: 1.15rem;
line-height: 1.25;
white-space: normal;
}

.hero {
min-height: 75svh;
padding-bottom: var(--space-md);
}

.intro {
padding: var(--space-lg) 0;
}

.weekly-menu .content-wrapper {
grid-template-columns: 32px minmax(0, 1fr);
gap: 1.25rem;
}

.weekly-menu__marker {
min-height: 240px;
}

.weekly-menu__marker::before,
.weekly-menu__marker span {
left: 40%;
}


/* Speiseplan – Streckennavigation */

.menu-route {
padding: var(--space-lg) 0;
}

.menu-route .section-label {
margin-bottom: 2.5rem;
}

.menu-route__track {
display: flex;
flex-direction: column;
gap: 0;
}

.menu-route__track::before {
top: 8px;
bottom: 8px;
left: 7px;
right: auto;
width: 1px;
height: auto;
}

.menu-route__stop {
display: grid;
grid-template-columns: 15px minmax(0, 1fr);
align-items: center;
gap: 1.25rem;
min-height: 58px;
text-align: left;
}

.menu-route__dot {
grid-column: 1;
}

.menu-route__label {
grid-column: 2;
font-size: 1.05rem;
}


/* Speiseplan – Gerichte */

.menu-item__heading {
grid-template-columns: minmax(0, 1fr) auto;
gap: 1rem;
}

.menu-item h3 {
font-size: 1.2rem;
}

.menu-item__price {
font-size: 0.95rem;
}

.menu-item__description {
font-size: 0.98rem;
}

.menu-section__subtitle {
font-size: 0.95rem;
}

.menu-item__vegetarian {
width: 1.45rem;
height: 1.45rem;
font-size: 0.68rem;
}

.menu-item--choice .menu-item__heading {
grid-template-columns: 1fr;
}

.menu-item__options {
grid-template-columns: 1fr;
gap: 1.25rem;
margin-top: 1.5rem;
}

.menu-item__options p {
font-size: 0.95rem;
}

.menu-section__notice {
margin-top: 2.5rem;
align-items: flex-start;
}

.menu-extra {
gap: 2.25rem;
margin-top: 2.5rem;
padding-top: 2.25rem;
}

.menu-extra__block h3 {
font-size: 1.15rem;
}

.menu-extra__block p,
.menu-extra__block li {
font-size: 0.95rem;
}

.menu-legend {
margin-top: 3rem;
padding-top: 2.25rem;
}

.menu-legend__allergens {
margin-bottom: 2rem;
font-size: 0.95rem;
}

.menu-legend__additives h3 {
font-size: 1.05rem;
}

.menu-legend__additives p {
font-size: 0.85rem;
line-height: 1.75;
}

.menu-legend__additives span {
margin: 0 0.3rem;
}


/* Getränkefahrplan – Streckennavigation */

.drinks-route {
padding: var(--space-lg) 0;
}

.drinks-route__track {
display: flex;
flex-direction: column;
gap: 0;
}

.drinks-route__track::before {
top: 8px;
bottom: 8px;
left: 7px;
right: auto;
width: 1px;
height: auto;
}

.drinks-route__stop {
display: grid;
grid-template-columns: 15px minmax(0, 1fr);
align-items: center;
gap: 1.25rem;
min-height: 58px;
text-align: left;
}

.drinks-route__dot {
grid-column: 1;
}

.drinks-route__label {
grid-column: 2;
padding: 0;
font-size: 1.05rem;
}

.drink-item {
grid-template-columns: minmax(0, 1fr) auto;
gap: 1rem;
padding: 1.35rem 0;
}

.drink-item h3 {
font-size: 1.05rem;
}

.drink-item p {
font-size: 0.88rem;
}

.drink-item__price {
font-size: 0.9rem !important;
}

.drinks-legend {
margin-top: 3rem;
padding-top: 2.25rem;
}

.drinks-legend h3 {
font-size: 1.05rem;
}

.drinks-legend p {
font-size: 0.85rem;
line-height: 1.75;
}

.drinks-legend span {
margin: 0 0.3rem;
}


/* ----------------------------------------------------------
Wochenkarte – Mobile
---------------------------------------------------------- */

.weekly-page__intro {
padding: 4rem 0;
}

.weekly-page__intro h1 {
margin-bottom: 1.75rem;
font-size: clamp(2.8rem, 13vw, 4.2rem);
line-height: 1;
}

.weekly-page__intro-text {
font-size: 1.05rem;
line-height: 1.65;
}

.weekly-page__validity {
align-items: flex-start;
gap: 0.9rem;
margin-top: 2.5rem;
}

.weekly-page__validity-dot {
margin-top: 0.3rem;
}

.weekly-page__menu {
padding: 4rem 0;
}

.weekly-schedule::before {
left: 7px;
top: 9px;
bottom: 9px;
}

.weekly-schedule__item {
grid-template-columns: 15px minmax(0, 1fr);
gap: 1.25rem;
padding-bottom: 3rem;
}

.weekly-schedule__station {
padding-top: 0.35rem;
}

.weekly-schedule__dot {
width: 15px;
height: 15px;
}

.weekly-schedule__content {
padding-bottom: 2.25rem;
}

.weekly-schedule__heading {
grid-template-columns: minmax(0, 1fr) auto;
gap: 1rem;
align-items: start;
}

.weekly-schedule__title {
display: block;
}

.weekly-schedule__number {
display: block;
margin: 0 0 0.55rem;
font-size: 0.85rem;
}

.weekly-schedule__title h2 {
font-size: clamp(1.35rem, 6vw, 1.7rem);
line-height: 1.2;
}

.weekly-schedule__price {
padding-top: 1.45rem;
font-size: 0.95rem;
}

.weekly-schedule__description {
margin-top: 0.85rem;
font-size: 0.95rem;
line-height: 1.6;
}

.weekly-page__empty {
padding-left: calc(15px + 1.25rem);
}

.weekly-page__empty h2 {
font-size: clamp(2rem, 9vw, 3rem);
}


/* ----------------------------------------------------------
Der Bahnhof – Unterseite – Mobile
---------------------------------------------------------- */

.station-page__intro {
padding: 4rem 0;
}

.station-page__intro-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.station-page__intro h1 {
max-width: 620px;
margin-bottom: 1.75rem;
font-size: clamp(2.8rem, 12vw, 4.2rem);
line-height: 1;
}

.station-page__lead {
font-size: 1.05rem;
line-height: 1.65;
}

.station-page__statement {
margin-top: 2.5rem;
padding-top: 1.25rem;
font-size: 1.2rem;
}

.station-page__illustration figcaption {
margin-top: 0.6rem;
font-size: 0.78rem;
}

.station-timeline {
padding: 4rem 0;
}

.station-timeline > .content-wrapper::before {
top: 8px;
left: 7px;
}

.station-timeline__stop {
grid-template-columns: 15px minmax(0, 1fr);
gap: 1.25rem;
padding-bottom: 4.5rem;
}

.station-timeline__stop--last {
padding-bottom: 3.5rem;
}

.station-timeline__marker {
padding-top: 0.1rem;
}

.station-timeline__dot {
width: 15px;
height: 15px;
}

.station-timeline__year {
margin-bottom: 0.9rem;
font-size: 0.85rem;
}

.station-timeline__content h2 {
margin-bottom: 1.5rem;
font-size: clamp(1.8rem, 8vw, 2.5rem);
line-height: 1.08;
}

.station-timeline__content > p:not(.station-timeline__year):not(.station-timeline__closing):not(.station-timeline__final) {
margin-bottom: 1.2rem;
font-size: 0.98rem;
line-height: 1.7;
}

.station-timeline__closing {
margin-top: 1.75rem;
font-size: 1rem;
}

.station-timeline__dates {
grid-template-columns: 1fr;
margin: 2rem 0;
}

.station-timeline__date {
padding: 1.4rem 1.25rem;
}

.station-timeline__date strong {
font-size: 2rem;
}

.station-timeline__date span {
font-size: 0.9rem;
}

.station-timeline__final {
margin-top: 2rem;
padding-top: 1.5rem;
font-size: 1.1rem;
}

.station-page__source {
margin-left: calc(15px + 1.25rem);
padding-top: 1.5rem;
}

.station-page__source p {
font-size: 0.78rem;
}


/* ----------------------------------------------------------
Kontakt – Mobile
---------------------------------------------------------- */

.contact-page__intro {
padding: 4rem 0;
}

.contact-page__intro h1 {
max-width: 620px;
margin-bottom: 1.75rem;
font-size: clamp(2.8rem, 12vw, 4.2rem);
line-height: 1;
}

.contact-page__lead {
font-size: 1.05rem;
line-height: 1.65;
}

.contact-route {
padding: 4rem 0;
}

.contact-route > .content-wrapper::before {
top: 7px;
bottom: 7px;
left: 7px;
}

.contact-route__stop {
grid-template-columns: 15px minmax(0, 1fr);
gap: 1.25rem;
padding-bottom: 3.75rem;
}

.contact-route__stop--last {
padding-bottom: 0;
}

.contact-route__marker {
padding-top: 0;
}

.contact-route__dot {
width: 15px;
height: 15px;
}

.contact-route__label {
margin-bottom: 0.8rem;
font-size: 0.85rem;
}

.contact-route__content h2 {
margin-bottom: 1.35rem;
font-size: clamp(1.8rem, 8vw, 2.5rem);
line-height: 1.08;
}

.contact-route__address,
.contact-route__text {
font-size: 0.98rem;
line-height: 1.65;
}

.contact-hours__row {
gap: 1rem;
padding: 0.8rem 0;
}

.contact-hours__row span,
.contact-hours__row strong {
font-size: 0.95rem;
}

.contact-hours__kitchen {
margin-top: 1.2rem;
font-size: 0.9rem;
}

.contact-route__phone,
.contact-route__email {
font-size: 1.2rem;
overflow-wrap: anywhere;
}

.contact-route__reservation-note {
font-size: 0.85rem;
}

.contact-page__closing {
padding: 2.75rem 0;
}

.contact-page__closing .content-wrapper {
display: block;
}

.contact-page__closing-label {
margin: 0 0 1.5rem;
font-size: 1.35rem;
}

.contact-page__credit {
font-size: 0.75rem;
text-align: left;
}

}

/* ----------------------------------------------------------
Wochenkarte – zwei A5-Hochformatkarten auf A4 quer.
Die bestehende Bildschirmgestaltung bleibt erhalten.
---------------------------------------------------------- */
.weekly-page__print-action { margin-top: 2rem; }
.weekly-print-button {
display: inline-block;
padding: 0.75rem 1.1rem;
border: 1px solid var(--color-accent);
border-radius: 3px;
background: var(--color-accent);
color: #fff;
font: inherit;
line-height: 1.3;
cursor: pointer;
}
.weekly-print-button:disabled { opacity: 0.5; cursor: default; }
.weekly-print-button:focus-visible { outline: 2px solid #171816; outline-offset: 4px; }
.weekly-print-document { background: #e8e8e8; margin: 0; padding: 0; }
.weekly-print-toolbar { max-width: 297mm; margin: 0 auto; padding: 24px; }
.weekly-print-toolbar h1 { font-size: 1.6rem; }
.weekly-print-toolbar p { margin-bottom: 0.8rem; }
.weekly-print-toolbar a { margin-left: 1rem; text-decoration: underline; }
.weekly-print-sheet {
--weekly-print-font: 12pt;
position: relative;
display: grid;
grid-template-columns: 148.5mm 148.5mm;
grid-template-rows: 210mm;
width: 297mm;
height: 210mm;
margin: 0 auto 24px;
background: #fff;
color: #171816;
font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
font-size: var(--weekly-print-font);
line-height: 1.25;
box-shadow: 0 2px 18px #0002;
}
.weekly-print-card {
box-sizing: border-box;
width: 148.5mm;
height: 210mm;
padding: 9mm;
margin: 0;
break-inside: avoid;
}
.weekly-print-card__inner { height: 100%; display: flex; flex-direction: column; }
.weekly-print-card__header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 0.35em;
flex: 0 0 auto;
padding-bottom: 0.6em;
margin-bottom: 0.85em;
border-bottom: 1pt solid #58665a;
}
.weekly-print-card__logo { display: block; width: 50mm; height: 15mm; max-width: 100%; object-fit: contain; margin: 0 auto 1mm; }
.weekly-print-card h2 { margin: 0; font-size: 2em; line-height: 1; }
.weekly-print-card__validity { margin: 0; text-align: center; font-size: 0.85em; }
.weekly-print-card__items {
display: grid;
grid-template-columns: minmax(0, 1fr);
align-content: start;
gap: 0.8em 7mm;
min-height: 0;
flex: 1 1 auto;
}
.weekly-print-card__item { min-width: 0; border-bottom: 0.5pt solid #ccc; padding-bottom: 0.65em; break-inside: avoid; }
.weekly-print-card__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 0.7em; }
.weekly-print-card h3 { min-width: 0; margin: 0; font-size: 1.05em; line-height: 1.2; font-weight: 500; overflow-wrap: anywhere; }
.weekly-print-card__number { color: #58665a; font-size: 0.85em; }
.weekly-print-card__price { flex: 0 0 auto; max-width: 35%; margin: 0; font-size: 1em; overflow-wrap: anywhere; text-align: right; }
.weekly-print-card__description { margin: 0.25em 0 0; font-size: 0.9em; line-height: 1.25; overflow-wrap: anywhere; }
.weekly-print-cut { position: absolute; left: 148.5mm; top: 7mm; bottom: 7mm; border-left: 0.3pt dashed #999; }
.weekly-print-error { display: none; }
@media print {
.weekly-page__print-action { display: none !important; }
html:has(body.weekly-print-document) { margin: 0 !important; padding: 0 !important; }
body.weekly-print-document { width: 297mm; margin: 0 !important; padding: 0 !important; background: #fff; }
.weekly-print-document .weekly-print-toolbar { display: none !important; }
/* Drucksetup: Trennung und beide Inhaltsanfaenge +9mm nach rechts.
   A4 bleibt 297mm breit; rechter Satzspiegel entsprechend 9mm schmaler.
   Mindestens 9mm Innenabstand zur korrigierten Trennung bleiben erhalten. */
.weekly-print-document .weekly-print-sheet {
margin: 0;
box-shadow: none;
break-inside: avoid;
grid-template-columns: 157.5mm 139.5mm;
}
.weekly-print-document .weekly-print-card {
width: auto;
min-width: 0;
}
.weekly-print-document .weekly-print-card:first-of-type {
padding-left: 18mm;
}
/* Nur rechter Satzspiegel: bei gleicher Inhaltsbreite 4mm nach rechts.
   Innen 13mm, außen 5mm statt beidseitig 9mm; keine neue Textskalierung.
   Kartenbreiten, linke Karte und Schnittlinie bleiben unverändert. */
.weekly-print-document .weekly-print-card + .weekly-print-card {
padding-left: 13mm;
padding-right: 5mm;
}
.weekly-print-document .weekly-print-cut {
left: 157.5mm;
}
.weekly-print-document .weekly-print-sheet[data-ready="false"] { display: none; }
.weekly-print-document .weekly-print-sheet[data-measuring="true"] { display: grid; }
.weekly-print-document .weekly-print-sheet[data-ready="false"] + .weekly-print-error {
display: block;
margin: 20mm;
font: 14pt/1.5 Arial, sans-serif;
}
}


/* Impressum / Datenschutz und rechtliche Footer-Links */
.legal-page { padding-bottom: var(--space-xl); }
.legal-page__intro { padding: clamp(4rem, 8vw, 7rem) 0 3rem; }
.legal-page__intro h1 {
margin: 0;
font-size: clamp(2.5rem, 6vw, 5.8rem);
letter-spacing: -0.035em;
overflow-wrap: anywhere;
}
.legal-page__content { max-width: var(--content-narrow); }
.legal-page__content section {
padding: 2rem 0;
border-top: 1px solid rgba(29, 29, 27, 0.16);
}
.legal-page__content h2 { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; margin-bottom: 1.25rem; }
.legal-page__content h3 { font-size: 1.15rem; line-height: 1.3; margin: 1.75rem 0 0.75rem; }
.legal-page__content p,
.legal-page__content address,
.legal-page__content ul { margin: 0 0 1.25rem; }
.legal-page__content address { font-style: normal; }
.legal-page__content section > :last-child { margin-bottom: 0; }
.legal-page__content ul { padding-left: 1.25rem; }
.legal-page__content li + li { margin-top: 0.5rem; }
.legal-page__content a,
.site-footer__legal a { text-decoration: underline; text-underline-offset: 0.2em; overflow-wrap: anywhere; }
.legal-page__content a:hover,
.site-footer__legal a:hover { opacity: 0.75; }
.legal-page__content a:focus-visible,
.site-footer__legal a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.legal-page__notice { padding-left: 1rem; border-left: 2px solid var(--color-accent); color: var(--color-muted); }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-top: 0.75rem; }


/* Zurückhaltender Hinweis zu Unverträglichkeiten, Allergenen und Zusatzstoffen. */
.weekly-page__allergen-note,
.menu-legend__allergens {
color: var(--color-muted);
font-size: 0.875rem;
font-weight: 400;
line-height: 1.6;
}
.weekly-page__allergen-note {
max-width: 960px;
margin: 2rem 0 0;
}
.weekly-print-card__allergen-note {
flex: 0 0 auto;
margin: 0.8em 0 0;
color: #686868;
font-size: 8pt;
font-weight: 400;
line-height: 1.3;
}


/* ----------------------------------------------------------
Gutscheine – Unterseite
---------------------------------------------------------- */

.voucher-page {
padding: clamp(4rem, 9vw, 9rem) 0 clamp(5rem, 10vw, 10rem);
background: var(--color-background);
}

.voucher-page__intro {
max-width: var(--content-narrow);
}

.voucher-page__intro h1 {
margin: 0 0 1.75rem;
font-size: clamp(3rem, 6vw, 5.8rem);
font-weight: 500;
line-height: 0.98;
letter-spacing: -0.035em;
}

.voucher-page__lead {
max-width: 560px;
margin: 0;
color: var(--color-muted);
font-size: clamp(1.1rem, 1.6vw, 1.35rem);
line-height: 1.55;
}

.voucher-page__content {
margin-top: clamp(3.5rem, 7vw, 6rem);
}

.voucher-page__status {
position: relative;
max-width: var(--content-narrow);
padding: 2rem 0 2rem 2.5rem;
}

.voucher-page__marker {
position: absolute;
top: 0;
bottom: 0;
left: 7px;
width: 1px;
background: rgba(88, 102, 90, 0.35);
}

.voucher-page__marker::before {
content: "";
position: absolute;
top: 2.45rem;
left: 50%;
width: 15px;
height: 15px;
border: 2px solid var(--color-accent);
border-radius: 50%;
background: var(--color-background);
transform: translateX(-50%);
}

.voucher-page__message {
margin: 0;
color: var(--color-accent);
font-size: clamp(1.1rem, 1.6vw, 1.35rem);
font-weight: 400;
line-height: 1.6;
}

@media (max-width: 600px) {
.voucher-page__intro h1 {
font-size: clamp(2.8rem, 12vw, 4.2rem);
line-height: 1;
}

.voucher-page__lead {
font-size: 1.05rem;
line-height: 1.65;
}

.voucher-page__status {
padding-left: calc(15px + 1.25rem);
}
}


/* Mobiles Menü: deckender Viewport und iOS-Scrollsperre.
   Ausschließlich Bildschirm und geöffnetes Menü; Druckregeln unverändert. */
@media screen and (max-width: 700px) {
html.bv-menu-open {
overflow: hidden;
overscroll-behavior: none;
}

html.bv-menu-open body {
position: fixed;
top: var(--bv-menu-scroll-y, 0px);
left: var(--bv-menu-scroll-x, 0px);
width: 100%;
overflow: hidden;
overscroll-behavior: none;
}

html.bv-menu-open .site-header {
position: fixed;
z-index: 1000;
top: var(--bv-menu-header-top, 0px);
left: 0;
width: 100%;
background: var(--color-background);
}

html.bv-menu-open .main-navigation.is-open {
position: fixed;
top: var(--bv-menu-top, 0px);
left: 0;
width: 100%;
height: calc(100vh - var(--bv-menu-top, 0px));
height: calc(100dvh - var(--bv-menu-top, 0px));
height: var(--bv-menu-height, calc(100dvh - var(--bv-menu-top, 0px)));
overflow-x: hidden;
overflow-y: auto;
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
padding-bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
background: var(--color-background);
}
}
