/*
Theme Name: Wurscht & Durscht
Theme URI: https://wurscht-und-durscht.at/
Author: Wurscht & Durscht
Description: Custom WordPress Theme für Wurscht & Durscht Obsteig.
Version: 1.0.0
Text Domain: wudu
*/

:root {
  color-scheme: dark;
  --ink: oklch(18% 0.018 42);
  --ink-2: oklch(24% 0.025 42);
  --coal: oklch(14% 0.014 42);
  --paper: oklch(94% 0.035 78);
  --paper-2: oklch(88% 0.045 72);
  --muted: oklch(78% 0.035 72);
  --tomato: oklch(58% 0.19 35);
  --tomato-dark: oklch(47% 0.17 31);
  --mustard: oklch(78% 0.15 82);
  --herb: oklch(53% 0.09 132);
  --line: oklch(38% 0.04 48);
  --shadow: 0 24px 70px oklch(8% 0.01 42 / 55%);
  --font-head: "Caprasimo Local", Georgia, serif;
  --font-body: "Patrick Hand Local", "Segoe UI", sans-serif;
  --font-special: "Alfa Slab Local", Georgia, serif;
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--ink) 0%, var(--coal) 100%);
  background-size: 42px 42px, auto;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1rem + 0.45vw, 1.45rem);
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--mustard);
}

p,
h1,
h2,
h3,
h4,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

button {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--mustard);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid oklch(100% 0 0 / 10%);
  background: oklch(16% 0.018 42 / 94%);
  backdrop-filter: blur(12px);
}

.header-shell {
  width: min(100% - 2rem, 1240px);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--tomato);
  border-radius: 50%;
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: 1.3rem;
  line-height: 1;
  transform: rotate(-8deg);
}

.brand-logo img {
  width: auto;
  max-width: 128px;
  max-height: 70px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.55rem);
  line-height: 1;
}

.brand-text strong {
  color: var(--tomato);
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.nav-link {
  position: relative;
  color: var(--paper-2);
  font-size: 1.05rem;
}

.nav-link--icon,
.mobile-nav-link--icon,
.footer-link--icon,
.kicker--with-icon,
.btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-veggie-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.product-veggie-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.mobile-nav .nav-veggie-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.footer-link--icon {
  width: max-content;
}

.kicker--with-icon {
  width: max-content;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link--call {
  padding: 0.55rem 1rem;
  border: 1px solid var(--tomato);
  border-radius: 999px;
  color: var(--paper);
}

.nav-link--call::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 1rem;
  border-radius: 8px;
  background: oklch(100% 0 0 / 5%);
  font-family: var(--font-head);
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
}

.section-dark {
  background:
    radial-gradient(circle at 80% 10%, oklch(58% 0.19 35 / 18%), transparent 28rem),
    linear-gradient(135deg, var(--coal), var(--ink-2));
}

.hero-copy {
  padding-inline: 1rem;
}

.kicker {
  margin-bottom: 0.8rem;
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: clamp(0.78rem, 0.72rem + 0.25vw, 0.95rem);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 6.0vw, 4.0rem);
  line-height: 1.0;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.0;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.0;
}

.hero-lead {
  margin-top: 1.5rem;
  color: var(--paper-2);
}

.hero-actions,
.route-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-special);
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper);
  background: var(--tomato-dark);
  box-shadow: 0 12px 30px oklch(44% 0.17 34 / 35%);
}

.btn-primary:hover {
  color: var(--paper);
  background: var(--tomato);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--paper);
  background: oklch(100% 0 0 / 5%);
}

.location .btn-secondary {
  border-color: color-mix(in oklch, var(--ink), transparent 55%);
  color: var(--ink);
  background: oklch(96% 0.035 78);
}

.menu-page .page-hero .btn-secondary {
  border-color: color-mix(in oklch, var(--ink), transparent 55%);
  color: var(--ink);
  background: oklch(96% 0.035 78);
}

