/* ═══════════════════════════════════════════════
   NICKI'S MOMMSEN — Berlin
   Frühstück · Café · Restaurant
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0b0a08;
  --bg-2: #0f0d0a;
  --ivory: #efe7d7;
  --ivory-70: rgba(239, 231, 215, 0.7);
  --ivory-50: rgba(239, 231, 215, 0.5);
  --ivory-30: rgba(239, 231, 215, 0.3);
  --gold: #cda86b;
  --gold-warm: #b7863f;
  --brass: #b9975f;
  --brass-dim: rgba(205, 168, 107, 0.35);
  --brass-faint: rgba(205, 168, 107, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.intro-lock { overflow: hidden; height: 100vh; }

::selection { background: var(--gold-warm); color: var(--bg); }

img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── Shared type ─── */

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: 0.04em;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory-70);
  max-width: 36em;
  margin-inline: auto;
}

/* ─── Brass divider ─── */

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2.2rem auto;
  max-width: 340px;
}
.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-dim));
}
.divider span:last-child {
  background: linear-gradient(90deg, var(--brass-dim), transparent);
}
.divider i {
  font-style: normal;
  font-size: 0.6rem;
  color: var(--brass);
}

/* ═══ INTRO / LOADER ═══ */

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at center, #16120c 0%, #0b0a08 70%);
}
.intro.done {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1s ease, visibility 1s ease, transform 1.4s ease;
}
.intro-stage {
  position: relative;
  width: min(78vw, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.intro-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.intro-ring circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.6;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  animation: ring-draw 2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
@keyframes ring-draw { to { stroke-dashoffset: 0; } }

.intro-seal {
  width: 60%;
  background: var(--ivory);
  border-radius: 50%;
  padding: 18px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  opacity: 0;
  transform: scale(0.82);
  animation: seal-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes seal-in {
  to { opacity: 1; transform: scale(1); }
}
.intro-word {
  position: absolute;
  bottom: -3.2rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.62em;
  text-indent: 0.62em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: word-in 1.2s ease 1.15s forwards;
}
@keyframes word-in { to { opacity: 1; } }

/* ─── Nav ─── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.4rem, 4vw, 3.4rem);
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.7rem;
  border-bottom-color: var(--brass-faint);
}
.nav-brand {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--ivory);
  padding: 3px;
}
.nav-brand .brand-txt { white-space: nowrap; }
.nav-links {
  display: flex;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-70);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  border: none;
  padding: 0.6rem 1.4rem;
  transition: filter 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

/* ─── Hero ─── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,8,0.7) 0%, rgba(11,10,8,0.32) 34%, rgba(11,10,8,0.44) 70%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 34%, rgba(11,10,8,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-seal {
  width: clamp(148px, 18vw, 196px);
  margin-bottom: 2rem;
  background: var(--ivory);
  border-radius: 50%;
  padding: 16px 20px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.5), 0 0 0 1px var(--brass-dim);
  opacity: 0;
  animation: rise 1.1s ease 0.1s forwards;
}
.hero-content .eyebrow { color: var(--ivory-50); opacity: 0; animation: rise 1s ease 0.35s forwards; }
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  letter-spacing: clamp(0.08em, 1vw, 0.18em);
  line-height: 1.06;
  text-indent: clamp(0.08em, 1vw, 0.18em);
  color: var(--ivory);
  text-shadow: 0 2px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  animation: rise 1.1s ease 0.5s forwards;
}
.hero-title .apos { color: var(--gold); font-style: italic; }
.hero-line {
  margin-top: 1.9rem;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.86rem, 1.3vw, 1.05rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--ivory-70);
  opacity: 0;
  animation: rise 1.1s ease 0.7s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: var(--ivory-50);
}
.cue-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--brass), transparent);
  animation: cue 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-google {
  position: absolute;
  right: clamp(1.4rem, 4vw, 3.2rem);
  bottom: 2.2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--brass-dim);
  background: rgba(11, 10, 8, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ivory-70);
  opacity: 0;
  animation: rise 1.1s ease 0.9s forwards;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.hero-google:hover {
  border-color: var(--brass-dim);
  background: rgba(11, 10, 8, 0.55);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero-google .g-icon { width: 14px; height: 14px; flex-shrink: 0; }
.hero-google .g-stars { color: var(--gold); font-size: 0.85em; letter-spacing: 0.02em; }

/* ─── Image-backed feature sections ─── */

.section-image {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 96vh;
  padding: clamp(6rem, 12vh, 9rem) 1.5rem;
}
.image-bed { position: absolute; inset: 0; }
.image-bed img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 118%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  will-change: transform;
}
.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(11,10,8,0.55) 24%, rgba(11,10,8,0.6) 76%, var(--bg) 100%),
    radial-gradient(ellipse at center, rgba(11,10,8,0.28) 30%, rgba(11,10,8,0.7) 100%);
}
.feature-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

