:root {
  --olio-red: #920101;
  --olio-red-dark: #5f0000;
  --olio-tomato: #c73b28;
  --olio-cream: #fbf6ed;
  --olio-paper: #fffaf3;
  --olio-ink: #1c1713;
  --olio-muted: #6d6258;
  --olio-olive: #4f6f3c;
  --olio-gold: #c7973f;
  --olio-line: rgba(28, 23, 19, .14);
  --olio-shadow: 0 22px 64px rgba(64, 31, 20, .14);
  --olio-focus: #2368b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--olio-ink);
  background: var(--olio-cream);
  font-family: Lato, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.56;
}

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

a {
  color: inherit;
}

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--olio-focus);
  outline-offset: 4px;
}

.wrap {
  width: min(100% - 34px, 1160px);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  background: rgba(146, 1, 1, .94);
  color: #fffaf3;
  backdrop-filter: blur(18px);
}

.site-header.light {
  border-bottom-color: var(--olio-line);
  background: rgba(251, 246, 237, .94);
  color: var(--olio-ink);
}

.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, .42);
  border-radius: 50%;
  background: #fff;
}

.site-header.light .brand-mark {
  border-color: rgba(146, 1, 1, .25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-name strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name span {
  color: rgba(255, 250, 243, .76);
  font-size: .77rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header.light .brand-name span {
  color: var(--olio-muted);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.pill-link,
.icon-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.main-nav a {
  padding: 0 13px;
  font-size: .92rem;
}

.main-nav a:hover,
.pill-link:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 243, .28);
  background: rgba(255, 255, 255, .12);
}

.site-header.light .main-nav a:hover,
.site-header.light .pill-link:hover,
.site-header.light .icon-button:hover {
  border-color: rgba(146, 1, 1, .2);
  background: rgba(146, 1, 1, .07);
}

.pill-link {
  padding: 0 15px;
  background: #fffaf3;
  color: var(--olio-red);
  font-weight: 800;
}

.site-header.light .pill-link {
  background: var(--olio-red);
  color: #fffaf3;
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-picker select {
  width: 54px;
  min-height: 42px;
  appearance: none;
  border: 1px solid rgba(255, 250, 243, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: inherit;
  padding: 0 12px;
  font: inherit;
  font-size: 1.14rem;
  cursor: pointer;
}

.site-header.light .language-picker select {
  border-color: rgba(146, 1, 1, .2);
  background: rgba(255, 255, 255, .62);
}

.language-picker option {
  color: var(--olio-ink);
}

[data-lang="en"] .lang-de,
[data-lang="de"] .lang-en {
  display: none !important;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf3;
  background: var(--olio-red-dark);
}

.hero.compact {
  min-height: 620px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(47, 13, 8, .9), rgba(47, 13, 8, .58) 46%, rgba(47, 13, 8, .1)),
    linear-gradient(0deg, rgba(18, 10, 7, .7), rgba(18, 10, 7, .08) 50%);
}

.hero-content {
  width: min(100% - 34px, 1160px);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 132px) 0 clamp(36px, 6vw, 62px);
}

.kicker {
  margin: 0 0 12px;
  color: rgba(255, 250, 243, .84);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  font-size: clamp(3.1rem, 9vw, 7.6rem);
  line-height: .86;
}

.hero-copy {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgba(255, 250, 243, .9);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--olio-red);
  color: #fffaf3;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olio-red-dark);
}

.button.light {
  background: #fffaf3;
  color: var(--olio-red);
}

.button.ghost {
  border-color: rgba(255, 250, 243, .42);
  background: rgba(255, 255, 255, .08);
  color: #fffaf3;
}

.button.ghost.dark {
  border-color: var(--olio-line);
  background: transparent;
  color: var(--olio-ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(34px, 6vw, 66px);
  max-width: 900px;
}

.fact {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 250, 243, .24);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 250, 243, .1);
  backdrop-filter: blur(10px);
}

