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

    :root {
      --bg: #f7f5f1;
      --fg: #1c1c1a;
      --muted: #9a9590;
      --accent: #5c7a5e;
      --accent-light: #eef2ee;
      --light-line: #e3dfd9;
    }

    html, body {
      height: 100%;
      background: var(--bg);
      color: var(--fg);
    }

    body {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }
    
 
    header {
      position: relative;
      z-index: 1;
      padding: 2.2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--light-line);
      animation: fadeIn 1s ease both;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--fg);
    }
    .logo-dot {
      display: inline-block;
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
      margin-left: 4px;
      vertical-align: middle;
      position: relative;
      top: -2px;
    }

    .status-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .status-dot {
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2.4s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.3; transform: scale(0.65); }
    }

    main {
      position: relative;
      z-index: 1;
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .left {
      padding: 5vw 5vw 4vw 3rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid var(--light-line);
    }

    .eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.8rem;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--fg);
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .headline em {
      font-style: italic;
      color: var(--accent);
    }

    .body-text {
      margin-top: 2rem;
      font-size: 0.92rem;
      line-height: 1.85;
      color: var(--muted);
      max-width: 360px;
      animation: fadeUp 0.8s 0.45s ease both;
    }

    /* Highlights / Merkmale */
    .highlights {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
      animation: fadeUp 0.8s 0.5s ease both;
    }
    .highlight-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .highlight-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 300;
      color: var(--accent);
      line-height: 1;
    }
    .highlight-label {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* Direktbuchungs-Hinweis */
    .booking-hint {
      margin-top: 2rem;
      padding: 1.2rem 1.4rem;
      background: var(--accent-light);
      border-left: 2px solid var(--accent);
      animation: fadeUp 0.8s 0.55s ease both;
    }
    .booking-hint p {
      font-size: 0.82rem;
      line-height: 1.7;
      color: var(--fg);
    }
    .booking-hint strong {
      font-weight: 400;
      color: var(--accent);
    }

    /* Kontakt */
    .contact-block {
      margin-top: auto;
      padding-top: 2.5rem;
      animation: fadeUp 0.8s 0.6s ease both;
    }
    .contact-label {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.1rem;
    }
    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--fg);
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .contact-link:hover { color: var(--accent); }
    .contact-link svg {
      width: 14px; height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      opacity: 0.55;
    }

    /* Rechte Seite — Bild */
    .right {
      position: relative;
      overflow: hidden;
      min-height: 500px;
    }
    .right-img {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(247,245,241,0.08) 0%, rgba(247,245,241,0) 25%),
        url('resources/main.png') center/cover no-repeat;
      animation: zoomIn 8s ease both;
    }
    @keyframes zoomIn {
      from { transform: scale(1.06); }
      to   { transform: scale(1); }
    }

    /* Übernachtungs-Badge */
    .badge {
      position: absolute;
      top: 2.2rem;
      left: 2.2rem;
      background: rgba(247,245,241,0.92);
      backdrop-filter: blur(6px);
      padding: 1rem 1.3rem;
      animation: fadeIn 1s 0.9s ease both;
    }
    .badge-top {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .badge-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--fg);
    }
    .badge-sub {
      font-size: 0.72rem;
      color: var(--accent);
      margin-top: 2px;
      letter-spacing: 0.04em;
    }

    .right-caption {
      position: absolute;
      bottom: 2.5rem;
      right: 2.5rem;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(247,245,241,0.5);
      writing-mode: vertical-rl;
      animation: fadeIn 1.2s 0.8s ease both;
    }

    a {
      color: inherit;
      text-decoration: none;
    }
    a:hover {
      color: var(--accent);
    }

    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--light-line);
      padding: 1.4rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      animation: fadeIn 1s 0.8s ease both;
    }

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

    @media (max-width: 768px) {
      header { padding: 1.5rem; }
      main { grid-template-columns: 1fr; }
      .left {
        padding: 3rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--light-line);
      }
      .right { min-height: 360px; }
      footer { padding: 1.2rem 1.5rem; flex-direction: column; gap: 0.4rem; text-align: center; }
    }

       @media only screen and (max-width: 743px) {
    .status-pill, .eyebrow, .right-img, .badge, .right-caption, .right {
        display: none;
    }

}
