:root {
      --wine:       #582330;
      --wine-light: #5a2a38;
      --cream:      #f6f0e8;
      --cream-dark: #ede5d8;
      --terracotta: #b84830;
      --terra-dark: #8f3523;
      --sage:       #5d7545;
      --gold:       #c99a3c;
      --white:      #ffffff;
      --text:       #28201c;
      --text-mid:   #5a4e48;
      --text-light: #9a8e88;
      --border:     #ddd5c8;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--cream); overflow-x: hidden; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-thumb { background: var(--terracotta); }
    img { display: block; }

    /* ══════ NAV ══════ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 300;
      height: 72px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 52px; transition: background 0.4s, box-shadow 0.4s;
    }
    #nav.solid {
      background: rgba(59,23,32,0.97);
      box-shadow: 0 2px 30px rgba(0,0,0,0.25);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400;
      color: var(--white); text-decoration: none; letter-spacing: 0.03em;
    }
    .nav-logo em { font-style: italic; color: var(--gold); font-weight: 300; }
    .nav-links { display: flex; gap: 30px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.75); text-decoration: none;
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-reserve {
      background: var(--terracotta); color: var(--white);
      padding: 10px 24px; font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
      transition: background 0.2s;
    }
    .nav-reserve:hover { background: var(--terra-dark); }

    /* ══════ HERO ══════ */
    #hero {
      position: relative; height: 100vh; min-height: 680px;
      overflow: hidden; display: flex; align-items: flex-end;
    }
    .hero-img {
      position: absolute; inset: 0;
      background: url('https://oberhauser.bz/attachments/Slider/b718d993-7f80-f422-e873-9f362f363cb0/restaurant%20%26%20pizza%20oberhauser77.jpg') center/cover no-repeat;
      transform: scale(1.05); transition: transform 8s ease;
    }
    .hero-img.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(30,10,16,0.78) 0%, rgba(30,10,16,0.35) 60%, transparent 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 52px 80px; max-width: 620px;
    }
    .hero-eyebrow {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
      display: flex; align-items: center; gap: 14px;
      opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
    }
    .hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--gold); flex-shrink:0; }
    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(4rem, 8vw, 7rem); font-weight: 300;
      color: var(--white); line-height: 0.92; margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
    }
    .hero-h1 em { font-style: italic; display: block; color: rgba(255,255,255,0.9); }
    .hero-sub {
      font-size: 1rem; color: rgba(255,255,255,0.65); font-weight: 300;
      line-height: 1.75; max-width: 430px; margin-bottom: 38px;
      opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
    }
    .hero-btns {
      display: flex; gap: 12px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
    }
    .btn-terra {
      background: var(--terracotta); color: var(--white);
      padding: 14px 34px; font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
      border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
      display: inline-block; font-family: 'Jost', sans-serif;
    }
    .btn-terra:hover { background: var(--terra-dark); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--white);
      padding: 13px 34px; font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.45); cursor: pointer;
      transition: all 0.2s; display: inline-block; font-family: 'Jost', sans-serif;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .hero-lang {
      position: absolute; bottom: 82px; right: 52px; z-index: 2;
      display: flex; gap: 10px; align-items: center;
      opacity: 0; animation: fadeIn 1s 1.2s forwards;
    }
    .hero-lang a {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none;
      transition: color 0.2s;
    }
    .hero-lang a:hover, .hero-lang a.on { color: var(--gold); }
    .hero-lang span { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

    /* ══════ INFO-KARTEN (überlappen den Hero unten) ══════ */
    .info-cards-outer {
      position: relative; z-index: 10;
      margin-top: -72px; padding: 0 52px;
    }
    .info-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; max-width: 900px;
    }
    .info-card {
      background: var(--white); padding: 28px 30px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    }
    .info-card-label {
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.26em;
      text-transform: uppercase; color: var(--text-light); margin-bottom: 8px;
    }
    .info-card-val {
      font-family: 'Cormorant Garamond', serif; font-size: 1.55rem;
      color: var(--wine); line-height: 1.15; font-weight: 400;
    }
    .info-card-val em { font-style: italic; color: var(--terracotta); }
    .info-card-sub {
      font-size: 0.75rem; color: var(--text-mid); margin-top: 6px;
      font-weight: 300; line-height: 1.5;
    }

    /* ══════ ÜBER UNS ══════ */
    #ueber { padding: 100px 0 0; background: var(--cream); }
    .ueber-inner {
      display: grid; grid-template-columns: 55% 45%; gap: 0;
      align-items: start; max-width: 1320px; margin: 0 auto;
    }
    .ueber-img-wrap { position: relative; }
    .ueber-img-main {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
    }
    .ueber-img-float {
      position: absolute; bottom: -40px; right: -40px;
      width: 48%; aspect-ratio: 1; object-fit: cover;
      border: 5px solid var(--white);
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }
    .ueber-text {
      padding: 60px 70px 60px 80px; display: flex;
      flex-direction: column; justify-content: center;
    }
    .eyebrow {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px;
    }
    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300;
      line-height: 1.08; color: var(--wine); margin-bottom: 24px;
    }
    .sec-title em { font-style: italic; color: var(--terracotta); }
    .body-text {
      font-size: 16px; color: var(--text-mid); line-height: 1.9;
      font-weight: 300; margin-bottom: 16px;
    }
    .oeff-strip {
      margin-top: 28px; border-top: 1px solid var(--border); padding-top: 24px;
    }
    .oeff-strip-title {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--text-light); margin-bottom: 14px;
    }
    .oeff-row {
      display: flex; justify-content: space-between;
      padding: 8px 0; border-bottom: 1px solid var(--border);
      font-size: 0.88rem; color: var(--text-mid);
    }
    .oeff-row:last-child { border-bottom: none; }
    .oeff-row .closed { color: var(--terracotta); font-style: italic; }
    .oeff-row strong { color: var(--text); font-weight: 500; }

    /* ══════ PHILOSOPHIE / QUOTE BAND ══════ */
    #philosophie {
      background: var(--wine); padding: 80px 52px;
      margin-top: 100px;
    }
    .phil-inner {
      max-width: 800px; margin: 0 auto; text-align: center;
    }
    .phil-line {
      width: 40px; height: 1px; background: var(--gold);
      margin: 0 auto 28px;
    }
    .phil-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 300;
      font-style: italic; color: var(--white); line-height: 1.45;
      margin-bottom: 20px;
    }
    .phil-attr {
      font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--gold); font-weight: 500;
    }

    /* ══════ FOTO STRIP ══════ */
    .photo-strip-outer {
      padding: 0; overflow: hidden;
      background: var(--cream-dark);
    }
    .photo-strip {
      display: flex; gap: 3px; overflow-x: auto;
      scrollbar-width: none; -ms-overflow-style: none;
    }
    .photo-strip::-webkit-scrollbar { display: none; }
    .photo-strip img {
      height: 340px; width: auto; flex-shrink: 0;
      object-fit: cover;
    }

    /* ══════ KÜCHE ══════ */
    #kueche { padding: 100px 52px; background: var(--cream); }
    .kueche-inner { max-width: 1200px; margin: 0 auto; }
    .kueche-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: end; margin-bottom: 60px;
    }
    .kueche-note {
      font-size: 0.9rem; color: var(--text-mid); line-height: 1.85;
      font-weight: 300; padding-top: 16px; border-top: 1px solid var(--border);
    }
    /* Speisekarte */
    .menu-tabs {
      display: flex; border-bottom: 1px solid var(--border); margin-bottom: 40px;
    }
    .mtab {
      padding: 12px 24px; font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      cursor: pointer; color: var(--text-light);
      border-bottom: 2px solid transparent; margin-bottom: -1px;
      transition: all 0.2s;
    }
    .mtab.on { color: var(--terracotta); border-bottom-color: var(--terracotta); }
    .mtab:hover { color: var(--text-mid); }
    .mtab-content { display: none; }
    .mtab-content.on { display: block; }
    .menu-list {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    }
    .menu-item {
      padding: 16px 0; border-bottom: 1px solid var(--border);
    }
    .menu-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border); }
    .menu-item:nth-child(even) { padding-left: 40px; }
    .menu-name { font-size: 0.93rem; color: var(--text); font-weight: 500; margin-bottom: 4px; }
    .menu-sub { font-size: 0.78rem; color: var(--text-light); font-weight: 300; line-height: 1.5; font-style: italic; }
    .menu-highlight {
      background: var(--wine); color: var(--white);
      padding: 20px; margin: 20px 0; grid-column: 1/-1;
    }
    .menu-highlight .menu-name { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .menu-highlight .menu-sub { color: rgba(255,255,255,0.7); }

    /* ══════ GARTEN ══════ */
    #garten {
      display: grid; grid-template-columns: 42% 58%;
      min-height: 600px;
    }
    .garten-text {
      background: var(--wine); padding: 80px 60px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .garten-eyebrow {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
    }
    .garten-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300;
      color: var(--white); line-height: 1.1; margin-bottom: 24px;
    }
    .garten-title em { font-style: italic; color: var(--gold); }
    .garten-body {
      font-size: 0.96rem; color: rgba(255,255,255,0.62);
      font-weight: 300; line-height: 1.88; margin-bottom: 18px;
    }
    .garten-facts {
      display: flex; gap: 32px; margin-top: 28px;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
    }
    .garten-fact-n {
      font-family: 'Cormorant Garamond', serif; font-size: 2rem;
      color: var(--gold); line-height: 1; margin-bottom: 4px;
    }
    .garten-fact-l {
      font-size: 0.62rem; color: rgba(255,255,255,0.4);
      letter-spacing: 0.14em; text-transform: uppercase;
    }
    .garten-img {
      width: 100%; height: 100%; object-fit: cover;
    }

    /* ══════ SPARGEL ══════ */
    #spargel { padding: 100px 52px; background: var(--cream-dark); }
    .spargel-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
    }
    .spargel-img {
      width: 100%; aspect-ratio: 4/5; object-fit: cover;
    }
    .spargel-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--sage); color: var(--white);
      padding: 8px 18px; font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px;
    }
    .spargel-note {
      background: var(--white); border-left: 3px solid var(--sage);
      padding: 18px 22px; margin-top: 24px;
      font-size: 0.86rem; color: var(--text-mid); line-height: 1.75;
    }

    /* ══════ PIZZA SEKTION ══════ */
    #pizza { background: var(--wine); padding: 100px 52px; }
    .pizza-inner { max-width: 1200px; margin: 0 auto; }
    .pizza-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; margin-bottom: 60px; align-items: end;
    }
    .pizza-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300;
      color: var(--white); line-height: 1.08;
    }
    .pizza-title em { font-style: italic; color: var(--gold); }
    .pizza-desc {
      font-size: 0.9rem; color: rgba(255,255,255,0.52);
      line-height: 1.85; font-weight: 300;
    }
    .pizza-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px;
    }
    .pizza-cat-title {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold);
      padding: 18px 0 12px; border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 14px; grid-column: 1 / -1;
    }
    .pizza-cat-title:first-child { margin-top: 0; }
    .pizza-entry {
      padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: baseline; gap: 10px;
    }
    .pizza-name { font-size: 0.88rem; color: var(--white); font-weight: 400; }
    .pizza-ing {
      font-size: 0.73rem; color: rgba(255,255,255,0.38);
      font-weight: 300; font-style: italic;
    }
    .pizza-holzofen-note {
      grid-column: 1/-1; margin-top: 40px;
      padding: 22px 28px; background: rgba(255,255,255,0.05);
      border-left: 2px solid var(--gold);
      font-size: 0.84rem; color: rgba(255,255,255,0.55);
      font-weight: 300; line-height: 1.75;
    }
    .pizza-imgs {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 3px; margin-top: 48px;
    }
    .pizza-imgs img { width:100%; aspect-ratio:4/3; object-fit:cover; }

    /* ══════ KONTAKT ══════ */
    #kontakt { padding: 100px 52px; background: var(--cream); }
    .kontakt-inner { max-width: 1200px; margin: 0 auto; }
    .kontakt-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .kontakt-cards { display: flex; flex-direction: column; gap: 2px; }
    .kcard {
      background: var(--white); padding: 28px 30px;
      display: flex; gap: 20px; align-items: flex-start;
      transition: background 0.2s;
    }
    .kcard:hover { background: var(--cream-dark); }
    .kcard-ico { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
    .kcard-label {
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--text-light); margin-bottom: 6px;
    }
    .kcard-val { font-size: 0.91rem; color: var(--text); line-height: 1.65; }
    .kcard-val a { color: var(--text); text-decoration: none; }
    .kcard-val a:hover { color: var(--terracotta); }
    .map-frame {
      width: 100%; height: 380px; border: none;
      filter: grayscale(20%) contrast(1.05);
    }

    /* ══════ FOOTER ══════ */
    footer {
      background: var(--wine); padding: 56px 52px 0;
      border-top: 3px solid var(--terracotta);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr;
      gap: 60px; padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
      font-weight: 400; color: var(--white); margin-bottom: 12px;
    }
    .footer-logo em { font-style: italic; color: var(--gold); font-weight: 300; }
    .footer-p {
      font-size: 0.82rem; color: rgba(255,255,255,0.35);
      line-height: 1.88; font-weight: 300;
    }
    .footer-h {
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.26em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
    }
    .footer-ul { list-style: none; }
    .footer-ul li { margin-bottom: 10px; }
    .footer-ul a {
      font-size: 0.82rem; color: rgba(255,255,255,0.38);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-ul a:hover { color: var(--white); }
    .footer-bottom {
      padding: 16px 0; display: flex; justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p, .footer-bottom a {
      font-size: 0.7rem; color: rgba(255,255,255,0.18); text-decoration: none;
    }
    .footer-bottom a:hover { color: rgba(255,255,255,0.5); }

    /* ══════ LIGHTBOX ══════ */
    .lb { display: none; position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0.93); align-items: center; justify-content: center; }
    .lb.show { display: flex; }
    .lb img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
    .lb-x { position: absolute; top: 18px; right: 26px; color: #fff;
      font-size: 2rem; cursor: pointer; opacity: 0.7; line-height: 1; }
    .lb-x:hover { opacity: 1; }

    #topBtn {
      position: fixed; bottom: 22px; right: 22px; width: 44px; height: 44px;
      border-radius: 50%; border: none; background: var(--wine);
      color: var(--white); font-size: 18px; cursor: pointer;
      display: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: 0.2s;
    }
    #topBtn:hover { background: var(--wine-light); transform: scale(1.08); }

    /* ══════ ANIMATIONEN ══════ */
    @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
    .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
    .reveal.vis { opacity:1; transform:translateY(0); }
    .d1 { transition-delay:0.1s; }
    .d2 { transition-delay:0.2s; }
    .d3 { transition-delay:0.3s; }

    /* ══════ RESPONSIVE ══════ */
    @media(max-width: 960px) {
      #nav { padding: 0 20px; }
      .nav-links { display: none; }
      .info-cards-outer { padding: 0 20px; }
      .info-cards { grid-template-columns: 1fr; max-width: 100%; }
      .ueber-inner { grid-template-columns: 1fr; }
      .ueber-img-float { display: none; }
      .ueber-text { padding: 40px 22px; }
      #garten { grid-template-columns: 1fr; }
      .garten-text { padding: 60px 22px; }
      .garten-img { height: 300px; }
      .spargel-inner, .kontakt-grid, .pizza-header, .kueche-header, .pizza-grid { grid-template-columns: 1fr; gap: 30px; }
      #kueche, #spargel, #pizza, #kontakt { padding: 70px 22px; }
      #philosophie { padding: 60px 22px; }
      .menu-list { grid-template-columns: 1fr; }
      .menu-item:nth-child(odd) { border-right: none; padding-right: 0; }
      .menu-item:nth-child(even) { padding-left: 0; }
      .hero-content { padding: 0 22px 60px; }
      .hero-lang { display: none; }
      .photo-strip img { height: 220px; }
      footer { padding: 50px 22px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 6px; }
      .pizza-imgs { grid-template-columns: 1fr 1fr; }
    }
