@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora-400.woff2") format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora-400i.woff2") format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/lora-600.woff2") format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lora-700.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/sourcesans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/sourcesans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/sourcesans-700.woff2") format("woff2");
}
:root {
  --bg: #f3ebdd;
  --bg-2: #ecdfc8;
  --paper: #fdfaf3;
  --ink: #2a2018;
  --ink-soft: #5e4f3d;
  --ink-faint: #8a7c66;
  --wine: #a8492f;
  --wine-deep: #83361f;
  --wine-100: #f1ddd2;
  --wood: #5a3d28;
  --wood-deep: #382617;
  --gold: #c8972f;
  --gold-deep: #a87d22;
  --gold-soft: #e6c878;
  --cream-tint: #f2e6cf;
  --olive: #6f7d49;
  --line: rgba(42, 32, 24, 0.15);
  --line-soft: rgba(42, 32, 24, 0.08);
  --shadow-sm:
    0 1px 2px rgba(60, 40, 20, 0.07), 0 2px 6px rgba(60, 40, 20, 0.06);
  --shadow:
    0 12px 30px -14px rgba(60, 40, 20, 0.32),
    0 4px 10px -6px rgba(60, 40, 20, 0.14);
  --shadow-lg: 0 34px 70px -32px rgba(50, 32, 12, 0.5);
  --r: 16px;
  --r-lg: 22px;
  --maxw: 1160px;
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:
    "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(
      1100px 520px at 50% -10%,
      rgba(193, 154, 62, 0.16),
      transparent 62%
    ),
    radial-gradient(
      700px 500px at 100% 8%,
      rgba(168, 73, 47, 0.08),
      transparent 60%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(124, 90, 40, 0.02) 0 2px,
      transparent 2px 7px
    );
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.92em 1.35em;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--wine);
  color: #fbf2e6;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--wine);
  border-color: rgba(124, 38, 48, 0.4);
}
.btn-ghost:hover {
  background: var(--wine-100);
  border-color: var(--wine);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--wood-deep);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--wood-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.topbar {
  background: var(--wood-deep);
  color: #ead9b8;
  font-size: 0.86rem;
  border-bottom: 2px solid var(--gold);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
}
.topbar a {
  color: #ecd49a;
  text-decoration: none;
  font-weight: 600;
}
.topbar a:hover {
  color: #fff;
}
.topbar .sep {
  opacity: 0.4;
  margin: 0 0.35em;
}
.top-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  opacity: 0.94;
}
.top-hours .icon {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}
.top-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 227, 0.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(193, 154, 62, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
}
.brand .name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
}
.brand .name b {
  color: var(--wine);
  font-weight: 700;
}
.brand .sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 5px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45em 0.5em;
  border-radius: 8px;
  transition:
    color 0.18s,
    background 0.18s;
}
.nav a:hover {
  color: var(--wine);
  background: var(--cream-tint);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang {
  display: inline-flex;
  align-items: center;
  background: rgba(168, 73, 47, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  padding: 0.34em 0.6em;
  border-radius: 999px;
  transition: 0.18s;
}
.lang-btn.active {
  background: var(--wine);
  color: #fbf2e6;
  box-shadow: var(--shadow-sm);
}
.lang-btn:not(.active):hover {
  color: var(--wine);
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  text-decoration: none;
  background: var(--wine);
  color: #fbf2e6;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.62em 1.05em;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.15s,
    background 0.2s,
    box-shadow 0.2s;
}
.btn-phone:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-phone .icon {
  width: 18px;
  height: 18px;
}
.btn-phone .num {
  font-variant-numeric: tabular-nums;
}
.btn-phone .label {
  display: none;
}
.burger {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger .icon {
  width: 22px;
  height: 22px;
  color: var(--wine);
}
.mobile-menu {
  display: none;
}
.mm-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: -1px;
  pointer-events: none;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  padding: 8px 0;
  margin: 0 auto;
  max-width: var(--maxw);
}
.ornament .rule {
  height: 1px;
  width: min(180px, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament .rule.r {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament .icon {
  width: 30px;
  height: 30px;
  opacity: 0.95;
}

.hero {
  position: relative;
  padding: 54px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.97;
  color: var(--ink);
}
.hero h1 .accent {
  color: var(--wine);
  font-style: italic;
  font-weight: 500;
}
.hero .tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--wine);
  margin-top: 0.5em;
  font-style: italic;
}
.hero .intro {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 1.1em;
  max-width: 34em;
}
.hero .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.22rem;
  color: var(--ink);
  margin-top: 1em;
}

/* reveal on scroll */
.js .r-up {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.js .r-up.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.05s;
}
.d2 {
  transition-delay: 0.12s;
}
.d3 {
  transition-delay: 0.19s;
}
.d4 {
  transition-delay: 0.26s;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
}
.cc-title {
  font-size: 1.45rem;
  color: var(--wine-deep);
  margin-bottom: 0.1em;
}
.cc-phone {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 700;
  margin: 0.35em 0 0.15em;
  letter-spacing: -0.02em;
}
.cc-phone .icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}
.cc-phone:hover {
  color: var(--wine-deep);
}
.cc-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.cc-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 0.7em;
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: normal;
}
.cc-mail:hover {
  text-decoration: underline;
}
.cc-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.cc-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.cc-hours .icon {
  width: 18px;
  height: 18px;
  margin-top: 0.18em;
  color: var(--wine);
  flex: 0 0 auto;
}
.cc-hours .lbl {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.illus {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ece2c6;
}
.illus img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.illus.ratio {
  aspect-ratio: 40/27;
}
.illus.band img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.illus-cap {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-style: italic;
}
.illus-cap .icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex: 0 0 auto;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.fact {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.fact .ic {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--cream-tint);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 154, 62, 0.3);
}
.fact .ic .icon {
  width: 22px;
  height: 22px;
}
.fact span {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.3;
}