.menu-page .page-hero .btn-secondary:hover {
  color: var(--ink);
  background: var(--mustard);
}

.location .btn-secondary:hover {
  color: var(--ink);
  background: var(--mustard);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-facts div {
  min-width: 8rem;
  padding: 1rem;
  border: 1px solid oklch(100% 0 0 / 10%);
  border-radius: 8px;
  background: oklch(100% 0 0 / 4%);
}

.hero-facts dt {
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-facts dd {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: min(68svh, 760px);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.hero-media img,
.final-cta img,
.story-media img,
.image-strip img {
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  color: var(--paper);
  background: oklch(16% 0.018 42 / 86%);
  font-size: 1.05rem;
}

.ticker {
  overflow: hidden;
  padding: 0.85rem max(1rem, calc((100vw - 1240px) / 2));
  border-block: 1px solid var(--line);
  background: var(--mustard);
  color: var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 0.65rem;
  margin-inline: auto;
}

.ticker.is-animated .ticker-track {
  margin-inline: 0;
  animation: ticker-marquee 34s linear infinite;
  will-change: transform;
}

.ticker.is-animated:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  flex: 0 0 auto;
  font-family: var(--font-special);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.ticker-track span::after {
  content: " /";
  color: var(--tomato-dark);
}

@keyframes ticker-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 0.325rem), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker {
    overflow: auto;
    scrollbar-width: none;
  }

  .ticker-track {
    animation: none;
  }
}

.story-band,
.location,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
}

.story-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.story-copy {
  align-self: center;
  padding-inline: 1rem;
}

.story-copy p:not(.kicker),
.section-head p,
.location-copy p,
.page-hero p {
  margin-top: 20px;	
  color: var(--paper-2);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 auto;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 4px oklch(58% 0.19 35 / 16%);
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-link::after {
  content: ">";
  margin-left: 0.5rem;
  color: var(--tomato);
}

.section-warm,
.menu-page,
.legal-page,
.standard-page {
  color: var(--ink);
  background:
    linear-gradient(90deg, oklch(30% 0.04 52 / 5%) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.menu-teaser,
.reviews,
.drinks-section,
.menu-section,
.quality-teaser,
.page-hero,
.legal-page,
.standard-page {
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
}

.section-head {
  width: min(100%, 760px);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-head h2,
.menu-card h2,
.drink-card h3,
.legal-content h1,
.legal-content h2,
.page-hero h1 {
  color: inherit;
}

.section-head p {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--ink), var(--paper) 22%);
}

.section-head--split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: end;
}

.section-head--split p:not(.kicker) {
  color: var(--paper-2);
}

.highlight-grid,
.review-grid,
.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-item,
.review-grid blockquote,
.review-card,
.drink-card,
.menu-card,
.hours-panel,
.legal-content {
  border: 1px solid color-mix(in oklch, currentColor, transparent 82%);
  border-radius: 8px;
}

.highlight-item {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--ink);
  color: var(--paper);
}

.highlight-item span,
.badge,
.menu-cat {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.highlight-item p {
  margin-top: 0.7rem;
  color: var(--paper-2);
}

.quality-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 16%, oklch(78% 0.15 82 / 14%), transparent 22rem),
    var(--ink);
}

.quality-teaser p:not(.kicker) {
  margin-top: 1rem;
  color: var(--paper-2);
}

.quality-teaser .btn {
  margin-top: 2rem;
}

