:root {
  --bg: #070605;
  --bg-soft: #120e0a;
  --text: #f2e7d8;
  --muted: rgba(242, 231, 216, 0.66);
  --line: rgba(255, 197, 130, 0.12);
  --accent: #f1bb7c;
  --accent-strong: #ffdbb0;
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  font-weight: 200;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(184, 122, 58, 0.2), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(255, 176, 92, 0.12), transparent 24%),
    linear-gradient(180deg, #050404 0%, #0a0807 44%, #050404 100%);
  letter-spacing: 0.02em;
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.edge-scroll-lights {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.edge-scroll-light {
  position: absolute;
  top: clamp(96px, 18vh, 170px);
  width: clamp(88px, 10vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.74;
  filter: blur(2px);
  transform: translate3d(0, 0, 0);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 600ms ease, filter 600ms ease;
}

.edge-scroll-light::before,
.edge-scroll-light::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.edge-scroll-light::before {
  inset: 18%;
  background: radial-gradient(circle, rgba(255, 230, 188, 0.45), rgba(239, 184, 113, 0.17) 42%, transparent 72%);
  box-shadow: 0 0 44px rgba(240, 188, 123, 0.34), 0 0 90px rgba(255, 178, 96, 0.18);
}

.edge-scroll-light::after {
  inset: 0;
  border: 1px solid rgba(255, 218, 171, 0.18);
  background: radial-gradient(circle, transparent 38%, rgba(255, 202, 132, 0.13) 48%, transparent 66%);
  animation: edgeLightPulse 4.8s ease-in-out infinite;
}

.edge-scroll-light-left {
  left: max(-76px, -5vw);
}

.edge-scroll-light-right {
  right: max(-76px, -5vw);
}

.edge-lights-hidden .edge-scroll-light {
  opacity: 0;
  filter: blur(10px);
}

.edge-lights-hidden .edge-scroll-light-left {
  transform: translate3d(-22px, -150px, 0) scale(0.82);
}

.edge-lights-hidden .edge-scroll-light-right {
  transform: translate3d(22px, -150px, 0) scale(0.82);
}

@keyframes edgeLightPulse {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 213, 165, 0.04), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 184, 103, 0.08), transparent 35%);
}