/* ─── Reveal on scroll ─── */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ─── Küche / Speisen ─── */

.kitchen {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(205, 168, 107, 0.06), transparent 60%),
    var(--bg-2);
  padding: clamp(6rem, 14vh, 10rem) clamp(1.4rem, 5vw, 4rem);
  overflow: hidden;
}
.section-inner { max-width: 1120px; margin-inline: auto; position: relative; z-index: 2; }
.section-head { text-align: center; margin-bottom: clamp(3.5rem, 8vh, 5.5rem); }

.dish-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: clamp(4rem, 9vh, 6rem);
}
.dish-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brass-faint);
  background: #000;
}
.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
  opacity: 0.9;
}
.dish-card:hover img { transform: scale(1.06); opacity: 1; }
.dish-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.4rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(8,7,5,0.92));
}
.dish-card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.dish-card-body p {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* Menu columns */
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.menu-rule {
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--brass-dim) 18%, var(--brass-dim) 82%, transparent);
}
.menu-col-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
}
.menu-col-note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  text-align: center;
  color: var(--ivory-50);
  margin: 0.4rem 0 2.6rem;
}
.dish { margin-bottom: 2.2rem; }
.dish:last-child { margin-bottom: 0; }
.dish-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}
.dish h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.24rem;
  letter-spacing: 0.05em;
}
.dots {
  flex: 1;
  border-bottom: 1px dotted var(--brass-dim);
  transform: translateY(-0.28em);
}
.price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--brass);
  white-space: nowrap;
}
.dish p {
  margin-top: 0.4rem;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ivory-50);
  font-style: italic;
}
.menu-more { text-align: center; margin-top: clamp(3.5rem, 8vh, 5rem); }

.ghost-cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  border: none;
  padding: 1rem 2.6rem;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.ghost-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}
.feature-inner .ghost-cta { margin-top: 2.6rem; }

/* ─── Split (Frühstück / Bar) ─── */

.split {
  padding: clamp(5rem, 12vh, 8.5rem) clamp(1.4rem, 5vw, 4rem);
  background: var(--bg);
}
.split-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border: 1px solid var(--brass-faint);
  padding: 10px;
  background: rgba(239, 231, 215, 0.03);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}
.split-copy .eyebrow { margin-bottom: 1.3rem; }
.split-copy h2 { margin-bottom: 1.6rem; }
.split-copy p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory-70);
}
.split-copy .divider { margin-left: 0; margin-right: auto; }
.mini-list {
  list-style: none;
  margin-top: 1.8rem;
}
.mini-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--brass-faint);
  font-weight: 300;
}
.mini-list li:last-child { border-bottom: none; }
.mini-list b { font-weight: 500; letter-spacing: 0.03em; }
.mini-list span { color: var(--brass); font-family: var(--sans); font-weight: 500; font-size: 0.95rem; white-space: nowrap; }

/* ─── Galerie ─── */

