@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/outfit-latin-300-normal.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/outfit-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/outfit-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("../fonts/outfit-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #74844a;
  --color-primary-hover: #8a9b58;
  --color-gold: #c4a46a;
  --color-background: #000000;
  --color-surface: #0c0c0c;
  --color-surface-2: #141414;
  --color-text: #f4f1ea;
  --color-text-muted: #a39e93;
  --color-line: #2a2a2a;
  --color-paper: #f4f1ea;
  --color-ink: #161513;
  --color-ink-muted: #6b665c;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Outfit, system-ui, sans-serif;
  --container: 1180px;
  --header-h: 84px;
  --banner-h: 0px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin: 0;
}

body.is-cms-preview .skip-link { display: none; }
body.is-cms-preview a,
body.is-cms-preview button { pointer-events: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(calc(100% - 2.4rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 50;
  height: auto;
  padding: 10px 12px 0;
  padding-top: max(10px, env(safe-area-inset-top, 0px));
  background: transparent;
  border: 0;
  pointer-events: none;
}
body.has-banner .site-header {
  padding-top: 10px;
}
.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  min-height: 62px;
  margin: 0;
  padding: 0.35rem 0.45rem 0.35rem 1rem;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  transition: background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.site-header.is-scrolled .header-inner {
  background: #0a0a0a;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  height: var(--logo-h, 52px);
  width: auto;
}
.logo-mobile { display: none; }
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: #000 var(--hero-mobile, none) center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:has(.hero-video) .hero-photo { opacity: 0; }
.hero::after { z-index: 2; }
.hero-content { z-index: 3; }
.product-row.has-image { grid-template-columns: 72px 1fr auto; }
.product-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 10px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.2rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.cta-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  padding: 3.2rem 1.6rem;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(20, 24, 12, 0.28), rgba(20, 24, 12, 0.55)),
    var(--color-primary);
}
.cta-card.has-video {
  background-image: linear-gradient(160deg, rgba(20, 24, 12, 0.45), rgba(20, 24, 12, 0.7));
}
.cta-card .hero-video { z-index: 0; }
.cta-band-content { position: relative; z-index: 2; }
.cta-card h2 {
  font-size: var(--fs-heading, clamp(1.8rem, 5vw, 3rem));
  margin-bottom: 0.8rem;
  color: #fff;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.6rem;
}
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.2rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72)),
    var(--hero-mobile, url("../img/hero-cover-mobile.jpg")) center / cover;
}
.cta-band-content { position: relative; z-index: 2; }
.cta-band .hero-video { z-index: 0; }
.cta-band.has-video { background-image: none; }
.cta-band h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0.8rem; }
.cta-band p { color: var(--color-text-muted); margin-bottom: 1.6rem; }
.nav-desktop {
  display: none;
  justify-content: center;
  gap: 1.35rem;
}
.nav-desktop a {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fff;
  padding: 0.35rem 0;
  position: relative;
  opacity: 0.82;
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: #fff; opacity: 1; }
.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--color-gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-left: auto;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-button, var(--font-sans));
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn:hover { background: var(--color-gold); color: #111; }
.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
}
.btn-header {
  display: none;
  min-height: 42px;
  padding: 0.5rem 1.15rem;
  background: var(--header-cta-bg, var(--color-primary));
  border-color: var(--header-cta-bg, var(--color-primary));
  color: var(--header-cta-color, #fff);
  font-family: var(--header-cta-font, var(--font-button, var(--font-sans)));
  font-size: 0.88rem;
}
.btn-header:hover {
  background: var(--header-cta-hover-bg, var(--color-primary-hover));
  border-color: var(--header-cta-hover-bg, var(--color-primary-hover));
  color: var(--header-cta-hover-color, #fff);
}
.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--color-ink);
}
.btn-light:hover {
  background: var(--color-paper);
  border-color: var(--color-paper);
  color: var(--color-ink);
}
.nav-toggle {
  width: 46px;
  height: 40px;
  border: 1.5px solid #fff;
  border-radius: 10px;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.overlay-nav {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top, 0px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
body.nav-open .overlay-nav {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
}
.overlay-close {
  width: 46px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
}
.overlay-close span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: #fff;
}
.overlay-close span:first-child { transform: rotate(45deg); }
.overlay-close span:last-child { transform: rotate(-45deg); }
.overlay-links {
  list-style: none;
  margin: auto 0;
  padding: 0 1.6rem 3rem;
}
.overlay-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: 0.06em;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-line);
  opacity: 0;
  transform: translateY(12px);
}
body.nav-open .overlay-links a {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
body.nav-open .overlay-links li:nth-child(1) a { transition-delay: 0.05s; }
body.nav-open .overlay-links li:nth-child(2) a { transition-delay: 0.12s; }
body.nav-open .overlay-links li:nth-child(3) a { transition-delay: 0.19s; }
body.nav-open .overlay-links li:nth-child(4) a { transition-delay: 0.26s; }
body.nav-open .overlay-links li:nth-child(5) a { transition-delay: 0.33s; }
.overlay-links svg { width: 22px; height: 22px; stroke: var(--color-gold); fill: none; stroke-width: 1.4; }
.overlay-social {
  display: flex;
  gap: 1.2rem;
  padding: 0 1.6rem 2rem;
}
.overlay-social a { color: var(--color-text-muted); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.form .check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.4rem 0 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  color: var(--color-ink);
}
.form .check input {
  width: auto;
  margin-top: 0.25rem;
  flex: 0 0 auto;
}
.form .check a { text-decoration: underline; }

.hero,
.section {
  --fs-heading: var(--fs-heading-mobile);
  --fs-text: var(--fs-text-mobile);
}
.hero {
  position: relative;
  min-height: var(--hero-h-mobile, 100svh);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  padding: calc(var(--header-h) + var(--banner-h) + 3.2rem) 1.2rem 7.5rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #000 center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.82) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 820px; }
.leaf {
  width: 28px;
  height: 28px;
  margin: 0 auto 1rem;
  color: var(--color-gold);
}
.leaf-img {
  display: block;
  object-fit: contain;
}
.hero h1 {
  font-size: var(--fs-heading, clamp(3.2rem, 10vw, 7.2rem));
  letter-spacing: 0.12em;
}
.hero p {
  margin: 1rem 0 2rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: var(--fs-text, 0.78rem);
  color: var(--color-text-muted);
  font-weight: 300;
}
.hero.hero-compact { min-height: var(--hero-h-mobile, 48svh); padding-bottom: 6.5rem; }

.section { padding: 4.5rem 0; }
.section-light {
  position: relative;
  z-index: 4;
  background: var(--color-paper);
  color: var(--color-ink);
}
.hero + .section-light {
  margin-top: -56px;
  border-radius: 40px 40px 0 0;
  padding-top: 4.2rem;
}
.section-light + .section-light {
  padding-top: 1.2rem;
}
.section-light.section-heading { padding-bottom: 0.4rem; }
.section-light.section-compact { padding: 0.4rem 0 0; }
.section-light .section-kicker h2,
.section-light .block-heading,
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--color-ink); }
.section-light .section-kicker span { color: var(--color-primary); }
.section-light .rich-text,
.section-light p,
.section-light a { color: var(--color-ink-muted); }
.section-light a:hover { color: var(--color-ink); }
.section-light .note { color: var(--color-ink-muted); }
.section-light .product-row { border-bottom-color: rgba(22, 21, 19, 0.1); }
.section-light .product-row p { color: var(--color-ink-muted); }
.section-light .flavor-list { color: var(--color-ink-muted); }
.section-light .shisha-price-card {
  background: #fff;
  border-color: rgba(22, 21, 19, 0.1);
}
.section-light .form label { color: var(--color-ink-muted); }
.section-light .form input,
.section-light .form textarea,
.section-light .form select {
  background: #fff;
  border-color: rgba(22, 21, 19, 0.14);
  color: var(--color-ink);
  border-radius: 12px;
}
.section-light .category-tabs {
  background: linear-gradient(var(--color-paper) 80%, transparent);
}
.section-light .category-tab {
  background: #161513;
  color: #f4f1ea;
  border: 1px solid rgba(196, 164, 106, 0.22);
}
.section-light .category-tab span { color: #f4f1ea; }
.section-light .category-tab.is-active {
  border-color: var(--color-gold);
  box-shadow: 0 10px 28px rgba(22, 21, 19, 0.18);
}
.section-light .category-card,
.section-light .category-card h3 { color: #f4f1ea; }
.section-light .category-card p { color: rgba(244, 241, 234, 0.78); }
.section-light .cta-card,
.section-light .cta-card h2 { color: #fff; }
.section-light .cta-card p { color: rgba(255, 255, 255, 0.86); }
.section-light .cta-card a.btn { color: var(--color-ink); }
.section-kicker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
.section-kicker span {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-gold);
}
.section-kicker h2 {
  font-size: var(--fs-heading, clamp(2rem, 5vw, 3.2rem));
  letter-spacing: 0.14em;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.category-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  border-radius: 18px;
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(116, 132, 74, 0.22), transparent 55%),
    var(--color-surface-2);
  border: 1px solid rgba(196, 164, 106, 0.18);
  overflow: hidden;
  isolation: isolate;
  color: #f4f1ea;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: 0;
}
.category-card:hover img { transform: scale(1.06); }
.category-card:hover { border-color: var(--color-gold); }
.category-card h3,
.category-card p { position: relative; z-index: 2; }
.category-card h3 {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.category-card p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.category-tabs {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.2rem 0 1.6rem;
  position: sticky;
  top: calc(var(--header-h) + var(--banner-h));
  z-index: 20;
  scrollbar-width: none;
  margin: 0 -0.2rem 0.4rem;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
  position: relative;
  flex: 0 0 auto;
  min-width: 148px;
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: #161513;
  color: #f4f1ea;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.category-tab img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.category-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.category-tab span {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.1em;
  line-height: 1.15;
}
.category-tab:hover img { transform: scale(1.06); opacity: 0.7; }
.category-tab.is-active {
  outline: 1px solid var(--color-gold);
  outline-offset: 2px;
}
.category-tab.is-active img { opacity: 0.72; }

.product-group { margin: 2.2rem 0 2.8rem; }
.product-group h3 {
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--color-line);
}
.product-row h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.product-row p {
  margin: 0.25rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}
.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  white-space: nowrap;
}
.price {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.volume { color: var(--color-text-muted); font-size: 0.78rem; }
.badge {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  background: var(--color-primary);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.allergens { color: var(--color-gold); font-size: 0.75rem; }
.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.shisha-prices { display: grid; gap: 0.8rem; margin-top: 1.5rem; }
.shisha-price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(196, 164, 106, 0.28);
  background: var(--color-surface);
  border-radius: 14px;
}
.note {
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.rich-text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: var(--fs-text, 1.02rem);
}
.rich-text.is-left { margin-left: 0; }
.rich-text p { margin: 0 0 0.85em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text a { text-decoration: underline; color: var(--color-gold); }
.rich-text ul, .rich-text ol { margin: 0.4em 0 0.9em; padding-left: 1.2em; }
.rich-text li { margin: 0.15em 0; }
.rich-text strong, .rich-text b { font-weight: 600; color: inherit; }
.rich-text em, .rich-text i { font-style: italic; }
.rich-text u { text-decoration: underline; }
.rich-text s, .rich-text strike { text-decoration: line-through; }
.rich-text h2, .rich-text h3, .rich-text h4 {
  color: inherit;
  margin: 0.9em 0 0.4em;
  line-height: 1.25;
}
.rich-text h2 { font-size: var(--fs-heading, 1.45rem); }
.rich-text h3 { font-size: 1.2em; }
.rich-text h4 { font-size: 1.05em; }
.rich-text blockquote {
  margin: 0.8em 0;
  padding: 0.15em 0 0.15em 0.9em;
  border-left: 3px solid var(--color-gold);
}
.block-heading { text-align: center; padding: 2rem 0 0.5rem; font-size: var(--fs-heading, clamp(2rem, 6vw, 3.4rem)); }
.divider {
  width: min(180px, 40%);
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
  opacity: 0.7;
}
.spacer { height: 2.5rem; }

.contact-grid {
  display: grid;
  gap: 2rem;
}
.form {
  display: grid;
  gap: 0.9rem;
}
.form label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); }
.form input,
.form textarea,
.form select {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form textarea:focus,
.form select:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.alert {
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-primary);
  margin-bottom: 1rem;
  border-radius: 12px;
}
.alert-error { border-color: #9a4a4a; }

.site-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  text-align: center;
  padding: 0.7rem 1.2rem;
  padding-top: max(0.7rem, env(safe-area-inset-top, 0px));
}
.site-banner p {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.reservation-wrap { max-width: 640px; margin-inline: auto; }
.reservation-intro { text-align: center; margin: 0 0 1.6rem; }
.reservation-form h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.reservation-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0 0 1.6rem;
  padding: 0;
}
.reservation-steps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: rgba(22, 21, 19, 0.05);
  color: var(--color-ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.reservation-steps li::before {
  content: attr(data-step-label);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--color-ink);
  font-weight: 600;
}
.reservation-steps li.is-active {
  background: var(--color-ink);
  color: #f4f1ea;
}
.reservation-steps li.is-active::before {
  background: var(--color-primary);
  color: #fff;
}
.reservation-pane[hidden] { display: none !important; }
.reservation-nav { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.time-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.time-fieldset legend {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 0.5rem;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 0.5rem;
  margin: 0.4rem 0 0.8rem;
}
.time-chip {
  appearance: none;
  border: 1px solid rgba(22, 21, 19, 0.12);
  background: #fff;
  color: var(--color-ink);
  border-radius: 999px;
  min-height: 42px;
  padding: 0.45rem 0.4rem;
  cursor: pointer;
}
.time-chip.is-active {
  background: var(--color-ink);
  color: #f4f1ea;
  border-color: var(--color-ink);
}
.time-chip.is-late { opacity: 0.55; }
.reservation-success {
  text-align: center;
  background: #fff;
  border-radius: 28px;
  padding: 2.4rem 1.4rem;
  box-shadow: 0 16px 40px rgba(22, 21, 19, 0.06);
}
.reservation-success h2 { margin-bottom: 0.8rem; }
.section-kicker-mini {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-primary);
  margin: 0 0 0.6rem;
}
.site-dialog {
  border: 0;
  border-radius: 24px;
  padding: 0;
  max-width: min(92vw, 420px);
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.site-dialog::backdrop { background: rgba(0, 0, 0, 0.55); }
.site-dialog-body { padding: 1.6rem 1.4rem 1.4rem; display: grid; gap: 0.8rem; }
.site-dialog h3 { font-size: 1.7rem; letter-spacing: 0.06em; }

.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 3.5rem 0 1.4rem;
  background: #050505;
}
.footer-grid { display: grid; gap: 2.4rem; }
.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--color-gold);
}
.site-footer p, .site-footer a, .site-footer li {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.35rem 0; }
.site-footer a:hover { color: var(--color-text); }
.footer-logo { height: 84px; width: auto; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1rem; }
.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero,
  .section {
    --fs-heading: var(--fs-heading-tablet);
    --fs-text: var(--fs-text-tablet);
  }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .blurb-grid { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 280px; padding: 1.4rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .hero { min-height: var(--hero-h-tablet, 100svh); }
  .hero.hero-compact { min-height: var(--hero-h-tablet, 54svh); }
  .hero-photo { background-image: var(--hero-desktop, var(--hero-mobile, none)); }
  .hero + .section-light {
    margin-top: -88px;
    border-radius: 72px 72px 0 0;
    padding-top: 5rem;
  }
  .cta-card { padding: 4rem 2.4rem; border-radius: 32px; }
}

