*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #977357;
      --gold-light: #e2c882;
      --dark: #0d0b09;
      --surface: #161210;
      --surface2: #1e1a16;
      --text: #f0e8d8;
      --muted: #8a7d6a;
      --accent: #c8a95a;
    }

    html { scroll-behavior: smooth;}

    body {
      position: relative;
      background: var(--dark);
      color: var(--text);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 18px;
      line-height: 2.5;
      overflow-x: hidden;
    }

    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 2rem;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 180px;
      background: linear-gradient(to bottom, transparent, var(--dark));
    }

    .hero-logo-image {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: contain;
    }

    .hero-logo {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 2.5rem;
      border: 1px solid rgba(200,169,90,0.2);
      box-shadow: 0 0 60px rgba(200,169,90,0.08), 0 0 120px rgba(200,169,90,0.04);
      animation: fadeUp 1.2s ease both;
    }

    .hero-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      letter-spacing: 0.18em;
      color: var(--gold);
      line-height: 1.2;
    }

    .hero-logo-sub {
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.35em;
      color: var(--gold);
      opacity: 0.75;
      margin-top: 4px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 8vw, 6rem);
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.05;
      animation: fadeUp 1.2s 0.2s ease both;
    }

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

    .hero-tagline {
      font-size: clamp(0.75rem, 2vw, 0.9rem);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 1.2rem;
      animation: fadeUp 1.2s 0.4s ease both;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.3rem 0.6rem;
    }
    

    @media (max-width: 480px) {
      .hero-tagline {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        letter-spacing: 0.2em;
      }
      .hero-tagline .dot { display: none; }
      .hero-logo {
        width: 160px;
        height: 160px;
      }
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 1.2s 0.6s ease both;
      position: relative;
      z-index: 2;
    }

    .btn {
      padding: 0.75rem 2rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      font-family: 'Jost', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }

    .btn:hover, .btn-fill {
      background: var(--gold);
      color: #000;
    }

    .btn-fill {
      background: var(--gold);
      color: #000;
    }

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

    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      z-index: 10;
      animation: fadeUp 1.2s 1s ease both;
    }

    .scroll-hint span {
      display: block;
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--muted), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }

    section {
      padding: 6rem 1.5rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 1rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: block;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 2rem;
    }

    .divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 2.5rem;
      opacity: 0.5;
    }

    .photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 0.75rem;
      margin-bottom: 5rem;
    }

    .photo-grid img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      filter: brightness(0.85) saturate(0.8);
      transition: filter 0.4s;
    }

    .photo-grid img:hover { filter: brightness(1) saturate(1); }
    .photo-grid img:first-child { grid-column: 1 / -1; height: 340px; }

    .hours-section { background: var(--surface); padding: 5rem 1.5rem; }
    .hours-inner { max-width: 960px; margin: 0 auto; }

    .hours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 1px;
      background: rgba(200,169,90,0.1);
      border: 1px solid rgba(200,169,90,0.15);
      margin-top: 2.5rem;
    }

    .hours-item {
      background: var(--surface);
      padding: 1.5rem 1rem;
      text-align: center;
      transition: background 0.3s;
    }

    .hours-item:hover { background: var(--surface2); }

    .hours-day {
      font-size: 1.3rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 0.4rem;
    }

    .hours-time {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
    }

    .hours-note {
      margin-top: 1.5rem;
      font-size: 1rem;
      color: var(--muted);
      font-style: italic;
    }

    .prices-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .price-card {
      border: 1px solid rgba(200,169,90,0.15);
      padding: 2rem 1.5rem;
      text-align: center;
      background: var(--surface);
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }

    .price-card:hover {
      border-color: rgba(200,169,90,0.5);
      transform: translateY(-4px);
    }

    .price-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .price-card:hover::before { opacity: 1; }

    .price-days {
      font-size: 1.3rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1rem;
      display: block;
    }

    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: var(--gold);
      line-height: 1;
    }

    .price-amount sup {
      font-size: 1rem;
      vertical-align: top;
      margin-top: 0.5rem;
      display: inline-block;
    }

    .price-note {
      margin-top: 0.5rem;
      font-size: 1rem;
      color: var(--muted);
    }

    .price-extra {
      margin-top: 1.5rem;
      padding: 1rem 1.5rem;
      border: 1px dashed rgba(200,169,90,0.2);
      font-size: 1rem;
      color: var(--muted);
      text-align: center;
    }

    .price-extra strong { color: var(--gold); }

    .cocktail-photo {
      width: 100%;
      aspect-ratio: 4 / 3;  /* oder das tatsächliche Seitenverhältnis deines Bildes */
      object-fit: cover;
      margin-bottom: 3rem;
      filter: brightness(0.85) saturate(0.85);
    }

    .lounge-section { background: var(--surface); padding: 5rem 1.5rem; }
    .lounge-inner { max-width: 960px; margin: 0 auto; }

    .lounge-photo {
      width: 100%;
      aspect-ratio: 19 / 8;
      object-fit: cover;
      margin-bottom: 3rem;
      filter: brightness(0.8) saturate(0.75);
    }

    .lounge-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      margin: 2.5rem 0;
    }

    .lounge-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
    }

    .lounge-icon {
      color: var(--gold);
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .lounge-feature p {
      font-size: 1.3rem;
      color: var(--text);
      opacity: 0.8;
    }

    .lounge-occasions {
      margin-top: 2rem;
      padding: 1.5rem 2rem;
      border-left: 2px solid var(--gold);
      font-size: 1.3rem;
      color: var(--muted);
      font-style: italic;
    }

    /* ── RESERVIERUNG ── */
    .reserve-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 500px) {
      .reserve-grid { grid-template-columns: 1fr; }
    }

    .reserve-card {
      border: 1px solid rgba(200,169,90,0.15);
      padding: 2rem;
      background: var(--surface);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      transition: border-color 0.3s;
    }

    .reserve-card:hover { border-color: rgba(200,169,90,0.4); }

    .reserve-type {
      font-size: 1.2rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .reserve-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
    }

    .reserve-card a {
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
    }

    .reserve-card a:hover { color: var(--gold); }

    footer {
      background: #000;
      text-align: center;
      padding: 3rem 1.5rem;
      border-top: 1px solid rgba(200,169,90,0.08);
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      letter-spacing: 0.15em;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .footer-sub {
      font-size: 0.85rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
    }

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

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 1%;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
      font-size: 1rem;
    }

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

    .footer-copy {
      margin-top: 2rem;
      font-size: 0.95rem;
      color: #3a3530;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.5rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(13,11,9,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,169,90,0.08);
      transition: background 0.4s, backdrop-filter 0.4s;
    }

    nav.scrolled {
      background: rgba(13,11,9,0.99);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(200,169,90,0.08);
    }

    .nav-brand {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-decoration: none;
    }

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

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 1.3rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .photo-grid img:first-child { height: 220px; }
      .photo-grid img { height: 160px; }
      .nav-brand { font-size: 1.4rem; }
    }

    @media (max-height: 820px) {
      .scroll-hint{
        display: none;
      }
      .hero-cta {
        margin-top: 20px;
      }
      .nav-brand {
        font-size: 1.2rem;
      }
      .hero-logo{
        margin-top: 5rem;
        height: 120px;
        width: 120px;
      }
    }


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

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

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