.gallery {
  padding: clamp(6rem, 14vh, 10rem) clamp(1.4rem, 5vw, 4rem);
  background: var(--bg-2);
}
.gallery-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brass-faint);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s;
  filter: saturate(0.92);
}
.gallery-grid figure:hover img { transform: scale(1.07); filter: saturate(1.05); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ─── Verwöhnen (Events) already uses .section-image ─── */

/* ─── Besuch / Kontakt ─── */

.visit {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(205, 168, 107, 0.05), transparent 60%),
    var(--bg);
  padding: clamp(6rem, 14vh, 10rem) clamp(1.4rem, 5vw, 4rem);
  overflow: hidden;
}
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.info-block { margin-bottom: 2.2rem; }
.info-block h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.info-block p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
}
.info-block a { text-decoration: none; border-bottom: 1px solid var(--brass-dim); transition: border-color 0.3s, color 0.3s; }
.info-block a:hover { color: var(--gold); border-color: var(--gold); }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.4rem; }
.ext-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--brass-faint);
  background: rgba(239, 231, 215, 0.035);
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-70);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, color 0.3s;
}
.ext-badge:hover { border-color: var(--brass-dim); background: rgba(239, 231, 215, 0.06); transform: translateY(-2px); color: var(--gold); }
.ext-badge .arrow { color: var(--brass); }
.ext-badge-google { white-space: nowrap; }
.ext-badge-google .g-icon { width: 16px; height: 16px; flex-shrink: 0; }
.ext-badge-google .g-stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 0.9em;
}

.visit-map {
  position: relative;
  border: 1px solid var(--brass-faint);
  padding: 10px;
  background: rgba(239, 231, 215, 0.03);
}
.visit-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  filter: grayscale(1) invert(0.92) sepia(0.32) saturate(1.4) hue-rotate(-6deg) brightness(0.82) contrast(1.04);
}
.map-link {
  display: block;
  text-align: center;
  padding: 0.9rem 0 0.35rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
  transition: color 0.3s ease;
}
.map-link:hover { color: var(--gold); }

/* Reservation */
.reserve {
  margin-top: clamp(4.5rem, 10vh, 7rem);
  text-align: center;
}
.reserve-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.12em;
}
.reserve-sub {
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-50);
  margin: 0.7rem 0 2.6rem;
}
.reserve-form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
  max-width: 960px;
  margin-inline: auto;
}
.reserve-form label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
}
.reserve-form label span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
}
.reserve-form input,
.reserve-form select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(239, 231, 215, 0.045);
  border: 1px solid var(--brass-faint);
  border-radius: 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.1rem;
  min-width: 150px;
  transition: border-color 0.3s ease;
  color-scheme: dark;
}
.reserve-form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b9975f' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.reserve-form input:focus,
.reserve-form select:focus { outline: none; border-color: var(--gold); }
.reserve-btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  border: none;
  padding: 1rem 2.6rem;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.reserve-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ─── CTA sweep — traveling gold light around the border ─── */

@property --cta-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.nav-cta,
.ghost-cta,
.reserve-btn {
  position: relative;
  isolation: isolate;
}
.nav-cta::before,
.ghost-cta::before,
.reserve-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  padding: 2px;
  background: conic-gradient(
    from var(--cta-angle),
    transparent 0deg,
    transparent 250deg,
    var(--brass) 296deg,
    var(--ivory) 328deg,
    var(--gold) 344deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: cta-sweep 3.6s linear infinite;
}
@keyframes cta-sweep {
  to { --cta-angle: 360deg; }
}
.reserve-confirm {
  margin-top: 2.2rem;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--gold);
}
.reserve-confirm a { color: inherit; }

/* ─── 360°-Rundgang ─── */

.tour {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(205, 168, 107, 0.05), transparent 60%),
    var(--bg-2);
  padding: clamp(6rem, 14vh, 10rem) clamp(1.4rem, 5vw, 4rem);
  overflow: hidden;
}
.tour-frame {
  max-width: 1120px;
  margin-inline: auto;
  position: relative;
  border: 1px solid var(--brass-faint);
  padding: 10px;
  background: rgba(239, 231, 215, 0.03);
}
.tour-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* ─── Footer ─── */

