/* =========================================================================
   TAFELHAUS — Dark Luxury Fine Dining
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  /* Farben */
  --black:        #0a0807;
  --black-soft:   #131110;
  --black-deep:   #050403;
  --ivory:        #f0e8d8;
  --ivory-dim:    #c9bfa9;
  --ivory-mute:   rgba(240, 232, 216, 0.55);
  --gold:         #c9a961;
  --gold-deep:    #9a8042;
  --brown:        #3a2f24;
  --brown-soft:   #2a221a;
  --line:         rgba(240, 232, 216, 0.12);
  --line-strong:  rgba(240, 232, 216, 0.24);

  /* Typo */
  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, sans-serif;

  /* Easing */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s var(--ease);
}

/* =========================================================================
   TYPOGRAFIE
   ========================================================================= */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: inline-block;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ivory);
}

h1 {
  font-size: clamp(3rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 400;
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

p {
  color: var(--ivory-dim);
  max-width: 60ch;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ivory);
  max-width: 38ch;
}

/* =========================================================================
   LAYOUT
   ========================================================================= */

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section {
  position: relative;
}

.section-pad {
  padding: clamp(6rem, 12vw, 11rem) 0;
}

.section-pad-sm {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.8rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 8, 7, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--ivory);
  text-transform: uppercase;
}

.nav-logo span {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 0.45rem;
  transform: translateY(-3px);
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--gold);
  transition: all 0.5s var(--ease);
}

.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}

.nav-burger {
  display: none;
  width: 28px;
  height: 16px;
  position: relative;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transition: all 0.4s var(--ease);
}

.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 50%; }
.nav-burger span:nth-child(3) { bottom: 2px; }

.nav-burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); top: 50%; }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); bottom: 50%; }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.2rem 2.4rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.btn:hover {
  color: var(--black);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary::before {
  background: var(--ivory);
}

.btn-primary:hover {
  color: var(--black);
}

.btn-arrow::after {
  content: '→';
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.4s var(--ease);
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(6px);
}

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

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

.hero-bg picture,
.hero-bg img,
.hero-bg .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  animation: heroZoom 22s var(--ease-slow) forwards;
}

/* Hero-Video: liegt über dem Fallback-Bild */
.hero-bg .hero-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Subtle weicher Aufdimmen wenn Video geladen ist */
  opacity: 0;
  animation: heroZoom 22s var(--ease-slow) forwards, heroVideoFade 1.4s var(--ease-slow) 0.2s forwards;
}

@keyframes heroVideoFade {
  to { opacity: 1; }
}

/* Fallback-Bild liegt darunter — nur sichtbar wenn Video nicht lädt */
.hero-bg .hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at center top, transparent 0%, rgba(10,8,7,0.45) 60%, rgba(10,8,7,0.95) 100%),
    linear-gradient(180deg, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.25) 30%, rgba(10,8,7,0.82) 78%, rgba(10,8,7,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  margin-bottom: 2.5rem;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 1.6s var(--ease-slow) 0.3s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroIn 1.4s var(--ease-slow) 0.7s forwards;
}

.hero-meta-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--line-strong);
}

.hero-meta-text {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 1.4s var(--ease-slow) 1s forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: heroIn 1.4s var(--ease-slow) 1.4s forwards;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ivory-mute), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Page hero — kleiner, für Unterseiten */
.page-hero {
  height: 70vh;
  min-height: 560px;
}

.page-hero .hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
}

/* =========================================================================
   FADE-IN ON SCROLL
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-slow), transform 1.2s var(--ease-slow);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =========================================================================
   INTRO BLOCK
   ========================================================================= */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.intro-text p + p {
  margin-top: 1.2rem;
}

.intro-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  margin-bottom: -3rem;
  user-select: none;
}

/* =========================================================================
   IMAGE STORY (split)
   ========================================================================= */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story.reverse {
  direction: rtl;
}

.story.reverse > * {
  direction: ltr;
}

.story-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-slow);
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-content h2 {
  margin-bottom: 1.8rem;
}

.story-content p {
  margin-bottom: 1.2rem;
}

.story-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

/* =========================================================================
   SIGNATURE DISHES
   ========================================================================= */

.signatures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.signature-card {
  position: relative;
}

.signature-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.6rem;
  position: relative;
  background: var(--black-soft);
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-slow), filter 0.8s var(--ease);
  filter: brightness(0.9);
}

.signature-card:hover .signature-image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.signature-number {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ivory);
  letter-spacing: 0.1em;
  z-index: 2;
  mix-blend-mode: difference;
}

