/* ============================================================
   RESTAURANT SAMOS — style.css
   Design: "Ägäische Dämmerung über dem Olivenhain"
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Colours */
  --aegean:      #282828;
  --aegean-mid:  #154E56;
  --aegean-light:#1F6B75;
  --bone:        #F3ECE0;
  --bone-dark:   #E8DDCA;
  --gold:        #C1AA78;
  --gold-light:  #D4C08F;
  --olive:       #6E7A4F;
  --olive-light: #8A9862;
  --clay:        #B4502E;
  --clay-dark:   #8F3E22;
  --ink:         #1C2321;
  --ink-light:   #3A4440;
  --white:       #FFFFFF;
  --overlay:     rgba(40,40,40,0.72);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing (8pt grid) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-text: 72ch;
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --dur-fast: 150ms;
  --dur-mid:  260ms;
  --dur-slow: 400ms;

  /* Z-index scale */
  --z-base:    0;
  --z-above:   10;
  --z-sticky:  100;
  --z-overlay: 200;
  --z-modal:   300;

  /* Header height (updated by JS) */
  --header-h: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── Utilities ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.eyebrow--olive { color: var(--olive-light); }
.eyebrow--bone  { color: var(--bone-dark); }

/* Signature: Horizon divider */
.horizon {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.45;
  margin-block: var(--sp-16);
}

.horizon--narrow {
  max-width: 200px;
  margin-inline: auto;
  margin-block: var(--sp-8);
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--gold);
  color: var(--ink);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius);
  font-weight: 600;
  z-index: var(--z-modal);
  transition: top var(--dur-fast);
}

.skip-link:focus {
  top: var(--sp-4);
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75em 1.75em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--clay-dark);
  box-shadow: 0 4px 20px rgba(180,80,46,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(243,236,224,0.5);
}

.btn-outline:hover {
  border-color: #C1AA78;
  color: #C1AA78;
}

.btn-dark {
  background: #0B141B;
  color: var(--bone);
  border: 2px solid transparent;
}

.btn-dark:hover {
  background: #15212A;
  box-shadow: 0 4px 20px rgba(11,20,27,0.35);
}

.btn-gold {
  background: #C1AA78;
  color: var(--ink);
  border: 2px solid transparent;
}

.btn-gold:hover {
  background: #d4c08f;
  box-shadow: 0 4px 20px rgba(193,170,120,0.4);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--dur-mid) var(--ease-out),
              background var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
  background: transparent;
}

.site-header.scrolled {
  height: 60px;
  background: rgba(11,20,27,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.header-logo img {
  height: 52px;
  width: auto;
  transition: height var(--dur-mid) var(--ease-out);
}

.site-header.scrolled .header-logo img {
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(243,236,224,0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-out);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.header-cta { flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-fast);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0B141B;
  z-index: calc(var(--z-sticky) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav .nav-links {
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.mobile-nav .nav-links a {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--bone);
}

/* ── Page offset for fixed header ── */
main { padding-top: var(--header-h); }
.hero { margin-top: calc(-1 * var(--header-h)); padding-top: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Ambient dusk gradient — shifts subtly */
.hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  height: 140%;
  will-change: transform;
  background:
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(193,170,120,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(21,33,42,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 49% 49% at 75% 50%, rgba(11,20,27,0.88) 0%, rgba(11,20,27,0.97) 55%, rgba(11,20,27,1.0) 100%),
    url('../assets/Images/titelbild-restaurant-samos (1).jpg') center / cover no-repeat;
  animation: dusk-shift 14s ease-in-out infinite alternate;
}

@keyframes dusk-shift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(4deg) brightness(1.04); }
  100% { filter: hue-rotate(-3deg) brightness(0.97); }
}


.hero-content {
  position: relative;
  z-index: var(--z-above);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  padding-block: var(--sp-32);
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C1AA78;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in var(--dur-slow) var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-5xl), 8vw, var(--text-7xl));
  font-weight: 300;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: var(--sp-6);
  max-width: 14ch;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in var(--dur-slow) var(--ease-out) 0.45s forwards;
}

.hero-title strong {
  font-weight: 700;
  color: #C1AA78;
  font-style: italic;
}

.hero-sub {
  font-size: var(--text-base);
  color: rgba(243,236,224,0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  max-width: 42ch;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in var(--dur-slow) var(--ease-out) 0.65s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in var(--dur-slow) var(--ease-out) 0.85s forwards;
}

@keyframes hero-in {
  to { opacity: 1; transform: none; }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(243,236,224,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-in var(--dur-slow) var(--ease-out) 1.4s forwards;
}

.hero-scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(193,170,120,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.3); opacity: 0.9; }
}

/* ── SECTIONS ── */
.section {
  padding-block: var(--sp-24);
}

.section--dark {
  background: var(--aegean);
  color: var(--bone);
}

.section--mid {
  background: var(--aegean-mid);
  color: var(--bone);
}

.section--bone {
  background: var(--bone);
  color: var(--ink);
}

.section--bone-dark {
  background: var(--bone-dark);
  color: var(--ink);
}

.section-header {
  margin-bottom: var(--sp-12);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.15;
  color: inherit;
}

.section--dark .section-title,
.section--mid .section-title {
  color: var(--bone);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: var(--text-lg);
  line-height: 1.75;
  max-width: 60ch;
  color: inherit;
  opacity: 0.85;
}

.section--dark .section-body {
  opacity: 0.75;
  color: var(--bone);
}

/* ── ÜBER UNS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-text { max-width: 52ch; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.feature-item {
  padding: var(--sp-5) var(--sp-5);
  background: rgba(193,170,120,0.08);
  border: 1px solid rgba(193,170,120,0.2);
  border-radius: var(--radius);
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              background var(--dur-mid) var(--ease-out);
}

.feature-item:hover {
  border-color: rgba(193,170,120,0.5);
}

.feature-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}

.feature-item span {
  font-size: var(--text-sm);
  color: rgba(243,236,224,0.7);
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0.5;
  z-index: 1;
}

/* ── FOOD GALLERY ── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.food-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  cursor: pointer;
  background: var(--aegean-mid);
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.food-card:hover img {
  transform: scale(1.06);
}

.food-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,40,40,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}

.food-card:hover .food-card-overlay { opacity: 1; }

.food-card-overlay span {
  color: var(--bone);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ── LOCAL / LOKAL ── */
.lokal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.lokal-card {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.lokal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.lokal-card:hover img { transform: scale(1.05); }

/* ── CATERING / FEIERN ── */
.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.catering-text { max-width: 52ch; }

.catering-highlight {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding: var(--sp-10);
  background: rgba(11,20,27,0.04);
  border: 1px solid rgba(193,170,120,0.35);
  border-radius: var(--radius-lg);
  color: var(--ink);
}

.catering-highlight h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--gold);
}

