/* =============================================
   RESTAURANT RHODOS – Design System
   Griechisches Blau + Weiß + Gold
   ============================================= */

:root {
  --blue-dark: #0d1f3c;
  --blue: #1a3a6b;
  --blue-mid: #2a5298;
  --blue-light: #4a7fd4;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a28;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 4px 24px rgba(13, 31, 60, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.1rem;
}

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

/* ---- UTILS ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
  font-size: 0.82rem;
}

.btn-primary:hover {
  background: var(--gold-light);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 31, 60, 0.96);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-greek {
  font-size: 1.6rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 40%, #2a5298 80%, #1a3a6b 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(13, 31, 60, 0.82) 0%,
      rgba(13, 31, 60, 0.60) 50%,
      rgba(13, 31, 60, 0.75) 100%);
}

.hero-bg::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  font-variant-numeric: normal;
  font-feature-settings: normal;
}

.stat-label {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.section-title em {
  color: var(--blue-mid);
  font-style: normal;
}

.section-subtitle {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-title {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-title em {
  color: var(--blue-mid);
  font-style: normal;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.feature-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.2);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--blue-dark);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-image-badge strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}

.about-image-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-image-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: linear-gradient(160deg, rgba(13, 31, 60, 0.55) 0%, rgba(42, 82, 152, 0.35) 100%);
  border-radius: 12px;
}

.about-image-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  line-height: 1;
}

.about-image-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.04em;
}

.about-image-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   MENU / SPEISEKARTE
   ============================================ */
.menu-section {
  background: var(--white);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--off-white);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: var(--transition);
}

.tab-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.menu-content.hidden {
  display: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
}

.menu-item {
  background: var(--white);
  padding: 16px 20px;
  transition: background 0.2s;
}

.menu-item:hover {
  background: #f0f4ff;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.menu-item-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
}

.menu-item p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 5px;
  background: rgba(26, 58, 107, 0.08);
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-highlight {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
}

.allergen {
  font-size: 0.65rem;
  color: var(--text-mid);
  vertical-align: super;
  margin-left: 2px;
}

.menu-section-note {
  background: rgba(26, 58, 107, 0.05);
  border-left: 3px solid var(--blue-mid);
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  grid-column: 1/-1;
}

.menu-footer {
  text-align: center;
  margin-top: 48px;
}

.beilagen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.beilage-item {
  background: var(--off-white);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.beilage-item span {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}

.beilage-item .price {
  font-size: 0.88rem;
}

/* ============================================
   ÖFFNUNGSZEITEN
   ============================================ */
.hours-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
}

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

.hours-section .section-label {
  color: var(--gold-light);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.hours-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px 28px;
}

.hours-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  color: rgba(255, 255, 255, 0.75);
}

.hours-row .time {
  color: var(--white);
  font-weight: 500;
}

.hours-row .closed {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.hours-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(13, 31, 60, 0.08);
  border-left: 4px solid var(--gold);
}

.contact-card-icon {
  font-size: 1.5rem;
}

.contact-card-text label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: block;
  margin-bottom: 2px;
}

.contact-card-text a,
.contact-card-text p {
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-card-text a:hover {
  color: var(--blue-mid);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 340px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reservation-cta {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 24px;
  text-align: center;
}

.reservation-cta h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.reservation-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.reservation-cta .tel-big {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   IMPRESSUM / DATENSCHUTZ
   ============================================ */
.legal-section {
  background: var(--off-white);
  min-height: 60vh;
}

.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.legal-content h3 {
  color: var(--blue);
  font-size: 1rem;
  margin: 24px 0 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: var(--gold);
  color: var(--blue-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================
   MOBILE – max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 31, 60, 0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9999;
  }

  .nav-links.open a {
    font-size: 1.3rem;
    color: var(--white);
  }

  .nav-links.open .nav-close {
    display: block !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    height: 280px;
  }

  .about-image-badge {
    right: 10px;
  }

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

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

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

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

  .map-wrap {
    height: 260px;
  }

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

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

  /* Menu – Akkordeon ab 768px */
  .menu-tabs {
    display: none !important;
  }

  .menu-content {
    display: block !important;
  }

  .menu-content.hidden {
    display: block !important;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--blue-dark);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
  }

  .accordion-chevron {
    font-size: 1rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .accordion-header.open .accordion-chevron {
    transform: rotate(180deg);
  }

  .accordion-body {
    display: none;
    background: #fefefe;
  }

  .accordion-body.open {
    display: block;
  }
}

/* ============================================
   MOBILE – max-width: 480px (iPhone)
   ============================================ */
@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 100px !important;
    padding-bottom: 20px;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.88rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .hero-stats {
    gap: 16px;
    padding: 14px 12px;
    margin-top: 40px;
  }

  .stat-num {
    font-size: 1.4rem !important;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .stat-divider {
    display: none;
  }

  /* Akkordeon iPhone – spezifische Überschreibungen */
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--blue-dark);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
  }

  .accordion-chevron {
    font-size: 1rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .accordion-header.open .accordion-chevron {
    transform: rotate(180deg);
  }

  .accordion-body {
    display: none;
    background: #fefefe;
  }

  .accordion-body.open {
    display: block;
  }

  .menu-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    background: none;
    border-radius: 0;
  }

  .menu-item {
    padding: 13px 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block !important;
  }

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

  .menu-item-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    gap: 8px;
  }

  .menu-item-header h3 {
    font-size: 0.9rem !important;
    margin: 0 !important;
    flex: 1;
  }

  .menu-item p {
    font-size: 0.8rem !important;
    color: #666 !important;
    margin-top: 4px !important;
  }

  .price {
    font-size: 0.9rem !important;
  }

  .beilagen-grid {
    grid-template-columns: 1fr !important;
  }

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

  .section-title {
    font-size: 1.7rem !important;
  }

  .section-header {
    margin-bottom: 32px;
  }

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

/* ---- Desktop Fixes ---- */
.nav-links {
  display: none;
  list-style: none;
}

.nav-close {
  display: none;
}

/* Accordion-Header auf Desktop ausblenden (Tab-Buttons reichen) */
@media (min-width: 769px) {
  .accordion-header {
    display: none !important;
  }
}