  :root {
      --bg: #030405;
      --bg-soft: #080a0c;
      --text: #f6f0e6;
      --muted: rgba(246, 240, 230, .72);
      --soft: rgba(246, 240, 230, .48);
      --line: rgba(207, 171, 96, .42);
      --gold: #cfae68;
      --gold-2: #f0d18a;
      --card: rgba(10, 11, 12, .78);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top right, rgba(207, 174, 104, .14), transparent 32rem),
        linear-gradient(180deg, #020303 0%, #070809 58%, #020303 100%);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: clamp(18px, 3vw, 42px) clamp(20px, 5vw, 64px);
      pointer-events: none;
    }

    .brand, .menu-link {
      pointer-events: auto;
    }

    .brand {
      display: grid;
      gap: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-family: Cinzel, serif;
      color: var(--text);
    }

    .brand-mark {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold-2);
      font-size: 42px;
      line-height: 1;
      font-family: Cinzel, serif;
    }

    .brand-name {
      font-size: 14px;
      line-height: 1.15;
    }

    .menu-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
    }

    .burger {
      width: 28px;
      display: grid;
      gap: 6px;
    }

    .burger span {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 99px;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      isolation: isolate;
      padding: 130px clamp(22px, 5vw, 64px) 78px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background-image: url("../nacht.jpg");
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 36%, rgba(0,0,0,.22) 72%, rgba(0,0,0,.5) 100%),
        linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.08) 48%, #020303 100%);
    }

    .hero-content {
      width: min(650px, 100%);
      animation: fadeUp .9s ease both;
    }

    .eyebrow {
      color: var(--gold-2);
      letter-spacing: .24em;
      text-transform: uppercase;
      font-size: clamp(12px, 1.3vw, 15px);
      margin-bottom: 18px;
    }

    h1, h2, h3 {
      font-family: Cinzel, Georgia, serif;
      font-weight: 400;
      margin: 0;
    }

    h1 {
      font-size: clamp(48px, 8vw, 104px);
      line-height: .95;
      letter-spacing: .055em;
      text-transform: uppercase;
      text-wrap: balance;
    }

    .gold-line {
      width: 62px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      margin: 26px 0 24px;
    }

    .hero p {
      max-width: 470px;
      margin: 0 0 34px;
      color: rgba(255,255,255,.86);
      font-size: clamp(16px, 1.5vw, 19px);
      line-height: 1.75;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 56px;
      padding: 0 28px;
      border: 1px solid rgba(207, 174, 104, .72);
      border-radius: 5px;
      background: linear-gradient(135deg, #d8b96f, #b48b45);
      color: #fff8eb;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .13em;
      text-transform: uppercase;
      box-shadow: 0 18px 42px rgba(0,0,0,.28);
      transition: transform .25s ease, filter .25s ease, background .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }

    .btn svg { width: 22px; height: 22px; }

    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 26px;
      translate: -50% 0;
      width: 34px;
      height: 34px;
      opacity: .82;
      animation: pulse 1.8s ease-in-out infinite;
    }

    .section {
      position: relative;
      padding: clamp(66px, 9vw, 110px) clamp(22px, 5vw, 64px) clamp(56px, 8vw, 92px);
    }

    .wrap {
      width: min(var(--max), 100%);
      margin: 0 auto;
    }

    .section-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-bottom: 34px;
      color: var(--gold-2);
      font-family: Cinzel, serif;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-align: center;
      font-size: clamp(16px, 2vw, 22px);
    }

    .section-title::before,
    .section-title::after {
      content: "";
      width: min(76px, 16vw);
      height: 1px;
      background: var(--line);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 2vw, 28px);
    }

    .experience-card {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: 0 26px 70px rgba(0,0,0,.34);
      transform: translateZ(0);
    }

    .experience-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--img);
      background-size: cover;
      background-position: center;
      transition: transform .65s ease, filter .65s ease;
      z-index: 0;
    }

    .experience-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.28) 43%, rgba(0,0,0,.88) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.34) 78%);
      z-index: 1;
    }

    .experience-card:hover::before {
      transform: scale(1.055);
      filter: saturate(1.08) contrast(1.05);
    }

    .card-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 clamp(20px, 2.4vw, 34px) 34px;
      text-align: center;
    }

    .icon-circle {
      width: 68px;
      height: 68px;
      margin: 0 auto 18px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold-2);
      background: rgba(0,0,0,.46);
      backdrop-filter: blur(8px);
    }

    .icon-circle svg {
      width: 34px;
      height: 34px;
      stroke-width: 1.5;
    }

    .experience-card h3 {
      font-size: clamp(30px, 3vw, 42px);
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .card-line {
      width: 46px;
      height: 2px;
      margin: 18px auto 20px;
      background: var(--gold);
    }

    .experience-card p {
      margin: 0 auto 28px;
      max-width: 290px;
      color: rgba(255,255,255,.78);
      line-height: 1.6;
      font-size: 15px;
    }

    .choice-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .choice,
    .choice-wide {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid rgba(207, 174, 104, .48);
      border-radius: 4px;
      background: rgba(0,0,0,.38);
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
    }

    .choice-wide { width: 100%; }

    .choice:hover,
    .choice-wide:hover {
      background: rgba(207, 174, 104, .16);
      border-color: rgba(240, 209, 138, .9);
      transform: translateY(-1px);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: clamp(54px, 7vw, 78px);
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding: 34px 0;
    }

    .feature {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
      padding: 0 24px;
    }

    .feature + .feature {
      border-left: 1px solid rgba(255,255,255,.12);
    }

    .feature svg {
      color: var(--gold-2);
      width: 34px;
      height: 34px;
      stroke-width: 1.4;
    }

    .feature strong {
      display: block;
      margin-bottom: 8px;
      color: var(--gold-2);
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: 13px;
    }

    .feature span {
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
    }

    footer {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
      padding: 0 0 36px;
      display: flex;
      justify-content: space-between;
      gap: 22px;
      color: rgba(255,255,255,.42);
      font-size: 12px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

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

    @keyframes pulse {
      0%, 100% { transform: translateY(0); opacity: .45; }
      50% { transform: translateY(8px); opacity: .95; }
    }

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

      .experience-card:last-child {
        grid-column: 1 / -1;
        min-height: 430px;
      }

      .hero::after {
        background:
          linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.62) 52%, rgba(0,0,0,.36) 100%),
          linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.08) 50%, #020303 100%);
      }
    }

    @media (max-width: 760px) {
      .site-header {
        align-items: flex-start;
      }

      .brand-name {
        display: none;
      }

      .brand-mark {
        width: 44px;
        height: 44px;
        font-size: 36px;
      }

      .menu-link span:first-child {
        display: none;
      }

      .hero {
        min-height: 92svh;
        align-items: flex-end;
        padding-top: 118px;
      }

      .hero::before {
        background-position: 62% center;
      }

      .hero::after {
        background:
          linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.28) 35%, rgba(0,0,0,.86) 100%);
      }

      h1 {
        font-size: clamp(44px, 14vw, 72px);
      }

      .btn {
        width: 100%;
      }

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

      .experience-card,
      .experience-card:last-child {
        grid-column: auto;
        min-height: 500px;
      }

      .features {
        gap: 0;
      }

      .feature {
        padding: 24px 0;
      }

      .feature + .feature {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
      }

      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    @media (max-width: 430px) {
      .choice-row {
        grid-template-columns: 1fr;
      }

      .experience-card,
      .experience-card:last-child {
        min-height: 520px;
      }

      .section-title {
        gap: 12px;
      }

      .section-title::before,
      .section-title::after {
        width: 34px;
      }
    }





.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  padding: 28px;
}

.tour-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212,175,85,.45);
  border-radius: 18px;
  background: #000;
}

.tour-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,85,.6);
  background: rgba(0,0,0,.65);
  color: #e6c46a;
  font-size: 32px;
  line-height: 38px;
  cursor: pointer;
}

body.tour-open {
  overflow: hidden;
}