section {
  scroll-margin-top: 96px;
}
.block {
  padding: 58px 0;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature.flip .media {
  order: 2;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}
.feature h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--wine-deep);
}
.feature .lead {
  font-size: 1.18rem;
  color: var(--ink);
  margin-top: 0.5em;
  font-family: var(--serif);
  font-style: italic;
}
.feature .body {
  color: var(--ink-soft);
  margin-top: 1em;
  font-size: 1.04rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5em;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 1.3em;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: var(--cream-tint);
  color: var(--wood);
  border: 1px solid rgba(163, 127, 44, 0.3);
  padding: 0.42em 0.85em;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
}
.chip .icon {
  width: 15px;
  height: 15px;
  opacity: 0.85;
  color: var(--wine);
}
.pricecard,
.menu-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-top: 1.4em;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricecard::before,
.menu-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--wine), var(--gold));
}
.pricecard h3,
.menu-list h3 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 8px;
  padding-left: 10px;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0.5em 0 0.5em 10px;
  border-bottom: 1px dashed var(--line-soft);
}
.price-row:last-of-type {
  border-bottom: 0;
}
.price-row .nm {
  color: var(--ink);
  font-weight: 500;
}
.price-row .pr {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--wine);
  font-size: 1.12rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-note {
  margin-top: 0.7em;
  font-size: 0.86rem;
  color: var(--ink-faint);
  padding-left: 10px;
}
.note-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55em;
  margin-top: 1em;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.note-line .icon {
  width: 17px;
  height: 17px;
  color: var(--wine);
  margin-top: 0.16em;
  flex: 0 0 auto;
}
.media {
  position: relative;
}