@media (min-width: 1024px) {
  :root { --header-h: 96px; }
  .hero,
  .section {
    --fs-heading: var(--fs-heading-desktop);
    --fs-text: var(--fs-text-desktop);
  }
  .site-header {
    padding: 16px 20px 0;
    padding-top: max(16px, env(safe-area-inset-top, 0px));
  }
  body.has-banner .site-header {
    padding-top: 16px;
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: min(100%, 1180px);
    margin-inline: auto;
    min-height: 62px;
    padding: 0.4rem 0.45rem 0.4rem 1.2rem;
  }
  .logo { justify-self: start; }
  .nav-desktop { display: flex; justify-self: center; }
  .header-actions { justify-self: end; margin-left: 0; }
  .btn-header { display: inline-flex; }
  .nav-toggle { display: none; }
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
  .logo-mobile { display: none !important; }
  .logo-desktop { display: block; }
  .hero {
    min-height: var(--hero-h-desktop, 100svh);
  }
  .hero.hero-compact {
    min-height: var(--hero-h-desktop, 54svh);
  }
  .hero + .section-light {
    margin-top: -104px;
    border-radius: 88px 88px 0 0;
  }
}

@media (max-width: 1023px) {
  .logo-desktop { display: none; }
  .logo-mobile { display: block; }
  .header-inner {
    position: relative;
    padding-right: 5.2rem;
  }
  .nav-toggle {
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
  }
  .overlay-nav.has-photo {
    background-image: var(--overlay-photo);
    background-size: cover;
    background-position: center;
  }
  .overlay-nav.has-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    pointer-events: none;
  }
  .overlay-nav > * {
    position: relative;
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-video { display: none !important; }
  .hero:has(.hero-video) .hero-photo { opacity: 1; }
}