.signature-card h3 {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.signature-card p {
  font-size: 0.92rem;
  color: var(--ivory-mute);
}

/* =========================================================================
   FULL-WIDTH PARALLAX IMAGE
   ========================================================================= */

.parallax {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0.6) 0%, rgba(10,8,7,0.2) 50%, rgba(10,8,7,0.7) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.parallax-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.35;
  max-width: 22ch;
  color: var(--ivory);
}

.parallax-attr {
  margin-top: 2rem;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================================
   GALLERY
   ========================================================================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--black-soft);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  aspect-ratio: 4 / 5;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 4 / 10.2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-slow);
  filter: brightness(0.92);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* =========================================================================
   FINAL CTA
   ========================================================================= */

.final-cta {
  text-align: center;
  padding: clamp(7rem, 14vw, 13rem) 2rem;
  position: relative;
  background: var(--black-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  margin-bottom: 2rem;
  position: relative;
}

.final-cta p {
  margin: 0 auto 3rem;
  max-width: 38ch;
  position: relative;
}

/* =========================================================================
   MENU PAGE
   ========================================================================= */

.menu-section {
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.menu-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.menu-section-header h2 {
  font-style: italic;
}

.menu-section-meta {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: baseline;
  transition: padding 0.5s var(--ease);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  padding-left: 1.5rem;
}

.menu-item-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 2.5rem;
}

.menu-item-body h3 {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.menu-item-body p {
  font-size: 0.92rem;
  color: var(--ivory-mute);
  max-width: 52ch;
  font-style: italic;
  font-family: var(--serif);
}

.menu-item-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.04em;
}

.menu-tasting-card {
  background: var(--black-soft);
  border: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
}

.menu-tasting-card::before,
.menu-tasting-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
}

.menu-tasting-card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.menu-tasting-card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.menu-tasting-courses {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin: 2rem 0;
  flex-wrap: wrap;
}

.menu-tasting-course {
  font-family: var(--serif);
  font-style: italic;
}

.menu-tasting-course strong {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}

.menu-tasting-course span {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--ivory-mute);
  font-family: var(--sans);
}

.menu-note {
  text-align: center;
  padding: 4rem 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-mute);
  max-width: 50ch;
  margin: 0 auto;
}

/* =========================================================================
   EXPERIENCE PAGE — Editorial Splits
   ========================================================================= */

.exp-philosophy {
  text-align: center;
  max-width: 36ch;
  margin: 0 auto;
}

.exp-philosophy .lead {
  margin: 0 auto;
}

/* =========================================================================
   RESERVATION FORM
   ========================================================================= */

.res-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 0.8rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.6rem 0 0.9rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.5s var(--ease);
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ivory-mute);
  font-style: italic;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c9a961' stroke-width='1' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.5rem;
  cursor: pointer;
}

.form-field select option {
  background: var(--black);
  color: var(--ivory);
}

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

.form-submit {
  margin-top: 1rem;
  align-self: flex-start;
}

.res-info {
  background: var(--black-soft);
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 4vw, 3.5rem);
}

.res-info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.res-info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.res-info-block:first-child {
  padding-top: 0;
}

.res-info-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.res-info-block h3 {
  font-style: italic;
  margin-bottom: 0.6rem;
}

.res-info-block p,
.res-info-block dl {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ivory-dim);
  line-height: 1.6;
}

.res-info-block dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
}

.res-info-block dt {
  color: var(--ivory-mute);
  font-size: 0.95rem;
}

.res-info-block dd {
  color: var(--ivory);
}

.map-placeholder {
  margin-top: 4rem;
  aspect-ratio: 21/9;
  background: var(--black-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 232, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 232, 216, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-pin-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6);
  animation: pinPulse 2.5s ease-out infinite;
}

@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6); }
  100% { box-shadow: 0 0 0 30px rgba(201, 169, 97, 0); }
}

.map-pin p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory);
  margin: 0 auto;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

footer {
  background: var(--black-deep);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--ivory-mute);
  max-width: 30ch;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--ivory-dim);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-burger {
    display: block;
    z-index: 110;
  }

  .nav-cta {
    display: none;
  }

  .intro,
  .story,
  .res-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story.reverse {
    direction: ltr;
  }

  .signatures {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall {
    grid-row: auto;
    aspect-ratio: 4/5;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .menu-item-num {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: 600px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}

/* =========================================================================
   GRAIN OVERLAY (sehr subtil)
   ========================================================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.91 0 0 0 0 0.85 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: overlay;
}