/* ── STELLENANZEIGEN ── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.job-card {
  padding: var(--sp-8);
  background: var(--bone);
  border: 1px solid var(--bone-dark);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  transition: box-shadow var(--dur-mid), transform var(--dur-mid);
}

.job-card:hover {
  box-shadow: 0 8px 32px rgba(40,40,40,0.12);
  transform: translateY(-2px);
}

.job-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.job-type {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--sp-4);
}

.job-desc {
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}

/* ── GRUSSWORD ── */
.greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: center;
}

.greeting-text {}

.greeting-greek {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.greeting-translation {
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: rgba(243,236,224,0.5);
  text-transform: uppercase;
  margin-bottom: var(--sp-8);
}

.greeting-quote {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: rgba(243,236,224,0.8);
  max-width: 48ch;
  margin-bottom: var(--sp-6);
}

.greeting-sig {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--gold-light);
}

.greeting-photo {
  position: relative;
}

.greeting-photo img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  margin-inline: auto;
}

.greeting-photo::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(193,170,120,0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ── KONTAKT / MAPS ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--sp-8); }

.contact-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--bone);
  margin-bottom: var(--sp-3);
}

.contact-block p,
.contact-block a {
  font-size: var(--text-base);
  color: rgba(243,236,224,0.72);
  line-height: 1.8;
}

.contact-block a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  color: rgba(243,236,224,0.72);
}

.hours-table td {
  padding-block: var(--sp-2);
  vertical-align: top;
}

.hours-table td:first-child {
  padding-right: var(--sp-4);
  color: rgba(243,236,224,0.5);
  width: 40%;
}

.hours-table .closed { color: rgba(180,80,46,0.7); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(193,170,120,0.2);
  height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.05);
}

/* ── FOOTER ── */
.site-footer {
  background: #333333;
  color: #ffffff;
  padding-block: var(--sp-16) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: var(--sp-4);
  opacity: 0.85;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--sp-5);
}

.footer-col p,
.footer-col a {
  font-size: var(--text-sm);
  line-height: 1.9;
  color: #ffffff;
}

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

.footer-legal {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-bottom {
  background: #000000;
  padding-block: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: #ffffff;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.footer-bar {
  background: #000000;
  margin-top: var(--sp-8);
}

.footer-bottom a { color: #ffffff; }
.footer-bottom a:hover { color: var(--gold); }

/* ── MOBILE FAB BAR ── */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  padding: var(--sp-3) var(--sp-4);
  padding-bottom: calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
  gap: var(--sp-2);
  align-items: stretch;
}

@media (max-width: 768px) {
  .mobile-fab { display: flex; }
  body { padding-bottom: 0; }
  .footer-bar { padding-bottom: 80px; }
}

.mobile-fab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4) var(--sp-3);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(11,20,27,0.95);
  border: 2px solid rgba(193,170,120,0.25);
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
  -webkit-tap-highlight-color: transparent;
}

.mobile-fab-btn:active {
  background: rgba(193,170,120,0.10);
  color: var(--gold);
  border-color: rgba(193,170,120,0.6);
}

.mobile-fab-top {
  flex: 0 0 52px;
  padding: 0;
}

.mobile-fab-top svg {
  width: 22px;
  height: 16px;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 48px;
  height: 48px;
  background: #0B141B;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, background 200ms;
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
  color: #0B141B;
}

