:root {
    --navy: #1a2332;
    --cream: #f5f0e8;
    --gold: #c4a35a;
    --gold-light: #ddc88e;
    --terracotta: #c07650;
    --olive: #6b7c5e;
    --olive-dark: #4a5840;
    --white: #fffdf8;
    --blue-greek: #5b7faa;
    --blue-logo: #6478a0;
    --blue-light: #7ba3cc;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

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

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(100, 120, 160, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 30%, rgba(196, 163, 90, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 90%, rgba(192, 118, 80, 0.08) 0%, transparent 40%);
  }

  .hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 12px, transparent 12px, transparent 18px);
    z-index: 10;
  }

  .hero-pattern-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 12px, transparent 12px, transparent 18px);
    z-index: 10;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem;
    animation: fadeUp 1.2s ease-out;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid rgba(196, 163, 90, 0.5);
    box-shadow: 0 0 60px rgba(100, 120, 160, 0.3), 0 0 120px rgba(196, 163, 90, 0.1);
    animation: logoPulse 4s ease-in-out infinite;
  }

  @keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(100, 120, 160, 0.3), 0 0 120px rgba(196, 163, 90, 0.1); }
    50% { box-shadow: 0 0 80px rgba(100, 120, 160, 0.4), 0 0 140px rgba(196, 163, 90, 0.15); }
  }

  .hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .hero-ornament span {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .ornament-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--cream);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 0.3em;
  }

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

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    color: var(--blue-light);
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }

  .hero-info {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .hero-info-item {
    color: rgba(245, 240, 232, 0.65);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    background: transparent;
  }

  .hero-cta:hover {
    background: var(--gold);
    color: var(--navy);
  }

  .greek-symbol {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(100, 120, 160, 0.05);
    font-size: 20rem;
    z-index: 1;
    user-select: none;
    pointer-events: none;
  }
  .greek-symbol.s1 { top: 5%; left: -3%; animation: floatSlow 15s ease-in-out infinite; }
  .greek-symbol.s2 { bottom: 5%; right: -2%; animation: floatSlow 18s ease-in-out infinite reverse; }

  @keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
  }

  nav.scrolled {
    background: rgba(26, 35, 50, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.6rem 3rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
  }

  .nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(196, 163, 90, 0.5);
    transition: transform 0.3s, width 0.4s ease, height 0.4s ease;
  }

  nav.scrolled .nav-logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-brand:hover .nav-logo-img { transform: scale(1.08); }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
  }

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

  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-phone {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
  }

  .nav-phone:hover { opacity: 0.8; }

  /* ===== SECTIONS ===== */
  section { padding: 6rem 2rem; }

  .section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
  }

  .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    text-align: center;
    color: var(--navy);
    opacity: 0.55;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 3.5rem;
  }

  /* ===== ABOUT ===== */
  #about {
    background: var(--white);
  }

  .about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
  }

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

  .about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 3px;
    display: block;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.2);
  }

  .about-image-frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(196, 163, 90, 0.35);
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
  }

  .about-image-caption {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    white-space: nowrap;
    z-index: 3;
    letter-spacing: 0.03em;
  }

  .about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .about-text h3 em {
    color: var(--gold);
    font-style: italic;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(26, 35, 50, 0.7);
    margin-bottom: 1.2rem;
  }

  .about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 35, 50, 0.1);
  }

  .about-stat { text-align: center; }

  .about-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
  }

  .about-stat span {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26, 35, 50, 0.45);
    font-weight: 600;
  }

  /* ===== MENU / BOOK ===== */
  #speisekarte {
    background: var(--navy);
    color: var(--cream);
    position: relative;
  }

  #speisekarte .section-title { color: var(--cream); }
  #speisekarte .section-subtitle { color: rgba(245, 240, 232, 0.4); }

  /* Book wrapper: centers book + arrows */
  .book-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1100px;
  }

  /* Navigation arrows */
  .book-nav {
    background: none;
    border: 1px solid rgba(196, 163, 90, 0.4);
    color: var(--gold);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 0;
  }
  .book-nav::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transition: border-color 0.3s;
  }
  .book-nav-prev::before { transform: rotate(-135deg); margin-right: -2px; }
  .book-nav-next::before { transform: rotate(45deg); margin-left: -2px; }
  .book-nav:hover:not(:disabled)::before { border-color: var(--gold); }
  .book-nav:hover:not(:disabled) {
    background: rgba(196, 163, 90, 0.12);
    border-color: var(--gold);
    transform: scale(1.08);
  }
  .book-nav:disabled {
    opacity: 0.2;
    cursor: default;
  }

  /* The book itself */
  .book-container {
    position: relative;
    width: 820px;
    height: 500px;
    perspective: 2400px;
    flex-shrink: 0;
  }

  /* Each two-page spread */
  .book-spread {
    position: absolute;
    inset: 0;
    display: none;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 6px 20px rgba(0,0,0,0.4);
    transform-origin: center center;
  }
  .book-spread.active {
    display: flex;
  }

  /* Flip animations — forward */
  @keyframes flipOutForward {
    0%   { transform: perspective(2400px) rotateY(0deg);   opacity: 1; }
    100% { transform: perspective(2400px) rotateY(-18deg); opacity: 0; }
  }
  @keyframes flipInForward {
    0%   { transform: perspective(2400px) rotateY(18deg);  opacity: 0; }
    100% { transform: perspective(2400px) rotateY(0deg);   opacity: 1; }
  }
  /* Flip animations — backward */
  @keyframes flipOutBackward {
    0%   { transform: perspective(2400px) rotateY(0deg);   opacity: 1; }
    100% { transform: perspective(2400px) rotateY(18deg);  opacity: 0; }
  }
  @keyframes flipInBackward {
    0%   { transform: perspective(2400px) rotateY(-18deg); opacity: 0; }
    100% { transform: perspective(2400px) rotateY(0deg);   opacity: 1; }
  }

  .book-spread.flip-out-forward  { display: flex; animation: flipOutForward  0.45s ease-in  forwards; }
  .book-spread.flip-in-forward   { display: flex; animation: flipInForward   0.45s ease-out forwards; }
  .book-spread.flip-out-backward { display: flex; animation: flipOutBackward 0.45s ease-in  forwards; }
  .book-spread.flip-in-backward  { display: flex; animation: flipInBackward  0.45s ease-out forwards; }

  /* Individual pages */
  .book-page {
    flex: 1;
    background: #f8f2e8;
    padding: 2.2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .book-page-left {
    border-radius: 3px 0 0 3px;
    border-right: 3px solid var(--navy);
    box-shadow: inset -6px 0 18px rgba(0,0,0,0.08);
  }
  .book-page-right {
    border-radius: 0 3px 3px 0;
    border-left: 3px solid var(--navy);
    box-shadow: inset 6px 0 18px rgba(0,0,0,0.08);
  }
  /* Subtle page texture lines */
  .book-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      transparent,
      transparent 27px,
      rgba(26,35,50,0.04) 28px
    );
    pointer-events: none;
  }

  .page-content {
    flex: 1;
  }

  /* Ornament + category heading */
  .page-ornament {
    text-align: center;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.4em;
    margin-bottom: 0.4rem;
    opacity: 0.7;
  }
  .page-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
  }
  .page-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 1.3rem;
  }

  /* Menu items on the page */
  .book-menu-item {
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(26,35,50,0.07);
    padding-bottom: 0.65rem;
  }
  .book-menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .book-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
  }
  .book-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
  }
  .book-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #8a6830;
    white-space: nowrap;
  }
  .book-item-desc {
    font-size: 0.72rem;
    color: rgba(26,35,50,0.45);
    font-style: italic;
    margin: 0.1rem 0 0;
  }

  /* Page number */
  .page-number {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: rgba(26,35,50,0.35);
    letter-spacing: 0.15em;
    padding-top: 0.5rem;
  }

  .menu-note {
    text-align: center;
    margin-top: 3rem;
    color: rgba(245, 240, 232, 0.35);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
  }

  /* ===== MENU LAYOUT ===== */
  .menu-sections {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .menu-sections.menu-loaded {
    opacity: 1;
  }

  /* Inhaltsverzeichnis – Wrapper */
  .menu-toc {
    display: flex;
    flex-direction: column;
  }

  /* Toggle-Button: zeigt aktive Kategorie + Pfeil */
  .menu-toc-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(196, 163, 90, 0.08);
    border: 1px solid rgba(196, 163, 90, 0.4);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.9rem 1.4rem;
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.25s ease, border-color 0.25s ease;
    letter-spacing: 0.04em;
  }

  .menu-toc-toggle:hover {
    background: rgba(196, 163, 90, 0.14);
    border-color: var(--gold);
  }

  .menu-toc-arrow {
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.35s ease;
    color: var(--gold-light);
  }

  .menu-toc-toggle.open .menu-toc-arrow {
    transform: rotate(180deg);
  }

  /* Aufklappbare Liste */
  .menu-toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.35s ease;
    padding: 0 0.2rem;
  }

  .menu-toc-list.open {
    max-height: 700px;
    padding: 0.8rem 0.2rem 0.2rem;
  }

  .menu-toc-btn {
    background: transparent;
    border: 1px solid rgba(196, 163, 90, 0.3);
    color: rgba(245, 240, 232, 0.55);
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.95rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .menu-toc-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  .menu-toc-btn.active {
    background: rgba(196, 163, 90, 0.15);
    border-color: var(--gold);
    color: var(--gold);
  }

  /* TOC Header: Pfeil-Buttons + Toggle in einer Reihe */
  .menu-toc-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .menu-toc-header .menu-toc-toggle {
    flex: 1;
  }

  .menu-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(196, 163, 90, 0.35);
    background: rgba(196, 163, 90, 0.07);
    color: var(--gold-light);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, color 0.25s, opacity 0.2s;
    padding: 0;
    user-select: none;
  }

  .menu-nav-btn:hover:not(:disabled) {
    background: rgba(196, 163, 90, 0.18);
    border-color: var(--gold);
    color: var(--gold);
  }

  .menu-nav-btn:disabled {
    opacity: 0.2;
    cursor: default;
  }

  /* Anzeige-Bereich – wirkt wie eine Buchseite */
  .menu-display {
    background: #f8f2e8;
    border-radius: 3px;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
    transform-origin: center center;
  }

  /* Buchseiten-Linienmuster */
  .menu-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      transparent,
      transparent 27px,
      rgba(26,35,50,0.04) 28px
    );
    pointer-events: none;
  }

  /* Umblätter-Animationen für .menu-display */
  .menu-display.flip-out-forward  { animation: flipOutForward  0.35s ease-in  forwards; }
  .menu-display.flip-in-forward   { animation: flipInForward   0.35s ease-out forwards; }
  .menu-display.flip-out-backward { animation: flipOutBackward 0.35s ease-in  forwards; }
  .menu-display.flip-in-backward  { animation: flipInBackward  0.35s ease-out forwards; }

  .menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0 2.5rem;
  }

  .menu-allergen {
    font-size: 0.65rem;
    color: rgba(26,35,50,0.45);
    margin-left: 0.15rem;
    vertical-align: super;
  }

  /* Allergene */
  .allergen-wrapper {
    max-width: 900px;
    margin: 2rem auto 0;
  }

  .allergen-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.35);
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .allergen-toggle:hover,
  .allergen-toggle.open {
    color: rgba(245, 240, 232, 0.6);
  }

  .allergen-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.7rem;
  }

  .allergen-toggle.open .allergen-arrow {
    transform: rotate(180deg);
  }

  .allergen-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .allergen-panel.open {
    max-height: 600px;
  }

  .allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.4rem 1.5rem;
    padding: 1rem 0 0.5rem;
  }

  .allergen-item {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.4);
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
  }

  .allergen-key {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: rgba(196, 163, 90, 0.6);
    min-width: 1.4rem;
    flex-shrink: 0;
  }

  /* ===== AMBIENCE ===== */
  #ambiente { background: var(--cream); overflow: hidden; }

  .ambience-gallery {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .ambience-card {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.4s ease;
  }

  .ambience-card:hover { transform: scale(1.04); }

  .ambience-card:nth-child(1) { background: linear-gradient(150deg, var(--olive), var(--olive-dark)); }
  .ambience-card:nth-child(2) { background: linear-gradient(150deg, var(--blue-greek), #2e4a6e); }
  .ambience-card:nth-child(3) { background: linear-gradient(150deg, var(--terracotta), #8b4f33); }
  .ambience-card:nth-child(4) { background: linear-gradient(150deg, var(--gold), #8a7030); }
  .ambience-card:nth-child(5) { background: linear-gradient(150deg, #3d5a6e, var(--navy)); }

  .ambience-card-label {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2;
    line-height: 1.2;
  }

  .ambience-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
  }

  .ambience-card-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 2.5rem;
    opacity: 0.2;
    z-index: 1;
  }

  /* ===== REVIEWS ===== */
  #bewertungen { background: var(--white); }

  .reviews-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .review-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }

  .review-card:hover { transform: translateY(-4px); }
  .review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }

  .review-author {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26, 35, 50, 0.45);
    font-weight: 600;
  }

  .review-rating-big { text-align: center; margin-bottom: 3rem; }

  .review-rating-big strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
  }

  .review-rating-big span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26, 35, 50, 0.45);
    font-weight: 600;
    margin-top: 0.3rem;
  }

  /* ===== CONTACT ===== */
  #kontakt { background: var(--navy); color: var(--cream); }
  #kontakt .section-label { color: var(--gold); }
  #kontakt .section-title { color: var(--cream); }

  .contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .contact-item { margin-bottom: 2rem; }
  .contact-item p { font-size: 0.9rem; line-height: 1.8; color: rgba(245, 240, 232, 0.65); }
  .contact-item a { color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
  .contact-item a:hover { color: var(--gold); }
  .contact-call-hint { margin-top: 0.5rem; font-size: 0.8rem !important; color: rgba(245, 240, 232, 0.4) !important; font-style: italic; }

  .hours-table { width: 100%; border-collapse: collapse; }
  .hours-table tr { border-bottom: 1px solid rgba(245, 240, 232, 0.07); }
  .hours-table td { padding: 0.65rem 0; font-size: 0.88rem; color: rgba(245, 240, 232, 0.65); }
  .hours-table td:first-child { font-weight: 500; color: var(--cream); width: 40%; }
  .hours-closed { color: var(--terracotta) !important; font-style: italic; }

  .contact-map {
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: 2px;
    overflow: hidden;
    min-height: 350px;
    height: 100%;
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    filter: saturate(0.7) contrast(1.1);
  }

  .maps-consent-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    position: relative;
  }

  .maps-consent-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    filter: saturate(0.7) contrast(1.1);
  }

  .maps-consent-overlay {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem;
    text-align: center;
    background: rgba(245, 240, 232, 0.04);
  }

  .maps-consent-overlay p {
    color: rgba(245, 240, 232, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 340px;
    margin: 0;
  }

  .maps-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-maps-consent {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.7rem 1.8rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: opacity 0.2s;
  }

  .btn-maps-consent:hover { opacity: 0.85; }

  .btn-maps-deny {
    background: transparent;
    color: rgba(245, 240, 232, 0.5);
    border: 1px solid rgba(245, 240, 232, 0.2);
    padding: 0.7rem 1.8rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: all 0.2s;
  }

  .btn-maps-deny:hover {
    color: rgba(245, 240, 232, 0.8);
    border-color: rgba(245, 240, 232, 0.4);
  }

  .btn-maps-reset {
    background: none;
    border: none;
    color: var(--gold);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
  }

  .maps-privacy-link {
    color: rgba(245, 240, 232, 0.35);
    font-size: 0.75rem;
    text-decoration: underline;
    letter-spacing: 0.05em;
  }

  .maps-privacy-link:hover { color: var(--gold); }

  .btn-maps-revoke {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: rgba(20, 18, 14, 0.75);
    color: rgba(245, 240, 232, 0.55);
    border: 1px solid rgba(245, 240, 232, 0.15);
    padding: 0.3rem 0.7rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
  }

  .btn-maps-revoke:hover {
    color: rgba(245, 240, 232, 0.9);
    border-color: rgba(245, 240, 232, 0.35);
  }

  /* ===== FOOTER ===== */
  footer {
    background: #111820;
    padding: 3rem 2rem;
    text-align: center;
  }

  .footer-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(196, 163, 90, 0.4);
    margin-bottom: 0.8rem;
  }

  .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.25);
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .footer-links a {
    color: rgba(245, 240, 232, 0.4);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

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

  .footer-copy {
    font-size: 0.68rem;
    color: rgba(245, 240, 232, 0.18);
    letter-spacing: 0.1em;
  }

  /* ===== MOBILE ===== */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 35, 50, 0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    transition: color 0.3s;
  }

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

  .mobile-nav-close {
    position: absolute;
    top: 3rem;
    right: 1.8rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    font-weight: 300;
  }

  @media (max-width: 900px) {
    .nav-links { display: none !important; }
    .nav-phone { display: none; }
    .mobile-menu-btn { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { aspect-ratio: 4/5; max-height: 450px; }
    /* Book: wrapper becomes relative block so arrows can overlay */
    .book-wrapper { display: block; position: relative; width: 100%; gap: 0; }
    .book-container { width: 100%; height: auto; perspective: none; }
    /* Spreads stack pages vertically */
    .book-spread { position: static; display: none; flex-direction: column; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
    .book-spread.active { display: flex; }
    /* Animation bug fix: hide outgoing instantly, fade incoming in */
    .book-spread.flip-out-forward,
    .book-spread.flip-out-backward { display: none; animation: none; }
    .book-spread.flip-in-forward,
    .book-spread.flip-in-backward { display: flex; animation: mobileFadeIn 0.3s ease forwards; }
    @keyframes mobileFadeIn { from { opacity: 0; } to { opacity: 1; } }
    /* Page borders for stacked layout */
    .book-page-left { border-right: none; border-bottom: 4px solid var(--navy); border-radius: 3px 3px 0 0; box-shadow: none; }
    .book-page-right { border-left: none; border-radius: 0 0 3px 3px; box-shadow: none; }
    /* Arrows overlaid at the seam between the two pages */
    .book-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 56px;
      height: 56px;
      font-size: 2.4rem;
      border-width: 1.5px;
      background: rgba(26, 35, 50, 0.45);
      backdrop-filter: blur(6px);
      margin: 0;
      order: unset;
    }
    .book-nav-prev { left: 4%; right: auto; margin: 0; }
    .book-nav-next { right: 4%; left: auto; margin: 0; }
    .book-nav:hover:not(:disabled) { transform: translateY(-50%) scale(1.08); }
    .ambience-gallery { grid-template-columns: repeat(3, 1fr); }
    .ambience-card:nth-child(1) { aspect-ratio: 1; }
    .reviews-container { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-info { gap: 1.2rem; }
    nav { padding: 0.8rem 1.5rem; }
    nav.scrolled { padding: 0.6rem 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .hero-logo { width: 120px; height: 120px; }
    .menu-items-grid { grid-template-columns: 1fr; gap: 0; }
    .menu-sections { gap: 1rem; }
    .menu-display { padding: 1.5rem 1.1rem 1.2rem; }
    .menu-nav-btn { width: 36px; height: 36px; font-size: 1.5rem; }
    .menu-toc-btn { font-size: 0.73rem; padding: 0.38rem 0.7rem; }
    .menu-toc-toggle { font-size: 1.05rem; padding: 0.8rem 1.1rem; }
    /* TOC als Overlay – kein Layout-Shift beim Aufklappen */
    .menu-toc {
      position: relative;
      z-index: 10;
    }
    .menu-toc-list {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background: rgba(18, 28, 44, 0.97);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(196, 163, 90, 0.25);
      border-top: none;
      border-radius: 0 0 2px 2px;
      padding: 0 0.6rem;
      z-index: 20;
      max-height: 0;
    }
    .menu-toc-list.open {
      max-height: 500px;
      padding: 0.7rem 0.6rem 0.6rem;
    }
  }

  @media (max-width: 500px) {
    .ambience-gallery { grid-template-columns: repeat(2, 1fr); }
    .about-stats { flex-direction: column; gap: 1rem; }
    .footer-links { flex-direction: column; gap: 1rem; }
  }

  /* ===== SCROLL REVEAL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

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

  /* ===== LEGAL MODALS ===== */
  .legal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 35, 50, 0.92);
    z-index: 10000;
    overflow-y: auto;
    backdrop-filter: blur(6px);
    animation: legalFadeIn 0.3s ease;
  }

  .legal-overlay.active { display: block; }

  @keyframes legalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .legal-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 2px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.3);
    position: relative;
  }

  .legal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
  }

  .legal-close:hover {
    background: var(--navy);
    color: var(--cream);
  }

  .legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .legal-content .legal-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--blue-greek);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
  }

  .legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .legal-content p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(26, 35, 50, 0.75);
    margin-bottom: 0.75rem;
  }

  .legal-content a {
    color: var(--blue-greek);
    text-decoration: none;
    border-bottom: 1px solid rgba(91, 127, 170, 0.3);
    transition: border-color 0.3s;
  }

  .legal-content a:hover {
    border-color: var(--blue-greek);
  }

  .legal-content ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
  }

  .legal-content ul li {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(26, 35, 50, 0.75);
    margin-bottom: 0.35rem;
  }

  .footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-legal-links a {
    color: rgba(245, 240, 232, 0.35);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
  }

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

  @media (max-width: 768px) {
    .legal-content {
      margin: 1rem;
      padding: 2rem 1.5rem;
    }
    .legal-content h2 { font-size: 1.7rem; }
  }