.quality-teaser figure {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-teaser img {
  height: 100%;
  object-fit: cover;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 360px;
}

.reviews .section-head h2,
.reviews .section-head p {
  color: var(--paper);
}

.review-slider {
  --review-gap: 1rem;
  --review-card-size: calc((100% - 2rem) / 3);
  position: relative;
  padding-inline: 3.25rem;
}

.review-slider-viewport {
  overflow: hidden;
}

.review-slider-track {
  display: flex;
  gap: var(--review-gap);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  position: relative;
  flex: 0 0 var(--review-card-size);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  overflow: hidden;
  background: oklch(100% 0 0 / 5%);
}

.review-card__top,
.review-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.review-card__top {
  justify-content: space-between;
  color: var(--muted);
  font-size: 1rem;
}

.review-stars {
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.review-card blockquote {
  position: relative;
}

.review-card p {
  position: relative;
  color: var(--paper);
}

.review-card cite {
  position: relative;
  display: block;
  margin-top: 1rem;
  color: var(--mustard);
  font-style: normal;
}

.review-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-tags li {
  padding: 0.35rem 0.55rem;
  border: 1px solid oklch(100% 0 0 / 14%);
  border-radius: 999px;
  color: var(--paper-2);
  background: oklch(100% 0 0 / 4%);
  font-size: 0.9rem;
  line-height: 1;
}

.review-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--tomato);
  border-radius: 50%;
  color: var(--paper);
  background: var(--tomato-dark);
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease-out, color 180ms ease-out, opacity 180ms ease-out;
}

.review-slider-btn:hover {
  background: var(--tomato);
}

.review-slider-btn:disabled {
  opacity: 0.42;
  cursor: default;
}

.review-slider-btn--prev {
  left: 0;
}

.review-slider-btn--next {
  right: 0;
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.review-slider-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 1px solid oklch(100% 0 0 / 28%);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.review-slider-dot.is-active {
  border-color: var(--mustard);
  background: var(--mustard);
}

.location {
  color: var(--ink);
  background: var(--paper-2);
}

.location-copy {
  align-self: center;
  padding-inline: 1rem;
}

.location-copy p,
.location-copy address {
  color: color-mix(in oklch, var(--ink), var(--paper) 18%);
}

.info-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.info-stack address {
  font-style: normal;
}

.hours-panel {
  align-self: center;
  padding: clamp(1.2rem, 3vw, 2.3rem);
  color: var(--paper);
  background: var(--ink);
}

.hours-panel h3 {
  margin-bottom: 1rem;
  color: var(--mustard);
}

.hours-panel table {
  width: 100%;
  border-collapse: collapse;
}

.hours-panel td {
  padding: 0.65rem 0;
  border-bottom: 1px solid oklch(100% 0 0 / 10%);
}

.hours-panel td:last-child {
  text-align: right;
  color: var(--paper-2);
}

.hours-panel .is-today td {
  color: var(--mustard);
}

.hours-panel p {
  margin-top: 1rem;
  color: var(--muted);
}

.final-cta {
  min-height: 520px;
  padding-block: 0;
  color: var(--paper);
  background: var(--coal);
}

.final-cta img {
  align-self: stretch;
  min-height: 520px;
}

.final-cta div {
  align-self: center;
  padding: 3rem 1rem;
}

.final-cta .btn {
  margin-top: 2rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 5rem) max(1rem, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--muted);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-col h2 {
  margin-bottom: 0.3rem;
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-col address {
  color: var(--muted);
  font-style: normal;
}

.subfooter {
  padding: 1rem max(1rem, calc((100vw - 1240px) / 2));
  color: var(--muted);
  background: var(--coal);
}

.subfooter p {
  margin: 0;
}

.page-hero {
  padding-top: clamp(4rem, 9vw, 8rem);
}

.page-hero p {
  margin-top: 1.2rem;
  color: color-mix(in oklch, var(--ink), var(--paper) 22%);
}

.menu-section {
  padding-top: 0;
}

.menu-veggie-note {
  scroll-margin-top: calc(var(--header-h) + 2rem);
  display: grid;
  gap: 0.7rem;
  width: min(100%, 820px);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid color-mix(in oklch, var(--herb), var(--ink) 42%);
  border-radius: 8px;
  color: var(--ink);
  background: color-mix(in oklch, var(--herb), var(--paper) 78%);
}

.menu-veggie-note p:not(.kicker) {
  color: color-mix(in oklch, var(--ink), var(--paper) 18%);
}

.menu-veggie-note h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.menu-block {
  scroll-margin-top: calc(var(--header-h) + 2rem);
}

.menu-block + .menu-block {
  margin-top: clamp(3rem, 7vw, 5.5rem);
}

.menu-category-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.menu-category-head p:not(.kicker) {
  color: color-mix(in oklch, var(--ink), var(--paper) 24%);
}

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

.menu-card,
.drink-card {
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
  background: oklch(98% 0.035 78);
}

.menu-card--wide {
  grid-column: span 2;
}

.menu-card p:not(.menu-cat),
.drink-card p {
  color: color-mix(in oklch, var(--ink), var(--paper) 26%);
}

.menu-page .menu-card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-size: clamp(1.45rem, 2.15vw, 2.25rem);
  line-height: 1.0;
}

.menu-card ul,
.drink-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.menu-card li,
.drink-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-top: 0.55rem;
  border-top: 1px dashed color-mix(in oklch, var(--ink), transparent 72%);
}

