/* ============================================================
   ZORBAS RESTAURANT · HAGENOW — Main Stylesheet
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --blue-primary:   #1B4F8C;
  --blue-deep:      #0D3B66;
  --blue-light:     #4A90C2;
  --warm-white:     #FAF7F2;
  --white:          #FFFFFF;
  --gold:           #D4A574;
  --gold-dark:      #B88A5A;
  --text-dark:      #2C2C2C;
  --text-muted:     #7A7A7A;
  --olive:          #6B7F4A;
  --border-light:   rgba(0, 0, 0, 0.07);
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:      0 4px 24px rgba(0, 0, 0, 0.11);
  --shadow-lg:      0 8px 48px rgba(0, 0, 0, 0.16);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --transition:     all 0.3s ease;
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width:      1200px;
  --header-h:       80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture over entire page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--blue-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title--white { color: var(--white); }

/* Animated fade-in elements */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.is-visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.is-visible { opacity: 1; transform: translateX(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   GREEK MEANDER SVG DIVIDERS
   ============================================================ */
.meander {
  width: 100%;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='18' viewBox='0 0 40 18'%3E%3Cpath d='M0,9 L9,9 L9,0 L27,0 L27,18 L13,18 L13,13 L31,13 L31,4 L18,4 L18,9 L40,9' fill='none' stroke='%231B4F8C' stroke-width='1.4' stroke-opacity='0.35' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  margin: 3rem 0;
}
.meander--gold {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='18' viewBox='0 0 40 18'%3E%3Cpath d='M0,9 L9,9 L9,0 L27,0 L27,18 L13,18 L13,13 L31,13 L31,4 L18,4 L18,9 L40,9' fill='none' stroke='%23D4A574' stroke-width='1.6' stroke-opacity='0.7' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.meander--white {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='18' viewBox='0 0 40 18'%3E%3Cpath d='M0,9 L9,9 L9,0 L27,0 L27,18 L13,18 L13,13 L31,13 L31,4 L18,4 L18,9 L40,9' fill='none' stroke='%23FFFFFF' stroke-width='1.4' stroke-opacity='0.25' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.meander--sm {
  width: 140px;
  height: 12px;
  background-size: auto 12px;
  margin: 0.5rem 0 1.75rem;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 59, 102, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  transition: height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.site-header.scrolled {
  height: 62px;
  background: rgba(10, 45, 78, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-greek {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  transition: font-size 0.35s ease;
}
.site-header.scrolled .logo-greek { font-size: 1.5rem; }
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Desktop nav */
.main-nav { display: none; }
@media (min-width: 768px) { .main-nav { display: flex; align-items: center; gap: 0.25rem; } }

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}
.nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav-link.is-active { color: var(--gold); }

/* Mobile menu toggle */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
@media (min-width: 768px) { .burger { display: none; } }
.burger-line {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--blue-deep);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) { .mobile-nav { display: none; } }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav .nav-link { font-family: var(--font-serif); font-size: 2rem; padding: 0.5rem 2rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601581875309-fafbf2d3ed3a?w=1920&q=82&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 59, 102, 0.88) 0%,
    rgba(27, 79, 140, 0.72) 45%,
    rgba(13, 59, 102, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 165, 116, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-greek-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 2.75rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.9); }
  55%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 6rem 0 4rem;
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-body p {
  font-size: 1rem;
  color: #4e4e4e;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.5rem;
  margin: 1.75rem 0;
  background: linear-gradient(to right, rgba(212,165,116,0.06), transparent 80%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blockquote q {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--blue-primary);
  line-height: 1.55;
  quotes: none;
  margin-bottom: 0.5rem;
}
.blockquote cite {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* About image */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(13, 59, 102, 0.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  line-height: 1.3;
}
.about-badge strong {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
}

/* Quotes section */
.quotes-section {
  padding: 4rem 0;
  background: var(--warm-white);
}
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .quotes-grid { grid-template-columns: 1fr 1fr; } }

.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}
.quote-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.quote-card q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--blue-primary);
  line-height: 1.65;
  quotes: none;
  display: block;
  margin-bottom: 1rem;
}
.quote-card cite {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.menu-header { text-align: center; margin-bottom: 2.5rem; }

/* Sticky category filter bar */
.cat-filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: var(--white);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 3rem;
}
.cat-filter-bar::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(27,79,140,0.15), transparent);
}
.cat-chips {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cat-chips::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .cat-chips { flex-wrap: wrap; justify-content: center; padding: 0 2rem; }
}