.hero,
main,
.footer {
  width: min(1080px, calc(100vw - 88px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  padding: 6px 0;
  margin-top: 0;
  background: rgba(11, 9, 7, 0.68);
  border-bottom: 1px solid rgba(232, 184, 126, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26), 0 0 18px rgba(232, 184, 126, 0.08);
  backdrop-filter: blur(14px);
  transform: none;
  transition:
    top 320ms ease,
    transform 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease,
    padding 320ms ease,
    width 320ms ease;
}

.brand {
  margin-left: max(44px, calc((100vw - 1080px) / 2));
}

.brand img {
  width: 230px;
  filter: drop-shadow(0 0 24px rgba(241, 187, 124, 0.2));
  transition: width 320ms ease, transform 320ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.1vw, 42px);
  margin-left: auto;
  padding-right: clamp(58px, 7vw, 132px);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(239, 230, 216, 0.78);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  transition: color 240ms ease, opacity 240ms ease;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-instagram > svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-instagram-callout {
  position: absolute;
  top: calc(100% + 15px);
  left: -151px;
  width: 178px;
  height: 54px;
  pointer-events: none;
}

.nav-instagram-type {
  position: absolute;
  top: 25px;
  left: 7px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.34ch;
  width: 104px;
  color: rgba(255, 250, 242, 0.9);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
  text-transform: none;
  white-space: nowrap;
}

.nav-instagram-word {
  display: inline-block;
  overflow: hidden;
  width: auto;
  opacity: 1;
}

.nav-instagram-word--folge {
  animation: none;
}

.nav-instagram-word--uns {
  animation: none;
}

.nav-instagram-arrow {
  position: absolute;
  top: -32px;
  left: 106px;
  width: 64px;
  height: 82px;
  fill: none;
  overflow: visible;
  stroke: rgba(255, 250, 242, 0.72);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.nav-instagram-arrow path {
  stroke-dasharray: 104;
  stroke-dashoffset: 0;
  animation: none;
}

@keyframes instagramFolgeLoop {
  0%,
  6% {
    width: 0;
    opacity: 0;
  }

  9% {
    opacity: 1;
  }

  23%,
  76% {
    width: 5ch;
    opacity: 1;
  }

  90%,
  100% {
    width: 5ch;
    opacity: 0;
  }
}

@keyframes instagramUnsLoop {
  0%,
  24% {
    width: 0;
    opacity: 0;
  }

  27% {
    opacity: 1;
  }

  40%,
  76% {
    width: 3ch;
    opacity: 1;
  }

  90%,
  100% {
    width: 3ch;
    opacity: 0;
  }
}

@keyframes instagramArrowDraw {
  0%,
  43% {
    stroke-dashoffset: 104;
    opacity: 0;
  }

  61%,
  76% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }

  90%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.hero {
  padding: 128px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-copy {
  max-width: 430px;
  margin: 0;
  padding: 18px 0;
  text-align: left;
  justify-self: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.lead,
p,
a,
span {
  font-weight: 200;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.lead {
  margin: 18px 0 0;
  max-width: 400px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-slider {
  position: relative;
  min-height: 420px;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: -30px auto -30px -120px;
  width: min(460px, 92vw);
  background:
    linear-gradient(90deg, rgba(255, 192, 121, 0.14), rgba(255, 192, 121, 0.03) 62%, transparent 100%),
    radial-gradient(circle at 18% 50%, rgba(255, 211, 166, 0.12), transparent 58%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

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

.button-primary {
  color: #17110b;
  background: linear-gradient(135deg, #f0bf87, #ffe1bc);
  box-shadow: 0 20px 40px rgba(209, 146, 85, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 48px 0 40px;
  transform: translate(18px, 14px);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.02);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.28) 100%);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 900ms ease,
    opacity 520ms ease,
    filter 520ms ease;
  will-change: transform, opacity;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card.is-swapping img {
  opacity: 0;
  filter: blur(8px);
}

.gallery-card.is-slide-up.is-swapping img {
  transform: translateY(-18%) scale(1.05);
}

.gallery-card.is-slide-down.is-swapping img {
  transform: translateY(18%) scale(1.05);
}

.gallery-card.is-slide-up.is-settling img {
  animation: gallerySettleUp 520ms ease both;
}

.gallery-card.is-slide-down.is-settling img {
  animation: gallerySettleDown 520ms ease both;
}

@keyframes gallerySettleUp {
  from {
    transform: translateY(18%) scale(1.05);
    opacity: 0;
    filter: blur(8px);
  }

  to {
    transform: translateY(0) scale(1.02);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes gallerySettleDown {
  from {
    transform: translateY(-18%) scale(1.05);
    opacity: 0;
    filter: blur(8px);
  }

  to {
    transform: translateY(0) scale(1.02);
    opacity: 1;
    filter: blur(0);
  }
}

.gallery-card-large {
  grid-row: span 2;
  height: 560px;
}

.gallery-card-tall {
  height: 320px;
  transform: translateY(32px);
}

.gallery-card-wide {
  height: 210px;
  margin-left: 42px;
}

.gallery-card-small {
  height: 220px;
  margin-top: -88px;
}

section {
  padding: 56px 0;
}

.section-heading {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 22px;
}

.story-layout p,
.reserve-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.immersive-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.immersive-strip img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.immersive-strip .event-flyer {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.immersive-strip-flyer {
  display: block;
  max-width: 520px;
}

.event-flyer-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  cursor: pointer;
}

.event-flyer-trigger:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 6px;
}

.immersive-strip-flyer .event-flyer {
  height: auto;
  max-height: 720px;
}

.event-flyer-page {
  width: min(100%, 520px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.event-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

#events .section-heading,
#events .event-note {
  margin-left: auto;
  text-align: right;
}

.event-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#events .event-share {
  justify-content: flex-end;
}

.event-share__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 237, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.event-share__link:hover {
  border-color: rgba(240, 191, 135, 0.5);
  background: rgba(240, 191, 135, 0.14);
}

.event-share__link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reserve {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.reserve-copy {
  max-width: 700px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 24px;
  padding: 40px 0 52px;
  color: rgba(242, 231, 216, 0.58);
  font-size: 0.92rem;
}

.footer-hours {
  grid-column: 2;
  padding-top: calc((140px * 2 / 3) + 14px);
  color: rgba(242, 231, 216, 0.7);
}

.footer-hours h2 {
  margin: 0 0 10px;
  color: rgba(242, 231, 216, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-hours dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.footer-hours dl div {
  display: grid;
  grid-template-columns: 100px auto;
  gap: 14px;
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer img {
  width: 140px;
  opacity: 0.92;
}

.footer-brand p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
  color: rgba(242, 231, 216, 0.7);
}

.footer-contact strong {
  color: rgba(242, 231, 216, 0.9);
  font-weight: 400;
}

.footer-contact span,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(242, 231, 216, 0.7);
  text-decoration: none;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 144px;
}

.footer-links a {
  color: rgba(242, 231, 216, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.sponsor-footer {
  grid-column: 1 / -1;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.52);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.sponsor-footer__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sponsor-footer__link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 250ms ease, transform 250ms ease;
}

.sponsor-footer__link img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(59, 205, 255, 0.2);
}

.sponsor-footer__link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.sponsor-footer__link:focus-visible {
  border-radius: 4px;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.subpage-sponsor {
  margin: 8px auto 0;
  text-align: center;
}

.topbar.is-scrolled {
  top: 0;
  width: 100%;
  padding: 4px clamp(18px, 4vw, 48px);
  background: rgba(11, 9, 7, 0.78);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.32), 0 0 18px rgba(232, 184, 126, 0.1);
  transform: none;
}

.topbar.is-scrolled .brand img {
  width: 188px;
}

.topbar.is-scrolled .nav-links {
  padding-right: clamp(58px, 7vw, 132px);
  font-size: 0.82rem;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}

.telegram-float {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px 0 10px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 200;
  cursor: pointer;
  color: #140d08;
  background: linear-gradient(135deg, #f0bf87, #ffdfb9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.telegram-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

.telegram-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(20, 13, 8, 0.04);
  flex: 0 0 auto;
}

.telegram-float__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.telegram-float__label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(290px, calc(100vw - 28px));
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  color: #111;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.chat-panel__eyebrow {
  margin: 0 0 4px;
  color: #111;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chat-panel__header h3 {
  margin: 0;
  color: #111;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.chat-panel__notice {
  margin: 6px 0 0;
  max-width: 280px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.chat-panel__close {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.62);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-panel__messages {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.76rem;
  line-height: 1.55;
}

.chat-message p {
  margin: 0;
}

.chat-message--bot {
  justify-self: start;
  color: #111;
  background: #f4f0ec;
}

.chat-message--user {
  justify-self: end;
  color: #160f0a;
  background: linear-gradient(135deg, #f0bf87, #ffe1bc);
}

.chat-panel__form {
  display: grid;
  gap: 10px;
}

.chat-panel__form .button {
  width: 100%;
  min-height: 40px;
}

.chat-panel__form textarea {
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: #111;
  background: #fff;
  resize: vertical;
}

.chat-panel__status {
  margin: 0;
  min-height: 1.4em;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.7rem;
  line-height: 1.6;
}

.subpage-body {
  margin: 0;
  min-height: 100vh;
  padding: 0 20px 40px;
  font-family: "Sora", sans-serif;
  font-weight: 200;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(184, 122, 58, 0.18), transparent 34%),
    linear-gradient(180deg, #050404 0%, #0a0807 46%, #050404 100%);
}

.subpage {
  width: min(720px, 100%);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 56px 0 72px;
}

.subpage-logo {
  width: 180px;
  filter: drop-shadow(0 0 24px rgba(241, 187, 124, 0.18));
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(242, 231, 216, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  font-weight: 200;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.field select {
  appearance: none;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(241, 187, 124, 0.3);
}

.contact-form__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.contact-form__hint,
.contact-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.contact-form__status {
  min-height: 1.4em;
}

.reveal {
  --reveal-y: 32px;
  --parallax-y: 0px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-layout,
  .immersive-strip,
  .reserve {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-slider {
    min-height: 320px;
  }

  .hero-gallery {
    padding-top: 8px;
    transform: none;
  }

  .gallery-card-large,
  .gallery-card-tall,
  .gallery-card-wide,
  .gallery-card-small {
    height: 320px;
    margin: 0;
    transform: none;
  }

  .gallery-card-large {
    grid-row: auto;
  }

  .reserve {
    align-items: start;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .edge-scroll-light {
    top: 112px;
    width: 86px;
    opacity: 0.58;
  }

  .hero,
  main,
  .footer {
    width: min(100vw - 28px, 1080px);
  }

  .hero {
    padding: 94px 0 56px;
  }

  .topbar {
    top: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
  }

  .brand {
    margin-left: 0;
  }

  .brand img {
    width: 154px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    padding-right: 0;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .nav-instagram-callout {
    top: calc(100% + 7px);
    left: -128px;
    width: 154px;
    height: 48px;
  }

  .nav-instagram-type {
    top: 22px;
    left: 5px;
    width: 90px;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
  }

  .nav-instagram-arrow {
    top: -24px;
    left: 90px;
    width: 55px;
    height: 71px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .hero-copy {
    text-align: left;
  }

  .hero-slider {
    min-height: 360px;
  }

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

  .immersive-strip img {
    height: 300px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-hours {
    grid-column: 1;
    padding-top: 0;
    order: 1;
  }

  .footer-links {
    grid-column: 1;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
  }

  .topbar.is-scrolled .brand img {
    width: 132px;
  }

  .topbar.is-scrolled {
    width: 100%;
    padding: 4px 10px;
  }

  .telegram-float {
    min-height: 38px;
    padding: 0 11px 0 9px;
    gap: 7px;
  }

  .telegram-float__label {
    font-size: 0.56rem;
  }

  .chat-widget {
    right: 14px;
    bottom: 16px;
  }

  .chat-panel {
    right: 0;
    bottom: 52px;
    width: min(100vw - 20px, 290px);
    padding: 13px;
  }
}

.opening-modal,
.flyer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
}

.opening-modal.is-hidden,
.flyer-modal.is-hidden {
  display: none;
}

body > :not(.opening-modal):not(.flyer-modal) {
  transition: opacity 650ms ease, filter 650ms ease;
}

.opening-modal-open > :not(.opening-modal),
.flyer-modal-open > :not(.flyer-modal) {
  opacity: 0.32;
  filter: blur(6px);
}

.opening-modal__backdrop,
.flyer-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 6, 5, 0.76);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: opacity 650ms ease;
}

.opening-modal__dialog,
.flyer-modal__dialog {
  position: relative;
  width: min(82vw, 500px);
  max-height: 80vh;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.opening-modal__dialog img,
.flyer-modal__dialog img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  background: #f4eadc;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.opening-modal.is-closing,
.flyer-modal.is-closing {
  pointer-events: none;
}

.opening-modal.is-closing .opening-modal__backdrop,
.flyer-modal.is-closing .flyer-modal__backdrop {
  opacity: 0;
}

.opening-modal.is-closing .opening-modal__dialog,
.flyer-modal.is-closing .flyer-modal__dialog {
  opacity: 0;
  transform: translateY(44px);
}

.opening-modal__close,
.flyer-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(7, 6, 5, 0.82);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.opening-modal-open,
.flyer-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .opening-modal,
  .flyer-modal {
    padding: 12px;
  }

  .opening-modal__dialog,
  .flyer-modal__dialog {
    width: min(88vw, 360px);
  }

  .opening-modal__close,
  .flyer-modal__close {
    top: 8px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edge-scroll-light,
  .edge-scroll-light::after,
  .nav-instagram-word,
  .nav-instagram-arrow path {
    animation: none;
    transition: none;
  }

  .nav-instagram-word--folge {
    width: 5ch;
    opacity: 1;
  }

  .nav-instagram-word--uns {
    width: 3ch;
    opacity: 1;
  }

  .nav-instagram-arrow path {
    stroke-dashoffset: 0;
  }
}