.menu-card strong,
.drink-card strong {
  color: var(--tomato-dark);
  font-family: var(--font-special);
  font-size: 0.78rem;
  white-space: nowrap;
}

.drinks-section {
  padding-top: 0;
}

.allergen-note {
  width: min(100%, 920px);
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid color-mix(in oklch, var(--ink), transparent 78%);
  border-radius: 8px;
  color: color-mix(in oklch, var(--ink), var(--paper) 18%);
  background: oklch(98% 0.035 78);
}

.allergen-note p {
  margin: 0;
}

.allergen-note strong {
  color: var(--tomato-dark);
  font-family: var(--font-special);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.cash-note {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--tomato-dark);
  font-family: var(--font-special);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.legal-content,
.page-content {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  color: var(--ink);
  background: oklch(98% 0.035 78);
}

.legal-content h1,
.page-content h1 {
  color: var(--ink);
}

.legal-lead {
  margin-top: 1rem;
}

.legal-content p,
.legal-content li {
  color: color-mix(in oklch, var(--ink), var(--paper) 16%);
}

.legal-content section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklch, var(--ink), transparent 82%);
}

.legal-content h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.0;
}

.legal-content a {
  color: var(--tomato-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.standard-page {
  min-height: 70svh;
}

.page-content {
  min-height: 52svh;
}

.about-page {
  color: var(--paper);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px),
    var(--coal);
  background-size: 42px 42px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: calc(92svh - var(--header-h));
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 12% 12%, oklch(78% 0.15 82 / 18%), transparent 22rem),
    linear-gradient(140deg, var(--ink), var(--coal));
}

.about-hero-copy {
  padding-inline: 1rem;
}

.about-hero-copy p:not(.kicker),
.manifest-copy p,
.about-values p,
.about-split p,
.about-closing p {
  color: var(--paper-2);
}

.about-hero-copy p:not(.kicker) {
  margin-top: 1.5rem;
}

.about-hero-image {
  position: relative;
  min-height: min(70svh, 760px);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.about-hero-image::after {
  content: "seit Jahren am Fernpass";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mustard);
  font-family: var(--font-special);
  font-size: 0.82rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-hero-image img,
.about-split img,
.about-gallery img {
  height: 100%;
  object-fit: cover;
}

.about-manifest {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--mustard);
}

.manifest-number {
  font-family: var(--font-special);
  font-size: clamp(7rem, 19vw, 17rem);
  line-height: 0.78;
  color: var(--tomato-dark);
}

.manifest-copy p {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--ink), var(--mustard) 22%);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  background: var(--ink);
}

.about-values article {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid oklch(100% 0 0 / 12%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 5%), transparent),
    var(--ink-2);
}

.about-values span {
  color: var(--mustard);
  font-family: var(--font-special);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
}

