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

    :root {
      --sand: #F0EBE1;
      --deep: #1A2A32;
      --ocean: #2D6A7A;
      --accent: #9E6B38;
      --warm: #FAF8F4;
      --text: #2B2B2B;
      --text-mid: #5E5E5E;
      --text-light: #8A8A8A;
      --border: #DDD6C9;

      --display: 'DM Serif Display', Georgia, serif;
      --body: 'Work Sans', system-ui, sans-serif;

      --h1: clamp(2.4rem, 6vw, 4rem);
      --h2: clamp(1.7rem, 4vw, 2.8rem);
      --h3: clamp(1.15rem, 2vw, 1.5rem);
    }

    html { scroll-behavior: smooth; overflow-x: clip; }

    body {
      font-family: var(--body);
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text);
      background: var(--warm);
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; }

    /* Focus */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 3rem);
    }

    /* ──────── NAV ──────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.5rem 0;
      transition: background 0.4s, padding 0.3s, box-shadow 0.4s;
    }
    .nav.scrolled {
      background: rgba(26, 42, 50, 0.96);
      backdrop-filter: blur(12px);
      padding: 0.6rem 0;
      box-shadow: 0 2px 24px rgba(0,0,0,0.15);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo img { height: 44px; width: auto; transition: height 0.3s; }
    .nav.scrolled .nav-logo img { height: 32px; }

    .nav-links {
      display: flex; gap: 2.25rem; list-style: none; align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--accent); }

    .nav-book {
      background: var(--accent); color: #fff !important;
      padding: 0.55rem 1.3rem; border-radius: 3px; font-weight: 600;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    @media (hover:hover) {
      .nav-book:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(184,129,74,0.35);
      }
    }

    .burger {
      display: none; background: none; border: none; cursor: pointer; padding: 10px;
    }
    .burger span {
      display: block; width: 22px; height: 2px; background: #fff;
      margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
    }
    .burger.on span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
    .burger.on span:nth-child(2) { opacity: 0; }
    .burger.on span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

    .nav-overlay {
      display: none; position: fixed; inset: 0; z-index: 99;
      background: rgba(0,0,0,0.45);
    }
    .nav-overlay.open { display: block; }

    @media (max-width: 768px) {
      .burger { display: block; z-index: 101; }
      .nav-links {
        position: fixed; top: 0; right: -100%; width: 80vw; max-width: 300px;
        height: 100vh; height: 100dvh; z-index: 100;
        background: var(--deep); flex-direction: column;
        padding: 5rem 2rem 2rem; gap: 1.25rem;
        transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
      }
      .nav-links.open { right: 0; }
      .nav-links a { font-size: 0.95rem; }
      .nav-book .book-full { display: none; }
      .nav-book .book-short { display: inline; }
    }
    @media (min-width: 769px) {
      .nav-book .book-short { display: none; }
    }

    /* ──────── HERO ──────── */
    .hero {
      position: relative; min-height: 100vh; min-height: 100dvh;
      display: flex; align-items: flex-end;
    }
    .hero-bg {
      position: absolute; inset: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(
        12deg,
        rgba(26,42,50,0.72) 0%,
        rgba(26,42,50,0.38) 35%,
        rgba(26,42,50,0.08) 70%,
        rgba(26,42,50,0.02) 100%
      );
    }
    .hero-body {
      position: relative; z-index: 2;
      padding-bottom: clamp(3.5rem, 10vh, 7rem);
      max-width: 620px;
    }
    .hero-tag {
      display: inline-block; font-size: 0.75rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--accent); margin-bottom: 1.25rem;
      background: rgba(26,42,50,0.55); padding: 0.35rem 0.85rem; border-radius: 2px;
      padding: 0.4rem 0.85rem;
      border: 1px solid rgba(184,129,74,0.4);
      border-radius: 2px;
    }
    .hero h1 {
      font-family: var(--display); font-size: var(--h1);
      line-height: 1.08; letter-spacing: -0.025em;
      color: #fff; margin-bottom: 1.5rem;
      font-weight: 400;
    }
    .hero-desc {
      font-size: clamp(0.95rem, 1.8vw, 1.1rem);
      color: rgba(255,255,255,0.72); max-width: 460px;
      margin-bottom: 2rem; line-height: 1.65;
    }
    .hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--accent); color: #fff;
      padding: 0.9rem 1.8rem; font-size: 0.95rem; font-weight: 600;
      border: none; border-radius: 3px; cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none; min-height: 48px;
    }
    @media (hover:hover) {
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(184,129,74,0.35);
      }
    }
    .btn-primary svg { width: 16px; height: 16px; }

    .hero-proof {
      font-size: 0.8rem; color: rgba(255,255,255,0.5);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .hero-proof strong { color: rgba(255,255,255,0.8); }

    .hero-rating {
      font-size: 0.8rem; color: rgba(255,255,255,0.5);
      display: flex; align-items: center; gap: 0.4rem;
    }
    .hero-rating .stars {
      color: #FBBC04; font-size: 0.85rem; letter-spacing: 1px;
    }
    .hero-rating strong { color: rgba(255,255,255,0.8); }
    .hero-rating a {
      color: rgba(255,255,255,0.5); text-decoration: underline;
      text-underline-offset: 2px; transition: color 0.2s;
    }
    .hero-rating a:hover { color: rgba(255,255,255,0.75); }

    /* ──────── OSTERN SPECIAL ──────── */
    .ostern {
      padding: clamp(3rem, 6vw, 5rem) 0;
      background: var(--sand);
      overflow: hidden;
    }
    .ostern-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }
    .ostern-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 0.75rem;
    }
    .ostern-images img {
      border-radius: 4px;
      object-fit: cover;
      width: 100%;
    }
    .ostern-images img:first-child {
      grid-row: 1 / 3;
      height: 100%;
    }
    .ostern-images img:not(:first-child) {
      aspect-ratio: 4/3;
    }
    .ostern-badge {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 2px;
      margin-bottom: 1rem;
    }
    .ostern-mobile-heading {
      display: none;
      font-family: var(--display);
      font-size: var(--h2);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--deep);
      font-weight: 400;
      margin-bottom: 1rem;
    }
    .ostern-content h2 {
      font-family: var(--display);
      font-size: var(--h2);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--deep);
      font-weight: 400;
      margin-bottom: 0.75rem;
    }
    .ostern-content p {
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 1.25rem;
      max-width: 480px;
    }
    .ostern-highlight {
      font-family: var(--display);
      font-style: italic;
      font-size: clamp(1.3rem, 2.5vw, 1.6rem);
      color: var(--deep);
      margin-bottom: 1.25rem;
    }
    .ostern-dates {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 1.5rem;
    }
    @media (max-width: 768px) {
      .ostern-inner {
        grid-template-columns: 1fr;
      }
      .ostern-mobile-heading { display: block; }
      .ostern-content h2 { display: none; }
      .ostern-content > .ostern-badge { display: none; }
      .ostern-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .ostern-images img:first-child {
        grid-row: auto;
      }
    }

    /* ──────── LAST MINUTE ──────── */
    .lastminute {
      padding: clamp(3rem, 6vw, 5rem) 0;
      background: var(--deep);
      overflow: hidden;
    }
    .lastminute-inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .lastminute-number {
      font-family: var(--display);
      font-size: clamp(6rem, 14vw, 11rem);
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: var(--accent);
      font-weight: 400;
      position: relative;
    }
    .lastminute-number span {
      display: block;
      font-family: var(--body);
      font-size: clamp(0.9rem, 1.5vw, 1.1rem);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 0.5rem;
    }
    .lastminute-badge {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.85rem;
      border-radius: 2px;
      margin-bottom: 1.25rem;
    }
    .lastminute-content h2 {
      font-family: var(--display);
      font-size: var(--h2);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #fff;
      font-weight: 400;
      margin-bottom: 1rem;
    }
    .lastminute-content p {
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
      margin-bottom: 0.6rem;
      max-width: 460px;
    }
    .lastminute-conditions {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
      margin-bottom: 2rem;
      max-width: 460px;
    }
    .lastminute-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      padding: 0.9rem 2rem;
      border-radius: 3px;
      transition: background 0.2s, transform 0.2s;
    }
    @media (hover: hover) {
      .lastminute-cta:hover {
        background: #b57840;
        transform: translateY(-2px);
      }
    }
    @media (max-width: 768px) {
      .lastminute-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .lastminute-number {
        font-size: clamp(5rem, 20vw, 7rem);
      }
    }

    /* ──────── GUTSCHEIN ──────── */
    .gutschein {
      padding: clamp(2.5rem, 5vw, 4rem) 0;
      background: var(--warm);
    }
    .gutschein-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(1.5rem, 3vw, 3rem);
      flex-wrap: wrap;
      background: #fff;
      border: 2px dashed var(--accent);
      border-radius: 6px;
      padding: clamp(2rem, 4vw, 3rem);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .gutschein-inner::before {
      content: '';
      position: absolute;
      inset: 6px;
      border: 1px solid rgba(184,129,74,0.2);
      border-radius: 3px;
      pointer-events: none;
    }
    .gutschein-corner {
      position: absolute;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--warm);
      border: 2px dashed var(--accent);
    }
    .gutschein-corner--tl { top: -15px; left: -15px; }
    .gutschein-corner--tr { top: -15px; right: -15px; }
    .gutschein-corner--bl { bottom: -15px; left: -15px; }
    .gutschein-corner--br { bottom: -15px; right: -15px; }
    .gutschein-label {
      position: absolute;
      top: -0.7rem; left: 2rem;
      background: var(--accent);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.25rem 0.75rem;
      border-radius: 2px;
    }
    .gutschein-text {
      max-width: 600px;
    }
    .gutschein-text h2 {
      font-family: var(--display);
      font-size: var(--h2);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--deep);
      font-weight: 400;
      margin-bottom: 0.6rem;
    }
    .gutschein-text p {
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 0.3rem;
    }
    .gutschein-text .gutschein-note {
      font-size: 0.85rem;
      color: var(--text-light);
    }
    .gutschein-cta {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--deep); color: #fff;
      padding: 0.85rem 1.6rem; font-size: 0.9rem; font-weight: 600;
      border-radius: 3px; text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }
    @media (hover:hover) {
      .gutschein-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.2);
      }
    }
    .gutschein-cta svg { width: 16px; height: 16px; }
    @media (max-width: 768px) {
      .gutschein-inner { flex-direction: column; text-align: left; }
    }

    /* ──────── ABOUT ──────── */
    .about {
      padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 5fr 4fr;
      gap: clamp(2.5rem, 6vw, 6rem);
      align-items: start;
    }
    .about-text { padding-top: 1.5rem; }
    .about-text h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      color: var(--deep); margin-bottom: 1.5rem;
      font-weight: 400;
    }
    .about-text p {
      color: var(--text-mid); margin-bottom: 1.25rem; max-width: 480px;
    }
    .about-numbers {
      display: flex; gap: 3rem; margin-top: 2.5rem;
      padding-top: 2rem; border-top: 1px solid var(--border);
    }
    .about-num {
      font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--ocean); line-height: 1; font-weight: 400;
    }
    .about-numlabel {
      font-size: 0.8rem; color: var(--text-light); margin-top: 0.3rem;
      letter-spacing: 0.02em;
    }

    .about-img-wrap {
      position: relative;
      border-radius: 2px;
      aspect-ratio: 3 / 4;
      overflow: hidden;
    }
    .about-slider {
      position: absolute; inset: 0;
    }
    .about-slider img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .about-slider img.active { opacity: 1; }

    /* ──────── SLIDER ARROWS ──────── */
    .slider-prev, .slider-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 3; border: none; cursor: pointer;
      width: 44px; height: 44px; min-width: 44px; min-height: 44px;
      background: rgba(0,0,0,0.35); color: #fff;
      border-radius: 50%; font-size: 1.4rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .slider-prev { left: 0.5rem; }
    .slider-next { right: 0.5rem; }
    @media (hover: hover) {
      .slider-prev:hover, .slider-next:hover {
        background: rgba(0,0,0,0.55);
      }
    }

    .about-img-badge {
      position: absolute; bottom: -1.5rem; left: 1.5rem; z-index: 2;
      background: var(--deep); color: #fff;
      padding: 1.25rem 1.5rem; border-radius: 2px;
      font-size: 0.8rem; line-height: 1.5;
    }
    .about-img-badge strong {
      display: block; font-family: var(--display);
      font-size: 1.1rem; font-weight: 400; margin-bottom: 0.15rem;
    }

    .about-mobile-heading {
      display: none;
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      color: var(--deep); font-weight: 400;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-mobile-heading { display: block; }
      .about-text h2 { display: none; }
      .about-img-wrap { order: 0; width: 75%; margin: 0 auto; }
      .about-text { order: 1; }
      .about-img-badge { left: auto; right: -0.75rem; bottom: -1rem; }
      .about-numbers { gap: 2rem; }
    }

    /* ──────── ZIMMER ──────── */
    .rooms {
      background: var(--sand);
      padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
    }
    .rooms-header {
      max-width: 640px;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }
    .rooms-header h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      color: var(--deep); font-weight: 400;
      margin-bottom: 0.75rem;
    }
    .rooms-header p {
      color: var(--text-mid); font-size: 0.95rem;
      line-height: 1.6;
    }

    .rooms-list {
      display: flex; flex-direction: column;
      gap: clamp(2rem, 4vw, 3rem);
    }

    .room-card {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 0;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
    }
    .room-card--reverse {
      direction: rtl;
    }
    .room-card--reverse > * {
      direction: ltr;
    }

    .room-card-slider {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--sand);
    }
    .room-card-slider img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .room-card-slider img.active { opacity: 1; }

    .room-card-content {
      padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
      display: flex; flex-direction: column;
      justify-content: center;
    }
    .room-card-content h3 {
      font-family: var(--display); font-size: var(--h3);
      color: var(--deep); font-weight: 400;
      line-height: 1.2; letter-spacing: -0.01em;
      margin-bottom: 0.75rem;
    }
    .room-card-tags {
      display: flex; flex-wrap: wrap; gap: 0.35rem;
      margin-bottom: 1rem;
    }
    .room-card-tag {
      font-size: 0.68rem; padding: 0.2rem 0.55rem;
      background: rgba(0,0,0,0.05); color: var(--text-mid);
      border-radius: 2px; white-space: nowrap;
    }
    .room-card-text {
      font-size: 0.88rem; color: var(--text-mid);
      line-height: 1.6; margin-bottom: 1rem;
    }
    .room-card-belegung {
      font-size: 0.78rem; color: var(--text-mid);
      margin-top: auto;
      padding-top: 0.75rem;
      border-top: 1px solid var(--border);
    }
    .room-card-belegung strong {
      color: var(--text);
    }

    @media (max-width: 768px) {
      .room-card,
      .room-card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }
      .room-card-slider {
        aspect-ratio: 3 / 2;
      }
    }

    /* ──────── RESTAURANT ──────── */
    .gastro {
      padding: clamp(5rem, 11vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
    }
    .gastro-grid {
      display: grid;
      grid-template-columns: 4fr 5fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .gastro-img {
      position: relative;
      aspect-ratio: 5 / 6;
      overflow: hidden;
      border-radius: 2px;
    }
    .gastro-slider {
      position: absolute; inset: 0;
    }
    .gastro-slider img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .gastro-slider img.active { opacity: 1; }
    .gastro-content h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.01em;
      color: var(--deep); font-weight: 400; margin-bottom: 1.25rem;
    }
    .gastro-content p {
      color: var(--text-mid); margin-bottom: 1rem; max-width: 460px;
    }
    .gastro-list {
      margin-top: 2rem;
      list-style: none;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .gastro-list li {
      display: flex; align-items: baseline; gap: 0.75rem;
      font-size: 0.9rem; color: var(--text-mid);
    }
    .gastro-list li::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
      margin-top: 0.45rem;
    }
    .gastro-list strong {
      color: var(--deep); font-weight: 600;
    }

    .gastro-mobile-heading {
      display: none;
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.01em;
      color: var(--deep); font-weight: 400;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .gastro-grid { grid-template-columns: 1fr; }
      .gastro-mobile-heading { display: block; }
      .gastro-content h2 { display: none; }
      .gastro-img { width: 70%; margin: 0 auto; order: 0; }
      .gastro-content { order: 1; }
    }

    /* ──────── WELLNESS ──────── */
    .wellness {
      background: var(--deep); color: #fff;
      padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 9vw, 8rem);
      position: relative; overflow: hidden;
    }
    .wellness::before {
      content: ''; position: absolute;
      top: -20%; right: -10%; width: 50%; height: 140%;
      background: radial-gradient(ellipse, rgba(45,106,122,0.15), transparent 70%);
      pointer-events: none;
    }
    .wellness-top {
      display: grid; grid-template-columns: 5fr 3fr;
      gap: 3rem; align-items: end;
      margin-bottom: clamp(2rem, 4vw, 3.5rem);
    }
    .wellness h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      font-weight: 400;
    }
    .wellness-top p {
      color: rgba(255,255,255,0.55); font-size: 0.9rem;
      text-align: right;
    }
    .wellness-mosaic {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1.2fr;
      grid-template-rows: 1fr 1fr;
      gap: 0.75rem;
    }
    .wellness-mosaic img {
      width: 100%; height: 100%; object-fit: cover;
      border-radius: 2px;
    }
    .wellness-mosaic img:first-child {
      grid-row: 1 / 3;
    }

    @media (max-width: 768px) {
      .wellness-top { grid-template-columns: 1fr; }
      .wellness-top p { text-align: left; }
      .wellness-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .wellness-mosaic img:first-child {
        grid-column: 1 / 3; grid-row: auto;
        aspect-ratio: 16/9;
      }
      .wellness-mosaic img:not(:first-child) { aspect-ratio: 1; }
    }

    /* ──────── EVENTS ──────── */
    .events {
      padding: clamp(4rem, 8vw, 6rem) 0;
    }
    .events-header {
      margin-bottom: 2.5rem;
    }
    .events-header h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      color: var(--deep); font-weight: 400; margin-bottom: 0.5rem;
    }
    .events-header p {
      color: var(--text-mid); max-width: 480px;
    }
    .events-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    .events-col h3 {
      font-family: var(--body); font-size: 0.72rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--text-light); margin-bottom: 1.25rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--border);
    }
    .ev {
      display: flex; justify-content: space-between; align-items: baseline;
      gap: 1rem; padding: 0.7rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .ev:last-child { border-bottom: none; }
    .ev-name {
      font-size: 0.92rem; color: var(--text);
    }
    .ev-date {
      font-size: 0.8rem; color: var(--ocean); font-weight: 500;
      white-space: nowrap;
    }

    .events-activities {
      margin-top: clamp(2rem, 4vw, 3rem);
      padding-top: clamp(1.5rem, 3vw, 2rem);
      border-top: 1px solid var(--border);
    }
    .events-activities h3 {
      font-family: var(--body); font-size: 0.72rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--text-light); margin-bottom: 1.25rem;
    }
    .act-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.75rem;
    }
    .act-link {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.9rem; color: var(--text);
      padding: 0.6rem 0.85rem;
      background: rgba(0,0,0,0.03);
      border-radius: 3px;
      transition: background 0.2s, color 0.2s;
    }
    .act-link:hover { background: rgba(0,0,0,0.06); color: var(--ocean); }
    .act-link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.5; }
    .events-cal {
      margin-top: 1.5rem;
      display: flex; gap: 1rem; flex-wrap: wrap;
    }
    .cal-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.82rem; color: var(--ocean); font-weight: 500;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border);
      border-radius: 3px;
      transition: border-color 0.2s, background 0.2s;
    }
    .cal-link:hover { border-color: var(--ocean); background: rgba(45,106,122,0.05); }
    .cal-link svg { width: 14px; height: 14px; }

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

    /* ──────── WINTER TEASER ──────── */
    .winter-teaser {
      position: relative; overflow: hidden;
      background: var(--deep);
      margin: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2.5rem) 0;
      border: 2px solid var(--accent);
      border-radius: 4px;
      box-shadow:
        0 0 40px rgba(184,129,74,0.15),
        0 20px 60px rgba(0,0,0,0.25);
    }
    .winter-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
    }
    .winter-img {
      position: relative; overflow: hidden;
    }
    .winter-img img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .winter-content {
      display: flex; flex-direction: column; justify-content: center;
      padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
    }
    .winter-tag {
      display: inline-block; font-size: 0.7rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: #fff; margin-bottom: 1.25rem;
      padding: 0.35rem 0.85rem; width: fit-content;
      background: var(--accent);
      border-radius: 2px;
    }
    .winter-content h2 {
      font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.1; letter-spacing: -0.02em;
      color: #fff; font-weight: 400; margin-bottom: 1rem;
    }
    .winter-content p {
      color: rgba(255,255,255,0.55); margin-bottom: 1.75rem;
      max-width: 400px; font-size: 0.92rem; line-height: 1.6;
    }
    .winter-bottom {
      display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    }
    .btn-winter {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--accent); color: #fff;
      padding: 0.8rem 1.5rem; font-size: 0.88rem; font-weight: 600;
      border-radius: 3px;
      transition: transform 0.2s, box-shadow 0.2s;
      min-height: 48px;
    }
    @media (hover:hover) {
      .btn-winter:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(184,129,74,0.35);
      }
    }
    .btn-winter svg { width: 16px; height: 16px; }
    .winter-price {
      font-size: 0.82rem; color: rgba(255,255,255,0.4);
    }
    .winter-price strong {
      font-family: var(--display); font-size: 1.15rem;
      color: #fff; font-weight: 400; display: block; line-height: 1;
      margin-bottom: 0.15rem;
    }

    @media (max-width: 768px) {
      .winter-inner { grid-template-columns: 1fr; min-height: auto; }
      .winter-img { aspect-ratio: 16/9; }
    }

    /* ──────── BOOKING ──────── */
    .booking {
      padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
    }
    .booking-layout {
      display: grid;
      grid-template-columns: 4fr 6fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }
    .booking-left h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      color: var(--deep); font-weight: 400; margin-bottom: 1rem;
    }
    .booking-left p {
      color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.5rem;
    }
    .booking-contact {
      list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
      font-size: 0.85rem; color: var(--text-mid);
    }
    .booking-contact a {
      display: flex; align-items: center; gap: 0.5rem;
      transition: color 0.2s;
    }
    .booking-contact a:hover { color: var(--accent); }
    .booking-contact svg {
      width: 16px; height: 16px; color: var(--accent); flex-shrink: 0;
    }

    .booking-widget-wrap {
      background: var(--warm);
      border: 1px solid var(--border);
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .booking-layout { grid-template-columns: 1fr; }
      .booking-widget-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem;
        max-width: 100%;
        box-sizing: border-box;
      }
      .booking-widget-wrap > * {
        min-width: 0;
      }
      #vri-container-24463 {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto;
      }
    }

    /* ──────── LOCATION ──────── */
    .location {
      background: var(--sand);
      padding: clamp(4rem, 8vw, 7rem) 0 0;
    }
    .loc-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }
    .loc-text h2 {
      font-family: var(--display); font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em;
      color: var(--deep); font-weight: 400; margin-bottom: 1.25rem;
    }
    .loc-text p {
      color: var(--text-mid); margin-bottom: 1.5rem;
    }
    .loc-items {
      display: flex; flex-direction: column; gap: 0.9rem;
    }
    .loc-item {
      display: flex; align-items: flex-start; gap: 0.65rem;
      font-size: 0.9rem; color: var(--text-mid);
    }
    .loc-item svg {
      width: 16px; height: 16px; color: var(--accent);
      flex-shrink: 0; margin-top: 3px;
    }
    .loc-map {
      aspect-ratio: 4/3; border-radius: 2px 2px 0 0; overflow: hidden;
    }
    .loc-map iframe { width: 100%; height: 100%; border: 0; }

    @media (max-width: 768px) {
      .loc-grid { grid-template-columns: 1fr; }
      .location { padding-bottom: 0; }
    }

    /* ──────── FOOTER ──────── */
    .footer {
      background: var(--deep); color: rgba(255,255,255,0.5);
      padding: 3.5rem 0 2rem;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    @media (max-width: 1023px) and (min-width: 641px) {
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    .footer-brand img { height: 36px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; max-width: 280px; line-height: 1.6; }
    .footer h4 {
      color: rgba(255,255,255,0.85); font-size: 0.75rem;
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 0.9rem;
    }
    .footer ul { list-style: none; }
    .footer li { margin-bottom: 0.45rem; }
    .footer a { font-size: 0.85rem; transition: color 0.2s; }
    .footer a:hover { color: var(--accent); }
    .footer-line {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.25rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.75rem;
    }
    .footer-legal { display: flex; gap: 1.5rem; }

    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr; }
      .footer-line { flex-direction: column; gap: 0.5rem; }
    }

    /* ──────── STICKY MOBILE BAR ──────── */
    .m-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
      padding: 0.5rem 1rem;
      padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
      background: rgba(26,42,50,0.96); backdrop-filter: blur(12px);
      transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    }
    .m-bar.on { transform: translateY(0); }
    .m-bar-inner {
      display: flex; gap: 0.5rem;
    }
    .m-bar a {
      display: flex; align-items: center; justify-content: center; gap: 0.45rem;
      border-radius: 3px;
      font-weight: 600; font-size: 0.88rem;
      min-height: 48px; flex: 1;
    }
    .m-bar a svg { width: 18px; height: 18px; flex-shrink: 0; }
    .m-bar-cta {
      background: var(--accent); color: #fff;
    }
    .m-bar-wa {
      background: #25D366; color: #fff;
    }
    @media (max-width: 768px) { .m-bar { display: block; } }

    /* ──────── REVEALS ──────── */
    .rv {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
    }
    .rv.on { opacity: 1; transform: none; }
    .rv-d1 { transition-delay: 0.1s; }
    .rv-d2 { transition-delay: 0.2s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .rv { opacity: 1; transform: none; }
    }

    /* ──────── LANGUAGE SWITCHER ──────── */
    .lang-switch {
      position: relative;
      margin-left: 0.5rem;
    }
    .lang-flag {
      width: 28px; height: 20px; border-radius: 2px;
      cursor: pointer; border: 1px solid rgba(255,255,255,0.2);
      display: block; transition: opacity 0.2s;
    }
    .lang-flag:hover { opacity: 0.8; }
    .lang-dropdown {
      display: none; position: absolute; top: calc(100% + 8px); right: 0;
      background: var(--deep); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 3px; padding: 0.4rem; z-index: 200;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .lang-switch.open .lang-dropdown { display: block; }
    .lang-dropdown a {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.5rem 0.75rem; border-radius: 2px;
      font-size: 0.8rem; color: rgba(255,255,255,0.85);
      white-space: nowrap; transition: background 0.2s;
      text-transform: none; letter-spacing: 0;
    }
    .lang-dropdown a:hover { background: rgba(255,255,255,0.1); }
    .lang-dropdown img {
      width: 24px; height: 17px; border-radius: 2px;
      border: 1px solid rgba(255,255,255,0.15);
    }
    /* Mobile language links in burger */
    .nav-lang-mobile {
      display: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1rem; margin-top: 0.5rem;
    }
    .nav-lang-mobile a {
      display: flex; align-items: center; gap: 0.6rem;
      text-transform: none !important; letter-spacing: 0 !important;
      font-size: 0.9rem !important; opacity: 0.7;
    }
    .nav-lang-mobile a.active { opacity: 1; font-weight: 600; }
    .nav-lang-mobile img {
      width: 22px; height: 15px; border-radius: 2px;
    }
    @media (max-width: 768px) {
      .lang-switch { display: none; }
      .nav-lang-mobile { display: flex; flex-direction: column; gap: 0.75rem; }
    }

    /* ── Zimmerkarte: Weg zur Detailseite und direkt in die Buchung ── */
    .room-card-actions {
      margin-top: 1.1rem;
      display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0.9rem;
    }
    .rc-more {
      min-height: 44px; display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ocean);
    }
    .rc-more svg { width: 15px; height: 15px; transition: transform 0.2s; }
    .rc-book {
      min-height: 44px; display: inline-flex; align-items: center; gap: 0.45rem;
      background: var(--accent); color: #fff; border-radius: 3px;
      padding: 0.6rem 1.1rem; font-size: 0.76rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .rc-book svg { width: 15px; height: 15px; }
    @media (hover: hover) {
      .rc-more:hover svg { transform: translateX(3px); }
      .rc-book:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(158,107,56,0.35); }
    }
    /* Link zur Zimmer-Übersichtsseite im Section-Kopf */
    .rooms-header-link {
      display: inline-flex; align-items: center; gap: 0.45rem;
      min-height: 44px; margin-top: 1.1rem;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em;
      text-transform: uppercase; color: var(--ocean);
    }
    .rooms-header-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
    @media (hover: hover) { .rooms-header-link:hover svg { transform: translateX(3px); } }

    /* ── Touch-Ziele: mindestens 44x44px auf Tablet und Handy ── */
    @media (max-width: 1023px) {
      .nav-links a,
      .footer ul a,
      .footer-legal a,
      .loc-item a,
      .hero-rating a,
      .cal-link,
      .act-link,
      .booking-contact a {
        display: inline-flex; align-items: center; min-height: 44px; min-width: 44px;
      }
      .nav-links { gap: 0.35rem; }
      .nav-links a { min-width: 44px; }
      .nav-book { min-height: 44px; justify-content: center; }
      .nav-lang-mobile a { min-height: 44px; }
      .burger { padding: 11px 12px; }
      .footer ul { display: flex; flex-direction: column; }
    }

    /* ── Einstieg zu den Themenseiten ── */
    .themen { background: var(--sand); padding: clamp(3.5rem, 7vw, 6rem) 0; }
    .themen-inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
    @media (min-width: 900px) { .themen-inner { grid-template-columns: 1fr 1.6fr; } }
    .themen h2 {
      font-family: var(--display); font-weight: 400; font-size: var(--h2);
      line-height: 1.12; letter-spacing: -0.02em; color: var(--deep);
    }
    .themen-lead { margin-top: 1rem; color: var(--text-mid); font-size: 0.98rem; line-height: 1.6; }
    .themen-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
    @media (min-width: 640px) { .themen-list { grid-template-columns: 1fr 1fr; } }
    .themen-item {
      background: var(--warm); padding: 1.15rem 1.3rem;
      display: flex; flex-direction: column; gap: 0.3rem; min-height: 44px;
      transition: background 0.25s;
    }
    .themen-item strong { font-size: 0.98rem; color: var(--deep); font-weight: 600; }
    .themen-item span { font-size: 0.86rem; color: var(--text-mid); line-height: 1.5; }
    @media (hover: hover) { .themen-item:hover { background: #fff; } }