.fact small {
  color: rgba(255, 250, 243, .72);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fact strong {
  font-size: 1.02rem;
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section.alt {
  background: var(--olio-paper);
}

.section.red {
  background: var(--olio-red);
  color: #fffaf3;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
  gap: clamp(22px, 5vw, 66px);
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: .95;
}

.section-head p {
  margin: 0;
  color: var(--olio-muted);
}

.section.red .section-head p {
  color: rgba(255, 250, 243, .78);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 18px;
  align-items: stretch;
}

.story-panel {
  display: grid;
  align-content: end;
  gap: 20px;
  min-height: 420px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  box-shadow: var(--olio-shadow);
}

.story-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--olio-muted);
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-tile {
  overflow: hidden;
  border-radius: 8px;
  background: #e8ddd0;
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

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

.service {
  border: 1px solid var(--olio-line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, .78);
}

.service h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.service p {
  margin: 0;
  color: var(--olio-muted);
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.menu-tab {
  min-height: 38px;
  border: 1px solid var(--olio-line);
  border-radius: 999px;
  padding: 0 13px;
  background: #fff;
  color: var(--olio-ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-tab[aria-selected="true"] {
  border-color: var(--olio-red);
  background: var(--olio-red);
  color: #fffaf3;
}

.menu-category {
  display: none;
  border: 1px solid var(--olio-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(64, 31, 20, .08);
}

.menu-category.active {
  display: block;
}

.menu-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: clamp(20px, 3.5vw, 34px);
  border-bottom: 1px solid var(--olio-line);
}

.menu-category h3 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.menu-category-head p {
  margin: 8px 0 0;
  color: var(--olio-muted);
}

.menu-count {
  color: var(--olio-red);
  font-weight: 900;
  white-space: nowrap;
}

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

.menu-item {
  min-height: 136px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--olio-line);
}

.menu-item:nth-child(odd) {
  border-right: 1px solid var(--olio-line);
}

.menu-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.menu-item p {
  margin: 0;
  color: var(--olio-muted);
  font-size: .92rem;
}

.menu-price {
  color: var(--olio-red);
  font-weight: 900;
  white-space: nowrap;
}

.menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.menu-badges span {
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(79, 111, 60, .12);
  color: var(--olio-olive);
  font-size: .72rem;
  font-weight: 900;
}

.menu-note {
  margin-top: 16px;
  color: var(--olio-muted);
  font-size: .9rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.visit-card,
.contact-card {
  border: 1px solid var(--olio-line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  box-shadow: 0 16px 48px rgba(64, 31, 20, .08);
}

.visit-card h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  gap: 3px;
}

.info-list small {
  color: var(--olio-muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.copy-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--olio-olive);
  font-weight: 800;
}

.footer {
  padding: 36px 0;
  background: var(--olio-ink);
  color: #fffaf3;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
  color: rgba(255, 250, 243, .74);
}

.socials {
  display: flex;
  gap: 9px;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, .22);
  border-radius: 999px;
  color: #fffaf3;
  text-decoration: none;
}

.icon-link svg,
.button svg,
.pill-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olio-olive);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
  text-decoration: none;
}

.variant-menu .hero {
  min-height: 560px;
  background: var(--olio-paper);
  color: var(--olio-ink);
}

.variant-menu .hero::after {
  background:
    linear-gradient(90deg, rgba(251, 246, 237, .98), rgba(251, 246, 237, .88) 48%, rgba(251, 246, 237, .4)),
    linear-gradient(0deg, rgba(251, 246, 237, .92), rgba(251, 246, 237, .22) 64%);
}

.variant-menu .hero-copy,
.variant-menu .kicker {
  color: var(--olio-muted);
}

.variant-menu .fact {
  border-color: rgba(146, 1, 1, .18);
  background: rgba(255, 255, 255, .72);
}

.variant-menu .fact small {
  color: var(--olio-muted);
}

.variant-menu .button.ghost {
  border-color: var(--olio-line);
  color: var(--olio-ink);
}

.variant-premium {
  background: #181412;
  color: #fffaf3;
}

.variant-premium .section,
.variant-premium .section.alt {
  background: #181412;
}

.variant-premium .section-head p,
.variant-premium .story-panel p,
.variant-premium .service p,
.variant-premium .menu-category-head p,
.variant-premium .menu-item p,
.variant-premium .menu-note {
  color: rgba(255, 250, 243, .72);
}

.variant-premium .story-panel,
.variant-premium .service,
.variant-premium .menu-category,
.variant-premium .visit-card,
.variant-premium .contact-card {
  border-color: rgba(255, 250, 243, .13);
  background: #211b18;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}

.variant-premium .menu-tab {
  border-color: rgba(255, 250, 243, .18);
  background: #211b18;
  color: #fffaf3;
}

.variant-premium .menu-item,
.variant-premium .menu-category-head,
.variant-premium .menu-item:nth-child(odd) {
  border-color: rgba(255, 250, 243, .12);
}

.variant-premium .button.ghost.dark {
  border-color: rgba(255, 250, 243, .2);
  color: #fffaf3;
}

.variant-premium .info-list small {
  color: rgba(255, 250, 243, .62);
}

.dashboard {
  min-height: 100vh;
  background: var(--olio-cream);
}

.dashboard-main {
  padding: clamp(22px, 4vw, 48px) 0;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(240px, .42fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.dashboard-hero h1 {
  color: var(--olio-red);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.dashboard-hero p {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--olio-muted);
}

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

.choice-card {
  overflow: hidden;
  border: 1px solid var(--olio-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(64, 31, 20, .09);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.choice-preview {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--olio-line);
  background: #eadfd2;
}

.choice-preview iframe {
  width: 1440px;
  height: 980px;
  border: 0;
  transform: scale(.205);
  transform-origin: top left;
  pointer-events: none;
}

.choice-preview-hit {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.choice-preview-hit:hover {
  background: rgba(146, 1, 1, .05);
}

.choice-body {
  padding: 16px;
}

.choice-body h2 {
  margin: 0;
  font-size: 1.35rem;
}

.choice-title-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.choice-title-button:hover,
.choice-title-button:focus-visible {
  color: var(--olio-red);
}

.choice-card:has(.choice-preview-hit:hover),
.choice-card:has(.choice-title-button:hover),
.choice-card:has(.choice-actions button:hover) {
  transform: translateY(-2px);
  border-color: rgba(146, 1, 1, .28);
  box-shadow: 0 20px 54px rgba(64, 31, 20, .13);
}

.choice-body p {
  min-height: 64px;
  margin: 8px 0 14px;
  color: var(--olio-muted);
  font-size: .95rem;
}

.choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-actions button {
  min-height: 42px;
  border: 1px solid var(--olio-line);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--olio-ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.choice-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--olio-red);
  color: #fffaf3;
  font-weight: 900;
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(28, 23, 19, .74);
}

.modal.open {
  display: grid;
  place-items: center;
}

.modal-panel {
  width: min(100% - 28px, 1220px);
  height: min(100vh - 40px, 850px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 88px rgba(0, 0, 0, .35);
}

.modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--olio-line);
  background: var(--olio-paper);
}

.modal-toolbar h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.modal-actions button,
.modal-actions a {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(28, 23, 19, .13);
  border-radius: 999px;
  padding: 0 26px;
  background: #fff;
  color: var(--olio-ink);
  font: inherit;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(28, 23, 19, .04);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.modal-actions button:hover,
.modal-actions a:hover,
.modal-actions button[aria-pressed="true"] {
  border-color: rgba(146, 1, 1, .26);
  background: #fffaf3;
}

.modal-actions button:hover,
.modal-actions a:hover {
  transform: translateY(-1px);
}

.modal-icon {
  width: 68px;
  flex: 0 0 68px;
  padding: 0 !important;
  font-size: 2rem !important;
}

.modal-pill {
  min-width: 136px;
}

.modal-frame-wrap {
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 16px;
  background: #ece5dc;
}

.modal-frame {
  width: min(100%, 1180px);
  height: 100%;
  min-height: 620px;
  border: 1px solid var(--olio-line);
  border-radius: 8px;
  background: #fff;
}

.modal-frame.mobile {
  width: 390px;
  min-height: 720px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

  .section-head,
  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-item:nth-child(odd) {
    border-right: 0;
  }

  .footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .dashboard-hero,
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 66px;
  }

  .brand-name span {
    display: none;
  }

  .pill-link {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(2.85rem, 17vw, 4.9rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .menu-category-head,
  .menu-item {
    grid-template-columns: 1fr;
  }

  .choice-preview {
    height: 220px;
  }

  .modal-panel {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .modal-actions {
    gap: 7px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .modal-actions button,
  .modal-actions a {
    min-height: 50px;
    padding: 0 16px;
    font-size: .98rem;
  }

  .modal-icon {
    width: 52px;
    flex-basis: 52px;
    font-size: 1.45rem !important;
  }

  .modal-pill {
    min-width: max-content;
  }
}