.about-values h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.about-split figure {
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.about-split div {
  padding-inline: 1rem;
}

.about-split p {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--ink), var(--paper) 22%);
}

.about-split .btn {
  margin-top: 2rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.95fr;
  min-height: 430px;
}

.about-closing {
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 900px) / 2));
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, oklch(58% 0.19 35 / 20%), transparent 24rem),
    var(--coal);
}

.about-closing h2 {
  margin-inline: auto;
}

.about-closing p {
  margin: 1rem auto 0;
}

.about-closing .btn {
  margin-top: 2rem;
}

.about-quality-cta {
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 900px) / 2));
  color: var(--ink);
  background: var(--mustard);
  text-align: center;
}

.about-quality-cta .kicker {
  color: var(--tomato-dark);
}

.about-quality-cta h2 {
  color: var(--ink);
}

.about-quality-cta p:not(.kicker) {
  margin: 1rem auto 0;
  color: color-mix(in oklch, var(--ink), var(--mustard) 18%);
}

.about-quality-cta .btn {
  margin-top: 2rem;
}

.about-quality-cta .btn-secondary,
.route-hours .btn-secondary,
.quality-notes .btn-secondary {
  border-color: transparent;
  color: var(--paper);
  background: var(--tomato-dark);
  box-shadow: 0 12px 30px oklch(44% 0.17 34 / 35%);
}

.about-quality-cta .btn-secondary:hover,
.route-hours .btn-secondary:hover,
.quality-notes .btn-secondary:hover {
  color: var(--paper);
  background: var(--tomato);
}

.route-page {
  color: var(--paper);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px),
    var(--coal);
  background-size: 42px 42px;
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(82svh - var(--header-h));
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 82% 18%, oklch(58% 0.19 35 / 20%), transparent 24rem),
    linear-gradient(135deg, var(--ink), var(--coal));
}

.route-hero-copy {
  padding-inline: 1rem;
}

.route-hero-copy p:not(.kicker) {
  margin-top: 1.4rem;
  color: var(--paper-2);
}

.route-hero-image {
  min-height: min(62svh, 680px);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.route-hero-image img {
  height: 100%;
  object-fit: cover;
}

.route-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.route-address,
.route-note {
  padding: clamp(1.3rem, 3vw, 2.4rem);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 82%);
  border-radius: 8px;
  background: oklch(98% 0.035 78);
}

.route-address address {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--ink), var(--paper) 18%);
  font-style: normal;
}

.route-address p:not(.kicker) {
  margin-top: 1rem;
}

.route-address a {
  color: var(--tomato-dark);
}

.route-note .check-list {
  color: color-mix(in oklch, var(--ink), var(--paper) 18%);
}

.route-hours {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  background: var(--mustard);
  color: var(--ink);
}

.route-hours .kicker {
  color: var(--tomato-dark);
}

.route-hours h2 {
  color: var(--ink);
}

.route-hours-intro {
  margin-top: 1rem;
  color: color-mix(in oklch, var(--ink), var(--mustard) 18%);
}

.route-hours .btn {
  margin-top: 2rem;
}

.route-hours-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.72fr);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 44px oklch(35% 0.08 70 / 24%);
}

.route-hours table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ink);
  color: var(--paper);
}

.route-hours td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid oklch(100% 0 0 / 10%);
}

.route-hours td:last-child {
  text-align: right;
  color: var(--paper-2);
}

.route-hours .is-today td {
  color: var(--mustard);
}

.route-hours-card figure {
  min-height: 100%;
  background: var(--ink);
}

.route-hours-card img {
  height: 100%;
  object-fit: cover;
}

.quality-page {
  color: var(--paper);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px),
    var(--coal);
  background-size: 42px 42px;
}

.quality-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(84svh - var(--header-h));
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 82% 12%, oklch(53% 0.09 132 / 18%), transparent 24rem),
    linear-gradient(135deg, var(--ink), var(--coal));
}