@media (max-width: 768px) {
  .back-to-top { display: none; }
}

/* ── SPEISEKARTE PAGE ── */
.page-hero {
  background: var(--aegean);
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--sp-20) + var(--header-h));
  padding-bottom: calc(var(--sp-16) + 48px);
  margin-bottom: -48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(193,170,120,0.07) 0%, transparent 65%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: 300;
  color: var(--bone);
  margin-bottom: var(--sp-4);
}

.page-hero .page-sub {
  color: rgba(243,236,224,0.6);
  font-size: var(--text-lg);
}

/* Sticky category nav */
.menu-nav {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(11,20,27,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(193,170,120,0.15);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar { display: none; }

.menu-nav-inner {
  display: flex;
  gap: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.menu-nav-link {
  flex-shrink: 0;
  display: block;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,236,224,0.55);
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}

.menu-nav-link:hover,
.menu-nav-link.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Menu content */
.menu-content {
  padding-block: var(--sp-12);
  background: var(--bone);
}

.menu-section {
  padding-block: var(--sp-12);
  border-bottom: 1px solid var(--bone-dark);
}

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

.menu-section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--aegean);
  margin-bottom: var(--sp-2);
}

.menu-section-sub {
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-bottom: var(--sp-8);
  font-style: italic;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Dotted leader */
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: baseline;
}

.menu-item-left {
  display: flex;
  align-items: baseline;
  gap: 0;
  min-width: 0;
}

.menu-item-name {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-additives {
  font-size: var(--text-xs);
  color: var(--ink-light);
  opacity: 0.55;
  margin-left: var(--sp-1);
  flex-shrink: 0;
}

.menu-item-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(110,122,79,0.35);
  margin: 0 var(--sp-2) 4px;
  min-width: 16px;
}

.menu-item-desc {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  color: var(--ink-light);
  margin-top: calc(-1 * var(--sp-3));
  padding-left: 0;
  font-style: italic;
}

.menu-item-price {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--aegean);
  white-space: nowrap;
}

/* Allergen legend */
.allergen-legend {
  background: var(--bone-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  margin-top: var(--sp-12);
}

.allergen-legend h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
  color: var(--ink-light);
}

.allergen-list span strong {
  color: var(--aegean);
}

/* ── GALERIE PAGE ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  padding-block: var(--sp-12);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--aegean-mid);
}

.gallery-item:nth-child(4n+1) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease-out);
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(4n+1) img { aspect-ratio: auto; height: 100%; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,40,40,0);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:hover .gallery-item-overlay {
  background: rgba(40,40,40,0.3);
  border-color: var(--gold);
}

.gallery-zoom-icon {
  opacity: 0;
  color: var(--bone);
  font-size: var(--text-2xl);
  transition: opacity var(--dur-mid) var(--ease-out);
}

.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(14,28,32,0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: calc(-1 * var(--sp-12));
  right: 0;
  color: rgba(243,236,224,0.7);
  font-size: var(--text-2xl);
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color var(--dur-fast), background var(--dur-fast);
}

.lightbox-close:hover { color: var(--gold); background: rgba(255,255,255,0.08); }

.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(243,236,224,0.1);
  color: var(--bone);
  font-size: var(--text-xl);
  flex-shrink: 0;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.lightbox-nav:hover { background: var(--gold); color: var(--ink); }

.lightbox-counter {
  position: absolute;
  bottom: calc(-1 * var(--sp-10));
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: rgba(243,236,224,0.45);
  text-transform: uppercase;
}

/* ── IMPRESSUM / DATENSCHUTZ ── */
.legal-page {
  padding-block: var(--sp-12) var(--sp-24);
  background: var(--bone);
}

.legal-content {
  max-width: 72ch;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--aegean);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
}

.legal-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.legal-content p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.legal-content a {
  color: var(--aegean);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--clay); }

.placeholder-block {
  background: rgba(180,80,46,0.08);
  border: 1.5px dashed var(--clay);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  margin-block: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clay-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid,
  .catering-inner,
  .greeting-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

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

  .food-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-row: span 1; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .burger { display: flex; }
  .mobile-nav { display: flex; }
  .main-nav .nav-links,
  .main-nav .header-cta { display: none; }

  .site-header {
    position: relative;
    background: #0B141B;
    z-index: 10;
  }

  .menu-nav { top: 0; }

  .section { padding-block: var(--sp-16); }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

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

  .menu-item {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .menu-item-name {
    white-space: normal;
    flex-shrink: 1;
  }
  .menu-item-leader {
    display: none;
  }
  .menu-item-price {
    align-self: start;
  }
  .menu-item-desc {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .about-features { grid-template-columns: 1fr; }

  .lightbox-img { max-width: 95vw; }
  .lightbox-nav { display: none; }
  .lightbox-close { top: -var(--sp-10); }

  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 260px; }

  .catering-highlight { padding: var(--sp-6); }
}

@media (max-width: 480px) {
  .food-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }
  .lokal-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .footer-legal { flex-direction: column; gap: var(--sp-2); }
}