.section-light.has-custom-look,
.section-light.has-custom-look h1,
.section-light.has-custom-look h2,
.section-light.has-custom-look h3,
.section-light.has-custom-look h4,
.section-light.has-custom-look p,
.section-light.has-custom-look a { color: inherit; }
.blurb-grid { display: grid; gap: 1rem; }
.blurb-card {
  background: #161513;
  color: #f4f1ea;
  border-radius: 24px;
  padding: 1.4rem;
}
.blurb-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.blurb-card h3 {
  font-size: var(--fs-heading, clamp(1.2rem, 3vw, 1.6rem));
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.blurb-card p { margin: 0; color: inherit; }
.block-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* --- Kopfzeile: weiß oder dunkel ----------------------------------------
   Wird unter Einstellungen gewählt (header_style). Ohne Auswahl bleibt die
   Kopfzeile durchsichtig über dem Inhalt wie bisher.
   ------------------------------------------------------------------------ */

body.header-light .header-inner,
body.header-light .site-header.is-scrolled .header-inner {
  background: #ffffff;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.22);
}
body.header-light .nav-desktop a { color: #0b0b09; opacity: 0.72; }
body.header-light .nav-desktop a:hover,
body.header-light .nav-desktop a.is-active { color: #0b0b09; opacity: 1; }
body.header-light .nav-toggle { border-color: #0b0b09; }
body.header-light .nav-toggle span { background: #0b0b09; }

body.header-dark .header-inner,
body.header-dark .site-header.is-scrolled .header-inner {
  background: var(--color-surface, #131310);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.45);
}
body.header-dark .nav-desktop a { color: var(--color-text, #f4efe4); }
