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

  :root {
    --teal:       #0a7a76;
    --teal-light: #12b5b0;
    --teal-dark:  #024442;
    --teal-glow:  #013330;
    --bg:         #080d0d;
    --bg2:        #0b1212;
    --bg3:        #0f1818;
    --surface:    #131f1f;
    --text:       #e4efee;
    --text-muted: #6a9490;
    --border:     rgba(2, 68, 66, 0.4);
    --border-strong: rgba(10, 122, 118, 0.45);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-mono:    'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── GRAIN OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: linear-gradient(to bottom, rgba(10,15,13,0.95) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal-light);
    text-decoration: none;
  }

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

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

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

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 3rem 4rem;
    text-align: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 60%, rgba(15, 110, 86, 0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 30% at 20% 80%, rgba(8, 80, 65, 0.12) 0%, transparent 60%);
  }

  .hero-content { position: relative; z-index: 1; }

  .hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  .hero-logo-img {
    width: 90px;
    margin: 0 auto 2.5rem;
    display: block;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.4s;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--text);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s;
  }

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

  .hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 2rem;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
  }

  .hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.1s;
  }

  .btn {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--teal);
    color: #04342C;
    font-weight: 400;
  }

  .btn-primary:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: transparent;
    color: var(--teal-light);
    border: 1px solid var(--border-strong);
  }

  .btn-ghost:hover {
    background: rgba(29, 158, 117, 0.08);
    border-color: var(--teal);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.4s;
  }

  .hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  /* ── INSTAGRAM FEED ── */
  .feed-section {
    padding: 5rem 3rem;
  }

  .section-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--text);
  }

  .section-title em { font-style: italic; color: var(--teal-light); }

  .feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }

  .feed-item {
    aspect-ratio: 2.39 / 1;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }

  .feed-item:hover img { transform: scale(1.05); }

  .feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 80, 65, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .feed-item:hover .feed-overlay { opacity: 1; }

  .feed-overlay svg {
    width: 28px;
    height: 28px;
    fill: var(--teal-light);
  }

  /* Placeholder tiles for feed */
  .feed-placeholder {
    width: 100%;
    height: 100%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-strong);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .feed-loading {
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 3rem;
  }

  /* ── ABOUT ── */
  .about-section {
    padding: 7rem 3rem;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-text p {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .about-text p strong {
    color: var(--text);
    font-weight: 400;
  }

  .about-text .motto {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--teal);
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--teal-dark);
  }

  .about-visual {
    position: relative;
  }

  .about-img-frame {
    aspect-ratio: 3/4;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .about-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(29, 158, 117, 0.1));
  }

  .img-label {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(10, 15, 13, 0.8);
    padding: 0.4rem 0.75rem;
  }

  .about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
  }

  /* ── HOURS ── */
  .hours-section {
    padding: 7rem 3rem;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }

  .hours-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .hours-table {
    margin-top: 2rem;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

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

  .hours-day {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .hours-time {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text);
  }

  .hours-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    border-left: 2px solid var(--teal-dark);
    background: rgba(29, 158, 117, 0.04);
  }

  .hours-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .merch-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1.5rem;
  }

  /* ── CONTACT ── */
  .contact-section {
    padding: 7rem 3rem;
    border-top: 1px solid var(--border);
  }

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

  .contact-item {
    margin-bottom: 2rem;
  }

  .contact-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
  }

  .contact-value {
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
  }

  .contact-value:hover { color: var(--teal-light); }

  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .social-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--border-strong);
    transition: all 0.2s;
  }

  .social-link:hover {
    color: var(--teal-light);
    border-color: var(--teal);
  }

  .map-container {
    position: relative;
    overflow: hidden;
  }

  .map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
  }

  .map-pin {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(8, 13, 13, 0.85);
    border: 1px solid var(--border-strong);
    white-space: nowrap;
  }

  .map-pin span {
    display: block;
    color: var(--teal-light);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
  }

  .map-nav-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .map-nav-link:hover {
    color: var(--teal-light);
    border-color: var(--teal);
  }

  /* ── FILMSTRIP DIVIDER ── */
  .filmstrip {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 24px;
    overflow: hidden;
    opacity: 0.25;
    margin: 0;
  }

  .filmstrip-track {
    display: flex;
    gap: 4px;
    padding: 4px 0;
    width: 100%;
  }

  .filmstrip-hole {
    flex-shrink: 0;
    width: 14px;
    height: 10px;
    border: 1px solid var(--teal-light);
    border-radius: 2px;
  }

  /* ── CINEMASCOPE FEED ── */
  .feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }

  .feed-item {
    aspect-ratio: 2.39 / 1;
  }

  /* ── QUOTE BLOCK ── */
  .quote-section {
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(2, 68, 66, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  .quote-text em {
    font-style: normal;
    font-weight: 600;
    color: var(--teal-light);
  }

  .quote-attr {
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  footer {
    padding: 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .footer-left {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
  }

  footer .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  footer .footer-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

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

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { gap: 1.5rem; }
    .feed-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section { grid-template-columns: 1fr; gap: 3rem; }
    .hours-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  }

  /* ── PAGE CONTENT (Impressum, Datenschutz etc.) ── */
  .page-content {
    min-height: 100vh;
    padding: 10rem 3rem 6rem;
  }

  .page-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .page-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  .page-body h2, .page-body h3 {
    color: var(--text);
    font-weight: 300;
    margin: 2rem 0 0.75rem;
  }

  .page-body h2 { font-size: 1.3rem; }
  .page-body h3 { font-size: 1.1rem; }

  .page-body p { margin-bottom: 1rem; }

  .page-body a {
    color: var(--teal-light);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
  }

  .page-body a:hover { color: var(--text); }

  .page-body ul, .page-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .page-body li { margin-bottom: 0.4rem; }

  /* ── LANGUAGE SWITCH ── */
  .lang-switch {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .lang-switch:hover {
    color: var(--teal-light);
    border-color: var(--teal);
  }

  /* ── HAMBURGER MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem;
    z-index: 600;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--teal-light);
    transition: all 0.3s ease;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  @media (max-width: 900px) {
    .nav-hamburger { display: flex; }

    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(8, 13, 13, 0.97);
      backdrop-filter: blur(8px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      z-index: 500;
    }

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

    .nav-links li { text-align: center; }

    .nav-links a,
    .nav-links button.lang-switch {
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: var(--text);
    }

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

    .lang-switch {
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
    }

    .nav-hamburger {
      z-index: 600;
    }
  }

  /* ── MOBILE MENU OVERLAY ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #080d0d;
    z-index: 9000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

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

  .mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .mobile-menu-links a {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-menu-links a:hover { color: var(--teal-light); }

  .lang-switch-mobile {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
  }

  .lang-switch-mobile:hover {
    color: var(--teal-light);
    border-color: var(--teal);
  }

  @media (min-width: 901px) {
    .nav-hamburger { display: none !important; }
    .mobile-menu { display: none !important; }
  }

  @media (max-width: 900px) {
    .nav-links { display: none !important; }
    .nav-hamburger { display: flex !important; z-index: 9999; }
  }

  /* ── MOBILE MENU CLOSE ── */
  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    line-height: 1;
  }

  .mobile-menu-close:hover { color: var(--teal-light); }
