/* ─────────────────────────────────────────
   Reset
───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─────────────────────────────────────────
   Tokens
───────────────────────────────────────── */
:root {
  --cream:      #FAF8F3;
  --white:      #FFFFFF;
  --black:      #1A1A1A;
  --gold:       #C9A84C;
  --gold-pale:  rgba(201,168,76,0.18);
  --gray:       #6B6B6B;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
}

/* ─────────────────────────────────────────
   Base
───────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--black);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────
   Navigation
───────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--gold);
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.main-nav a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.25s;
}

.main-nav a:hover { color: var(--gold); }

.main-nav .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.45rem 1.4rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.main-nav .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─────────────────────────────────────────
   Hero
───────────────────────────────────────── */
.hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  background-image:
    repeating-linear-gradient(
       45deg,
       transparent,
       transparent 48px,
       rgba(201,168,76,0.055) 48px,
       rgba(201,168,76,0.055) 49px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 48px,
      rgba(201,168,76,0.055) 48px,
      rgba(201,168,76,0.055) 49px
    );
  position: relative;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 4rem;
}

.hero-location {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  line-height: 1.05;
  margin: 0;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

/* Scroll-down Pfeil */
.scroll-down {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  animation: scrollFloat 2.4s ease-in-out infinite;
}

.scroll-down::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5));
}

.scroll-down::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(201,168,76,0.65);
  border-bottom: 1px solid rgba(201,168,76,0.65);
  transform: rotate(45deg) translate(-1px, -1px);
}

@keyframes scrollFloat {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(7px); }
}

/* ─────────────────────────────────────────
   Decorative Rule
───────────────────────────────────────── */
.rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 220px;
  margin: 1.3rem auto;
}

.rule::before,
.rule::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(201,168,76,0.45);
}

.rule span {
  font-size: 0.42rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}

.rule--left {
  margin: 1.8rem 0;
  width: 180px;
}

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  border: 1px solid rgba(201,168,76,0.55);
  color: var(--black);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.2);
}

/* ─────────────────────────────────────────
   Sections
───────────────────────────────────────── */
.section {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section--center {
  text-align: center;
}

.bg-white {
  background: var(--white);
}

/* Labels above headings */
.label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}

/* Body prose */
.prose {
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
}

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

/* ─────────────────────────────────────────
   Chef Section
───────────────────────────────────────── */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  text-align: left;
}

.split-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
}

.split-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.split-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.85;
}

.chef-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   Tasting Menu
───────────────────────────────────────── */
.menu-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: left;
}

.course:first-child { border-top: 1px solid rgba(201,168,76,0.15); }

.course img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}

.course-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.course-text p {
  font-size: 0.88rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   Gallery
───────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  height: 360px;
  background: #888 center/cover;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Einheitliches dunkles Overlay über allen Bildern */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 4, 0.4);
  transition: background 0.45s;
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 1;
}

.gallery-item:hover::after {
  background: rgba(12, 9, 4, 0.18);
}

/* ─────────────────────────────────────────
   Reservation
───────────────────────────────────────── */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  text-align: left;
}

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

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

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

.form-field label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-field input,
.form-field select {
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--black);
  appearance: none;
  transition: border-color 0.25s;
}

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

.btn-submit {
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.4rem;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--white);
}

.map-wrapper {
  height: 100%;
  min-height: 420px;
  border: 1px solid rgba(201,168,76,0.25);
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 4rem 2rem 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

/* ─────────────────────────────────────────
   Scroll animations
───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 900px) {
  .section--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-image img {
    height: 380px;
  }

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

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 300px;
  }

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

  .gallery-item {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .hero-frame { inset: 1rem; }

  .hero-content { padding: 2rem 1.5rem; }

  .hero-title { letter-spacing: 0.08em; }

  .main-nav a:not(.nav-cta) { display: none; }

  .header-inner { padding: 1rem 1.5rem; }

  .section { padding: 5rem 1.5rem; }

  .course { grid-template-columns: 80px 1fr; gap: 1.2rem; }

  .course img { width: 80px; height: 80px; }

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