.footer {
  border-top: 1px solid var(--brass-faint);
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
  background: var(--bg);
}
.footer-seal {
  width: 92px;
  margin: 0 auto 1.5rem;
  background: var(--ivory);
  border-radius: 50%;
  padding: 9px 12px;
  box-shadow: 0 0 0 1px var(--brass-dim);
}
.footer-mark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}
.footer-tag {
  font-style: italic;
  font-weight: 400;
  color: var(--ivory-50);
  margin: 0.9rem 0 1.8rem;
}
.footer-fine {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--ivory-30);
  margin-top: 0.4rem;
}
.footer-links {
  margin-top: 1.8rem;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-50);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── Film grain ─── */

.grain {
  position: fixed;
  inset: -100%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3%, -6%); }
  20% { transform: translate(4%, 3%); }
  30% { transform: translate(-4%, 5%); }
  40% { transform: translate(5%, -4%); }
  50% { transform: translate(-3%, 4%); }
  60% { transform: translate(4%, 6%); }
  70% { transform: translate(-5%, -3%); }
  80% { transform: translate(3%, 5%); }
  90% { transform: translate(-4%, -5%); }
}

/* ─── Legal pages ─── */

.legal {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(8rem, 16vh, 11rem) clamp(1.4rem, 5vw, 2rem) 6rem;
}
.legal .eyebrow { text-align: center; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.6rem;
}
.legal .divider { margin-bottom: 3.5rem; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin: 2.6rem 0 0.9rem;
}
.legal h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.8rem 0 0.6rem;
  color: var(--ivory);
}
.legal p, .legal li {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ivory-70);
  margin-bottom: 0.9rem;
}
.legal ul { padding-left: 1.3rem; }
.legal a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--brass-dim); }
.legal a:hover { border-color: var(--gold); }
.legal .back {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bg);
  border-bottom: none;
}

/* ─── Speisekarte (menu images) page ─── */

.menu-pages {
  max-width: 900px;
  margin: clamp(8rem, 16vh, 11rem) auto 5rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.menu-pages img {
  width: 100%;
  border: 1px solid var(--brass-faint);
  border-radius: 4px;
  background: #fff;
}

/* ─── Reduced motion ─── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .cue-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-seal, .hero-content .eyebrow, .hero-title, .hero-line, .hero-google { opacity: 1; animation: none; }
  .intro-ring circle { animation: none; stroke-dashoffset: 0; }
  .intro-seal { animation: none; opacity: 1; transform: none; }
  .intro-word { animation: none; opacity: 1; }
  .nav-cta::before, .ghost-cta::before, .reserve-btn::before { animation: none; }
}

/* ═══ MOBILE PASS ═══ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding-inline: 1.3rem; }
  .nav-brand .brand-txt { display: none; }

  .dish-cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .dish-card img { aspect-ratio: 16 / 10; }

  .menu-columns { grid-template-columns: 1fr; gap: 0; }
  .menu-rule {
    height: 1px; align-self: center; width: 200px; margin: 3.5rem auto;
    background: linear-gradient(90deg, transparent, var(--brass-dim), transparent);
  }

  .split-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .split.reverse .split-media { order: 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 1; }

  .visit-grid { grid-template-columns: 1fr; }

  .reserve-form { flex-direction: column; align-items: stretch; }
  .reserve-form label, .reserve-form input, .reserve-form select { width: 100%; }
  .reserve-btn { width: 100%; padding-block: 1.1rem; }

  .section-image { min-height: 84vh; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 0.06em; text-indent: 0.06em; }
  .gallery-grid { grid-auto-rows: 128px; }

  .hero-cue { bottom: 1.8rem; gap: 0.5rem; }
  .cue-line { height: 30px; }
  .hero-google {
    right: 1rem;
    bottom: 5.6rem;
    font-size: 0.62rem;
    padding: 0.45rem 0.7rem;
    gap: 0.4rem;
  }
  .hero-google .g-icon { width: 12px; height: 12px; }
}