.quality-hero-copy {
  padding-inline: 1rem;
}

.quality-hero-copy p:not(.kicker) {
  margin-top: 1.4rem;
  color: var(--paper-2);
}

.quality-hero-image {
  min-height: min(64svh, 720px);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.quality-hero-image img,
.quality-split img {
  height: 100%;
  object-fit: cover;
}

.quality-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--paper);
}

.quality-pillars article {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 360px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 82%);
  border-radius: 8px;
  background: oklch(98% 0.035 78);
}

.quality-pillars span {
  color: var(--tomato-dark);
  font-family: var(--font-special);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quality-pillars p {
  color: color-mix(in oklch, var(--ink), var(--paper) 22%);
}

.quality-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  background: var(--ink);
}

.quality-split figure {
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.quality-split div {
  padding-inline: 1rem;
}

.quality-split p:not(.kicker) {
  margin-top: 1rem;
  color: var(--paper-2);
}

.quality-split .btn {
  margin-top: 2rem;
}

.quality-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 8vw, 7rem) max(1rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: var(--mustard);
}

.quality-notes .kicker {
  color: var(--tomato-dark);
}

.quality-notes .btn {
  margin-top: 2rem;
}

.quality-notes ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-notes li {
  padding: 1rem;
  border: 1px solid color-mix(in oklch, var(--ink), transparent 72%);
  border-radius: 8px;
  background: oklch(96% 0.04 78 / 55%);
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .story-band,
  .location,
  .final-cta,
  .section-head--split,
  .about-hero,
  .about-manifest,
  .about-split,
  .route-hero,
  .route-details,
  .route-hours,
  .quality-teaser,
  .quality-hero,
  .quality-split,
  .quality-notes {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-media,
  .story-media,
  .final-cta img {
    min-height: 420px;
    border-radius: 8px;
  }

  .review-slider {
    --review-card-size: calc((100% - 1rem) / 2);
  }

  .highlight-grid,
  .review-grid,
  .drink-grid,
  .menu-grid,
  .footer-shell,
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 72px;
  }

  body {
    font-size: 1.18rem;
  }

  .header-shell {
    width: min(100% - 1rem, 1240px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-logo img {
    max-width: 104px;
    max-height: 58px;
  }

  .hero,
  .story-band,
  .location,
  .final-cta,
  .menu-teaser,
  .reviews,
  .drinks-section,
  .menu-section,
  .page-hero,
  .legal-page,
  .standard-page {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  h2,
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-media,
  .story-media,
  .final-cta img,
  .about-hero-image,
  .about-split figure,
  .route-hero-image,
  .quality-hero-image,
  .quality-split figure {
    min-height: 330px;
  }

  .hero-facts,
  .hero-actions,
  .route-actions,
  .center-action {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-facts div {
    min-width: 0;
  }

  .review-slider {
    --review-card-size: 100%;
    padding-inline: 0;
    padding-bottom: 3.75rem;
  }

  .review-card {
    min-height: 340px;
  }

  .review-slider-btn {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .review-slider-btn--prev {
    left: calc(50% - 3.1rem);
  }

  .review-slider-btn--next {
    right: calc(50% - 3.1rem);
  }

  .highlight-grid,
  .review-grid,
  .drink-grid,
  .menu-grid,
  .image-strip,
  .footer-shell,
  .about-values,
  .about-gallery,
  .route-hours-card,
  .quality-pillars {
    grid-template-columns: 1fr;
  }

  .menu-card--wide {
    grid-column: auto;
  }

  .menu-card li,
  .drink-card li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hours-panel td:last-child {
    text-align: left;
  }

  .hours-panel tr {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0.35rem 0;
    border-bottom: 1px solid oklch(100% 0 0 / 10%);
  }

  .hours-panel td {
    padding: 0.1rem 0;
    border-bottom: 0;
  }
}