.contact-block {
  background: linear-gradient(170deg, var(--wood-deep), var(--wood));
  color: #f0e6cf;
  position: relative;
}
.contact-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
}
.contact-block .kicker {
  color: var(--gold-soft);
}
.contact-block .kicker::before {
  background: var(--gold-soft);
}
.contact-block h2 {
  color: #fff;
}
.contact-block .intro {
  color: #e2d3ac;
  max-width: none;
  margin-top: 0.7em;
  font-size: 1.05rem;
}
.contact-block .btn-ghost {
  color: #f5ead0;
  background: rgba(227, 200, 127, 0.07);
  border-color: var(--gold-soft);
}
.contact-block .btn-ghost:hover {
  background: rgba(227, 200, 127, 0.18);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(227, 200, 127, 0.22);
  border-radius: var(--r);
  padding: 22px;
}
.info-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.info-card .row {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  margin: 0.55em 0;
  color: #e6dcc3;
  font-size: 0.97rem;
}
.info-card .row .icon {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
  margin-top: 0.18em;
  flex: 0 0 auto;
}
.info-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: normal;
}
.info-card a:hover {
  text-decoration: underline;
  color: var(--gold-soft);
}
.info-card .muted {
  color: #c7b58c;
  font-size: 0.86rem;
  margin-top: 0.5em;
}
.info-card .lbl {
  font-weight: 700;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.contact-actions .btn-ghost {
  color: #fff;
  border-color: rgba(227, 200, 127, 0.5);
}
.contact-actions .btn-ghost:hover {
  background: rgba(227, 200, 127, 0.14);
  border-color: var(--gold-soft);
}
.map-wrap {
  margin-top: 22px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(227, 200, 127, 0.25);
  box-shadow: var(--shadow);
  background: #d8cba8;
}
.map-wrap iframe {
  width: 100%;
  height: clamp(420px, 66vh, 660px);
  border: 0;
  display: block;
  filter: sepia(0.12) saturate(0.95);
}
.impressum {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(227, 200, 127, 0.22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.impressum h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4em;
}
.impressum p {
  color: #cdbd95;
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer {
  background: var(--wood-deep);
  color: #cdbd95;
  padding: 50px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 30px 48px;
  align-items: start;
}
.foot-title {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 0.8em;
}
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6em;
}
.foot-links a {
  color: #cdbd95;
  text-decoration: none;
  font-size: 0.95rem;
}
.foot-links a:hover {
  color: #fff;
}
.foot-contact .row {
  display: flex;
  gap: 0.55em;
  align-items: flex-start;
  margin: 0.5em 0;
  font-size: 0.94rem;
  color: #cdbd95;
}
.foot-contact .row .icon {
  width: 16px;
  height: 16px;
  color: var(--gold-soft);
  margin-top: 0.2em;
  flex: 0 0 auto;
}
.foot-contact a {
  color: #fff;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: normal;
}
.foot-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(227, 200, 127, 0.18);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #998a66;
}

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 244, 227, 0.96);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold);
}
.callbar a {
  flex: 1;
  padding: 0.95em;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .r-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature.flip .media {
    order: 0;
  }
}
@media (max-width: 900px) {
  .topbar {
    display: none;
  }
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .lang {
    order: -1;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    z-index: 100;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 22px;
    overflow-y: auto;
    border-left: 1px solid var(--line);
  }
  .mm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(25, 16, 8, 0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mm-toggle:checked ~ .mobile-menu {
    transform: translateX(0);
  }
  .mm-toggle:checked ~ .mm-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .mm-close {
    appearance: none;
    border: 1px solid var(--line);
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--wine);
  }
  .mm-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
  }
  .mm-links a {
    display: block;
    padding: 0.85em 0.6em;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 8px;
    border-bottom: 1px solid var(--line-soft);
  }
  .mm-links a:hover {
    background: var(--cream-tint);
    color: var(--wine);
  }
  .mm-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }
  .callbar {
    display: flex;
  }
  .site-footer {
    padding-bottom: 96px;
  }
  .ornament .rule {
    width: 22vw;
  }
}
@media (max-width: 1100px) {
  .btn-phone {
    display: none;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .impressum {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .brand .name {
    font-size: 1.3rem;
  }
  .block {
    padding: 44px 0;
  }
  .hero {
    padding: 30px 0 8px;
  }
  .contact-card {
    padding: 20px;
  }
  .cc-phone {
    font-size: 1.8rem;
  }
}

.figure {
  margin: 0;
}

.menu-notes {
  margin-top: 1.1em;
}

.back-link {
  color: var(--wine);
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
.contact-block .back-link {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-block .back-link:hover {
  color: #fff;
}

/* icons */
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-color: currentColor;
  vertical-align: -0.15em;
  -webkit-mask-image: var(--i);
  mask-image: var(--i);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.mm-close .icon {
  width: 22px;
  height: 22px;
}
/* icon masks */
.icon-bed {
  --i: url("../icons/bed.svg");
}
.icon-beer {
  --i: url("../icons/beer.svg");
}
.icon-bike {
  --i: url("../icons/bike.svg");
}
.icon-book {
  --i: url("../icons/book.svg");
}
.icon-briefcase {
  --i: url("../icons/briefcase.svg");
}
.icon-building {
  --i: url("../icons/building.svg");
}
.icon-calendar {
  --i: url("../icons/calendar.svg");
}
.icon-cheers {
  --i: url("../icons/cheers.svg");
}
.icon-clock {
  --i: url("../icons/clock.svg");
}
.icon-close {
  --i: url("../icons/close.svg");
}
.icon-cutlery {
  --i: url("../icons/cutlery.svg");
}
.icon-drawer {
  --i: url("../icons/drawer.svg");
}
.icon-gift {
  --i: url("../icons/gift.svg");
}
.icon-group {
  --i: url("../icons/group.svg");
}
.icon-house2 {
  --i: url("../icons/house2.svg");
}
.icon-image {
  --i: url("../icons/image.svg");
}
.icon-mail {
  --i: url("../icons/mail.svg");
}
.icon-menu {
  --i: url("../icons/menu.svg");
}
.icon-peak {
  --i: url("../icons/peak.svg");
}
.icon-phone {
  --i: url("../icons/phone.svg");
}
.icon-pin {
  --i: url("../icons/pin.svg");
}
.icon-plant {
  --i: url("../icons/plant.svg");
}
.icon-sofa {
  --i: url("../icons/sofa.svg");
}
.icon-sparkle {
  --i: url("../icons/sparkle.svg");
}
.icon-table {
  --i: url("../icons/table.svg");
}
.icon-target {
  --i: url("../icons/target.svg");
}
.icon-tv {
  --i: url("../icons/tv.svg");
}
.icon-user {
  --i: url("../icons/user.svg");
}
.icon-users {
  --i: url("../icons/users.svg");
}
.icon-wifi {
  --i: url("../icons/wifi.svg");
}
.btn-phone,
.btn-phone .num,
.top-links a {
  white-space: nowrap;
}
.feature + .feature {
  margin-top: clamp(2.6rem, 6vw, 4.6rem);
}
@media (min-width: 561px) and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* privacy page */
.legal {
  max-width: 760px;
}
.legal h3 {
  margin: 1.7em 0 0.35em;
  font-family: var(--serif);
  font-size: 1.16rem;
  color: var(--wine-deep);
}
.legal h3:first-of-type {
  margin-top: 0.4em;
}
.legal p {
  margin: 0.55em 0;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal ul {
  margin: 0.5em 0 0.7em 1.25em;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal a {
  color: var(--wine);
  text-decoration: underline;
  overflow-wrap: anywhere;
}

/* map consent */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.95em;
  min-height: clamp(420px, 66vh, 660px);
  padding: 30px 26px;
  background: linear-gradient(160deg, #efe7d4, #e2d7bc);
  color: var(--ink-soft);
}
.map-consent .icon {
  width: 34px;
  height: 34px;
  color: var(--wine);
}
.map-consent p {
  max-width: 48ch;
  margin: 0;
  line-height: 1.65;
}
.map-consent a {
  color: var(--wine);
}
html:not(.js) #mapLoad {
  display: none;
}

#garten,
#kegeln {
  scroll-margin-top: 96px;
}

/* accessibility */
.skip-link {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: 1000;
  background: var(--wine);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 2px;
}
.site-footer :focus-visible,
.contact-block :focus-visible,
.callbar :focus-visible,
.mobile-menu :focus-visible {
  outline-color: var(--gold-soft);
}
.mm-toggle:focus-visible ~ .site-header .burger {
  outline: 3px solid var(--wine);
  outline-offset: 2px;
}