.chip {
  flex-shrink: 0;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1.5px solid rgba(27, 79, 140, 0.22);
  color: var(--blue-primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-sans);
}
.chip:hover,
.chip.is-active {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

/* Menu category block */
.menu-cat {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--header-h) + 72px);
}

.menu-cat-head { margin-bottom: 1.5rem; }
.menu-cat-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--blue-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cat-icon { font-size: 1.4rem; }

/* Individual menu item */
.menu-item {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
}
.menu-item:last-child { border-bottom: none; }

.item-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.item-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 2.25rem;
  flex-shrink: 0;
}
.item-name {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
  flex-shrink: 0;
}
.item-dots {
  flex: 1;
  min-width: 16px;
  height: 1px;
  border-top: 2px dotted rgba(0,0,0,0.13);
  margin-bottom: 3px;
}
.item-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.item-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-top: 0.2rem;
  padding-left: 2.35rem;
}

/* Mobile: lange Gerichtnamen umbrechen */
@media (max-width: 560px) {
  .item-row {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.2rem;
  }
  .item-name {
    flex: 1 0 calc(100% - 2.75rem);
  }
  .item-dots {
    flex: 1;
    min-width: 20px;
  }
}

/* Menu notice */
.menu-note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  line-height: 1.7;
}

/* ============================================================
   OPENING HOURS & CONTACT
   ============================================================ */
.contact-section {
  background: var(--blue-deep);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,194,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* Hours table */
.hours-list { margin-top: 1.75rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 1rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.hours-time {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  text-align: right;
  font-style: italic;
}
.hours-row.closed .hours-time {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

/* Contact info */
.contact-col .section-label { color: rgba(255,255,255,0.45); }
.contact-items { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.c-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}
.c-info { display: flex; flex-direction: column; gap: 0.15rem; }
.c-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.c-value {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.c-value a { color: var(--gold); }
.c-value a:hover { color: var(--white); }

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.05rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 2.25rem;
  transition: var(--transition);
}
.btn-reserve:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.32);
}

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0,0,0,0.35);
  height: 340px;
  margin-top: 1.5rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #081F37;
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer-grid { grid-template-columns: 2fr 1fr 1.6fr; } }

.footer-brand .logo-greek { font-size: 1.6rem; }
.footer-slogan {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-addr {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
}
.footer-addr a { color: var(--gold); }
.footer-addr a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal-btn {
  font-size: 0.85rem;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: var(--transition);
}
.footer-legal-btn:hover { color: var(--white); }

/* ============================================================
   IMPRESSUM MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 40, 0.78);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media (min-width: 640px) { .modal-overlay { align-items: center; } }
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--warm-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 2.25rem 1.5rem 3rem;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overscroll-behavior: contain;
}
@media (min-width: 640px) {
  .modal-box {
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-height: 80vh;
    transform: translateY(20px) scale(0.97);
  }
}
.modal-overlay.is-open .modal-box { transform: translateY(0) scale(1); }

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.modal-head h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--blue-primary);
}
.modal-close-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  font-size: 1.1rem;
  transition: var(--transition);
  border: none; cursor: pointer;
  color: var(--text-dark);
  flex-shrink: 0;
}
.modal-close-btn:hover { background: rgba(0,0,0,0.14); }

.modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--blue-primary);
  margin: 1.75rem 0 0.5rem;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p, .modal-body address {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.75;
}
.modal-body a { color: var(--blue-primary); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ============================================================
   PRINT — MENU ONLY
   ============================================================ */
@media print {
  .site-header, .hero, .about-section, .quotes-section,
  .contact-section, .site-footer, .modal-overlay,
  .cat-filter-bar, .hero-scroll-cue { display: none !important; }

  .menu-section { padding: 1rem 0; }
  .menu-cat { break-inside: avoid; page-break-inside: avoid; }
  .item-price { color: #000 !important; }
  .container { max-width: 100%; padding: 0 1.5rem; }
  body { font-size: 11px; }
  .menu-cat-title { font-size: 1.15rem; }
  .meander { display: none; }
}
