  :root {
    --ink:        #1A2B30;
    --ink-soft:   #2C3E45;
    --cream:      #F5EDDC;
    --cream-2:    #EAE0CC;
    --paper:      #FBF6EA;
    --petrol:     #2C5F6F;
    --petrol-dk:  #1F4853;
    --petrol-tint:#D6E3E7;
    --oak:        #B5895C;
    --saffron:    #D9A23A;
    --rust:       #B25A2D;
    --mute:       #6B5E4E;
    --line:       rgba(26, 43, 48, 0.12);
    --serif:      "Cormorant Garamond", Georgia, serif;
    --sans:       "Inter", system-ui, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* Demo-Banner */
  .demo-bar {
    background: var(--petrol-dk);
    color: var(--cream);
    padding: 11px 24px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 20;
  }
  .demo-bar strong { color: #ffd277; font-weight: 600; }
  .demo-bar a { color: #ffd277; text-decoration: underline; text-underline-offset: 2px; }

  /* Nav */
  .nav {
    position: sticky; top: 0; z-index: 15;
    background: rgba(251, 246, 234, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .brand img { height: 40px; width: auto; }
  .brand__name {
    font-family: var(--serif);
    font-weight: 600; font-size: 26px;
    color: var(--petrol); letter-spacing: 0.01em;
  }
  .nav__links {
    display: flex; gap: 28px; list-style: none;
    font-size: 14.5px; font-weight: 500;
  }
  .nav__links a { text-decoration: none; color: var(--ink); transition: color 0.2s; }
  .nav__links a:hover { color: var(--petrol); }
  .nav__cta {
    background: var(--petrol);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600; font-size: 14px;
    transition: background 0.2s, transform 0.15s;
  }
  .nav__cta:hover { background: var(--petrol-dk); transform: translateY(-1px); }
  @media (max-width: 880px) { .nav__links { display: none; } }

  /* Hero */
  .hero { position: relative; padding: 64px 0 80px; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 12% 0%, rgba(44, 95, 111, 0.08), transparent 55%),
      radial-gradient(ellipse at 90% 90%, rgba(217, 162, 58, 0.10), transparent 55%);
    pointer-events: none;
  }
  .hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 56px;
    align-items: center;
  }
  .hero__eyebrow {
    font-family: var(--serif); font-style: italic;
    color: var(--petrol); font-size: 21px;
    margin-bottom: 14px;
  }
  .hero__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 22px;
  }
  .hero__title em {
    color: var(--petrol);
    font-style: italic;
    font-weight: 400;
  }
  .hero__sub {
    font-size: 17.5px;
    color: var(--mute);
    max-width: 480px;
    margin-bottom: 32px;
  }
  .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
    font-family: var(--sans);
  }
  .btn--primary {
    background: var(--petrol); color: var(--cream);
    box-shadow: 0 10px 26px rgba(44, 95, 111, 0.28);
  }
  .btn--primary:hover { background: var(--petrol-dk); transform: translateY(-1px); }
  .btn--ghost {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn--ghost:hover { background: var(--ink); color: var(--cream); }
  .hero__photo {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(26, 43, 48, 0.18);
    transform: rotate(0.4deg);
  }
  .hero__photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero__badge {
    position: absolute; bottom: -18px; left: -18px;
    background: var(--saffron); color: var(--ink);
    border-radius: 50%; width: 130px; height: 130px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--serif); text-align: center;
    box-shadow: 0 12px 28px rgba(217, 162, 58, 0.4);
    transform: rotate(-6deg);
  }
  .hero__badge span:first-child { font-size: 36px; font-weight: 700; line-height: 1; }
  .hero__badge span:last-child { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
  @media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__badge { width: 100px; height: 100px; }
    .hero__badge span:first-child { font-size: 26px; }
  }

  /* Section */
  section { padding: 96px 0; }
  .section-head { margin-bottom: 56px; max-width: 680px; }
  .section-eyebrow {
    font-family: var(--serif); font-style: italic;
    color: var(--petrol); font-size: 19px;
    margin-bottom: 8px;
  }
  .section-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .section-lead { font-size: 17px; color: var(--mute); margin-top: 18px; max-width: 600px; }

  /* Geschichte */
  .history { background: var(--cream); }
  .history__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .timeline { list-style: none; position: relative; }
  .timeline::before {
    content: "";
    position: absolute; left: 14px; top: 8px; bottom: 8px;
    width: 2px; background: var(--petrol-tint);
  }
  .timeline li {
    position: relative;
    padding: 0 0 28px 50px;
  }
  .timeline li::before {
    content: "";
    position: absolute; left: 7px; top: 6px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--petrol);
    box-shadow: 0 0 0 4px var(--cream);
  }
  .timeline__year {
    font-family: var(--serif);
    font-weight: 600; font-size: 26px;
    color: var(--petrol);
    line-height: 1;
    margin-bottom: 6px;
  }
  .timeline__text { color: var(--ink-soft); font-size: 15.5px; }
  .history__quote {
    position: relative;
    background: var(--paper);
    border-left: 4px solid var(--petrol);
    padding: 40px 36px 40px 64px;
    border-radius: 0 16px 16px 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .history__quote::before {
    content: "„";
    position: absolute;
    top: 22px;
    left: 22px;
    font-size: 84px;
    line-height: 1;
    color: var(--petrol);
    font-style: normal;
    font-weight: 600;
    pointer-events: none;
  }
  .history__quote cite {
    display: block;
    font-style: normal;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 18px;
  }
  @media (max-width: 880px) { .history__grid { grid-template-columns: 1fr; gap: 44px; } }

  /* Mittagsmenü */
  .lunch__top {
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
    gap: 16px; margin-bottom: 36px;
  }
  .lunch__week { font-family: var(--serif); font-style: italic; color: var(--mute); font-size: 17px; }
  .lunch__price {
    font-family: var(--serif); font-weight: 600;
    color: var(--petrol); font-size: 28px;
    background: var(--petrol-tint); padding: 6px 18px; border-radius: 999px;
  }
  .lunch__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .lunch__day {
    background: var(--cream); border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .lunch__day:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(26, 43, 48, 0.08); }
  .lunch__day-name {
    font-family: var(--serif); font-style: italic;
    color: var(--petrol); font-size: 17px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .lunch__day-dish {
    font-family: var(--serif);
    font-size: 19px; font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
  }
  .lunch__day--closed { background: var(--cream-2); opacity: 0.78; }
  .lunch__day--closed .lunch__day-dish { font-style: italic; color: var(--mute); }
  .lunch__incl {
    font-size: 14px; color: var(--mute);
    margin-top: 24px; text-align: center;
    font-style: italic;
  }
  @media (max-width: 880px) { .lunch__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .lunch__grid { grid-template-columns: 1fr; } }

  /* Klassiker (Cordon-Bleu hero) */
  .classics { background: var(--cream); padding-bottom: 120px; }
  .classics__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .classics__photo {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(26, 43, 48, 0.2);
  }
  .classics__photo img { width: 100%; height: 100%; object-fit: cover; }
  .classics__list { list-style: none; }
  .classics__list li {
    padding: 18px 0;
    border-bottom: 1px dashed var(--line);
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px;
  }
  .classics__list li:last-child { border-bottom: none; }
  .classics__name {
    font-family: var(--serif);
    font-weight: 500; font-size: 22px;
    line-height: 1.25;
  }
  .classics__name small {
    display: block;
    font-family: var(--sans);
    font-size: 13px; color: var(--mute);
    font-weight: 400; margin-top: 3px;
  }
  .classics__price {
    font-family: var(--serif);
    font-weight: 600; color: var(--petrol);
    font-size: 21px; white-space: nowrap;
  }
  .classics__pill {
    display: inline-block;
    background: var(--rust); color: var(--cream);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
    margin-bottom: 16px;
  }
  @media (max-width: 880px) { .classics__grid { grid-template-columns: 1fr; gap: 40px; } }

  /* Abendkarte (full menu) */
  .menu__intro { margin-bottom: 56px; }
  .menu__cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 64px;
  }
  .menu__cat-title {
    font-family: var(--serif);
    font-size: 26px; font-weight: 600;
    color: var(--petrol);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .menu__cat-title::after {
    content: ""; flex: 1; height: 1px;
    background: var(--petrol-tint);
  }
  .menu__item {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
  }
  .menu__item:last-child { border-bottom: none; }
  .menu__item-name {
    font-family: var(--serif);
    font-size: 19px; font-weight: 500;
  }
  .menu__item-name small {
    display: block;
    font-family: var(--sans);
    font-size: 12.5px; font-weight: 400;
    color: var(--mute); margin-top: 2px;
  }
  .menu__item-price {
    font-family: var(--serif); font-weight: 600;
    color: var(--petrol); font-size: 18px;
    white-space: nowrap;
  }
  .menu__item-price small { font-size: 12px; color: var(--mute); font-weight: 400; }
  .menu__note {
    margin-top: 56px;
    background: var(--paper);
    padding: 24px 28px;
    border-radius: 12px;
    font-size: 13.5px; color: var(--mute);
    line-height: 1.7;
  }
  @media (max-width: 720px) { .menu__cats { grid-template-columns: 1fr; gap: 44px; } }

  /* Weinkarte */
  .wine { background: var(--ink); color: var(--cream); }
  .wine .section-eyebrow { color: var(--saffron); }
  .wine .section-title { color: var(--cream); }
  .wine .section-lead { color: rgba(245, 237, 220, 0.7); }
  .wine__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 64px;
  }
  .wine__cat-title {
    font-family: var(--serif); font-size: 24px; font-weight: 600;
    color: var(--saffron);
    margin-bottom: 22px;
    display: flex; align-items: center; gap: 14px;
  }
  .wine__cat-title::after { content: ""; flex: 1; height: 1px; background: rgba(217, 162, 58, 0.3); }
  .wine__item {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(245, 237, 220, 0.12);
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px;
  }
  .wine__item:last-child { border-bottom: none; }
  .wine__item-name {
    font-family: var(--serif); font-size: 18px; font-weight: 500;
  }
  .wine__item-name small {
    display: block; font-family: var(--sans); font-size: 12.5px;
    color: rgba(245, 237, 220, 0.6); margin-top: 2px; font-weight: 400;
  }
  .wine__item-price { font-family: var(--serif); font-weight: 600; color: var(--saffron); font-size: 17px; white-space: nowrap; }
  .wine__highlight {
    background: linear-gradient(135deg, rgba(44, 95, 111, 0.4), rgba(217, 162, 58, 0.12));
    border: 1px solid rgba(217, 162, 58, 0.3);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 14px 0;
  }
  .wine__highlight-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--saffron); margin-bottom: 6px;
  }
  @media (max-width: 880px) { .wine__grid { grid-template-columns: 1fr; gap: 44px; } }

  /* Räumlichkeiten */
  .rooms__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .room-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
  }
  .room-card__photo { aspect-ratio: 16 / 10; overflow: hidden; }
  .room-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .room-card:hover .room-card__photo img { transform: scale(1.04); }
  .room-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
  .room-card__name {
    font-family: var(--serif); font-weight: 600;
    font-size: 28px; color: var(--ink);
    margin-bottom: 6px;
  }
  .room-card__cap {
    font-family: var(--serif); font-style: italic;
    color: var(--petrol); font-size: 17px;
    margin-bottom: 18px;
  }
  .room-card__use { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 22px; }
  .room-card__features {
    list-style: none; padding-top: 18px;
    border-top: 1px solid var(--line);
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
    font-size: 13.5px; color: var(--mute);
  }
  .room-card__features li::before { content: "·"; color: var(--petrol); margin-right: 6px; font-weight: 700; }
  .room-card__cta {
    margin-top: auto; padding-top: 22px;
    color: var(--petrol); font-weight: 600;
    text-decoration: none; font-size: 14.5px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .room-card__cta:hover { gap: 12px; }
  @media (max-width: 880px) { .rooms__grid { grid-template-columns: 1fr; } }

  /* Take-Away */
  .takeaway { background: var(--cream); }
  .takeaway__card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .takeaway__title {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--ink);
  }
  .takeaway__text { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
  .takeaway__hint { font-size: 14px; color: var(--mute); font-style: italic; }
  .takeaway__call {
    display: flex; align-items: center; justify-content: center;
    background: var(--petrol);
    color: var(--cream);
    padding: 36px 28px;
    border-radius: 18px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 18px 40px rgba(44, 95, 111, 0.3);
    flex-direction: column; gap: 8px;
    text-align: center;
  }
  .takeaway__call:hover { background: var(--petrol-dk); transform: translateY(-2px); }
  .takeaway__call-label {
    font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; opacity: 0.82;
  }
  .takeaway__call-num {
    font-family: var(--serif); font-size: 32px; font-weight: 600;
    letter-spacing: 0.01em;
  }
  @media (max-width: 880px) { .takeaway__card { grid-template-columns: 1fr; padding: 36px; gap: 32px; } }

  /* Reservierung */
  .reserve { background: var(--ink); color: var(--cream); }
  .reserve .section-title { color: var(--cream); }
  .reserve .section-eyebrow { color: var(--saffron); }
  .reserve .section-lead { color: rgba(245, 237, 220, 0.72); }
  .reserve__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
  }
  .reserve__phone {
    background: rgba(245, 237, 220, 0.05);
    border: 1px solid rgba(245, 237, 220, 0.15);
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 24px;
  }
  .reserve__phone-label { font-size: 13px; color: rgba(245, 237, 220, 0.65); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
  .reserve__phone a { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--saffron); text-decoration: none; }
  .reserve__phone-hint { font-size: 14px; color: rgba(245, 237, 220, 0.65); margin-top: 8px; font-style: italic; }
  .form { display: grid; gap: 16px; }
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form__group label {
    display: block;
    font-size: 13px; letter-spacing: 0.04em;
    color: rgba(245, 237, 220, 0.7);
    margin-bottom: 6px; font-weight: 500;
  }
  .form__group input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
  .form__group input[type="number"]::-webkit-outer-spin-button,
  .form__group input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chips input[type="radio"] {
    position: absolute; opacity: 0; pointer-events: none;
    width: 0; height: 0;
  }
  .chips label {
    display: inline-flex; align-items: center;
    padding: 9px 16px;
    background: rgba(245, 237, 220, 0.05);
    border: 1px solid rgba(245, 237, 220, 0.18);
    border-radius: 999px;
    font-size: 13.5px; font-weight: 500;
    color: rgba(245, 237, 220, 0.78);
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
  }
  .chips label:hover { background: rgba(245, 237, 220, 0.10); color: var(--cream); }
  .chips input[type="radio"]:checked + label {
    background: var(--saffron);
    color: var(--ink);
    border-color: var(--saffron);
    font-weight: 600;
  }
  .chips input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
  }
  .form__group input,
  .form__group textarea {
    width: 100%;
    background: rgba(245, 237, 220, 0.05);
    border: 1px solid rgba(245, 237, 220, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--cream);
    font-family: var(--sans);
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
  }
  .form__group input:focus,
  .form__group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    background: rgba(245, 237, 220, 0.08);
  }
  .form__group textarea { resize: vertical; min-height: 90px; }
  .form__submit {
    background: var(--saffron); color: var(--ink);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    justify-self: start;
    margin-top: 8px;
    font-family: var(--sans);
  }
  .form__submit:hover { background: #c8902f; transform: translateY(-1px); }
  .form__submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
  .form__msg {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
  }
  .form__msg--ok {
    background: rgba(72, 156, 116, 0.15);
    border: 1px solid rgba(72, 156, 116, 0.4);
    color: #94d8b3;
  }
  .form__msg--err {
    background: rgba(178, 90, 45, 0.15);
    border: 1px solid rgba(178, 90, 45, 0.4);
    color: #f0a87a;
  }
  @media (max-width: 880px) {
    .reserve__grid { grid-template-columns: 1fr; gap: 36px; }
    .form__row { grid-template-columns: 1fr; }
  }

  /* Standort */
  .location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .location__info { padding: 8px 0; }
  .location__address {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 22px;
  }
  .location__address strong { display: block; font-weight: 600; color: var(--petrol); margin-bottom: 4px; }
  .location__details {
    font-size: 15px; color: var(--ink-soft);
    margin-bottom: 18px;
    line-height: 1.7;
  }
  .location__contacts { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
  .location__contacts a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none; color: var(--ink);
    transition: background 0.2s, border-color 0.2s;
  }
  .location__contacts a:hover { background: var(--cream); border-color: var(--petrol); }
  .location__hours {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px 28px;
  }
  .location__hours h4 {
    font-family: var(--serif); font-weight: 600;
    font-size: 18px; color: var(--petrol);
    margin-bottom: 14px;
  }
  .location__hours dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 24px; font-size: 14.5px; }
  .location__hours dt { color: var(--mute); }
  .location__hours dd { color: var(--ink-soft); }
  .location__hours-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 13px; color: var(--mute);
    font-style: italic;
  }
  .location__map {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(26, 43, 48, 0.12);
    position: relative;
    background: linear-gradient(135deg, var(--petrol-tint), var(--cream));
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .location__map:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(26, 43, 48, 0.18); }
  .location__map-grid {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(44, 95, 111, 0.10) 1px, transparent 1px) 0 0 / 32px 32px,
      linear-gradient(90deg, rgba(44, 95, 111, 0.10) 1px, transparent 1px) 0 0 / 32px 32px,
      radial-gradient(circle at 50% 56%, rgba(217, 162, 58, 0.12), transparent 50%);
    pointer-events: none;
  }
  .location__map-pin {
    width: 48px; height: 64px;
    color: var(--petrol);
    position: relative; z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(44, 95, 111, 0.35));
    margin-bottom: 16px;
    animation: pin-bounce 2.4s ease-in-out infinite;
  }
  @keyframes pin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .location__map-label {
    position: relative; z-index: 1;
    text-align: center;
    font-family: var(--serif);
  }
  .location__map-label span {
    display: block;
    font-size: 14px; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 6px;
    font-family: var(--sans);
    font-weight: 500;
  }
  .location__map-label strong {
    font-size: 22px;
    font-weight: 600;
    color: var(--petrol);
  }
  @media (max-width: 880px) { .location__grid { grid-template-columns: 1fr; gap: 36px; } }

  /* Footer */
  footer {
    background: var(--ink);
    color: rgba(245, 237, 220, 0.7);
    padding: 56px 0 32px;
    font-size: 14px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
  }
  .footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer__brand img { height: 44px; }
  .footer__brand span { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--cream); }
  .footer__col h5 {
    font-family: var(--serif); font-weight: 600;
    color: var(--cream); font-size: 16px;
    margin-bottom: 14px;
  }
  .footer__col ul { list-style: none; display: grid; gap: 8px; }
  .footer__col a { color: rgba(245, 237, 220, 0.7); text-decoration: none; transition: color 0.2s; }
  .footer__col a:hover { color: var(--saffron); }
  .footer__bottom {
    border-top: 1px solid rgba(245, 237, 220, 0.12);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; gap: 18px;
    justify-content: space-between;
    font-size: 12.5px;
    color: rgba(245, 237, 220, 0.5);
  }
  .footer__bottom a { color: rgba(245, 237, 220, 0.7); }
  @media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

  /* ============================================================
     VISUAL UPGRADE — paper grain, motion, editorial layouts
     ============================================================ */

  /* Paper grain — body fixed overlay */
  body::after {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: 0.045;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='1'/></svg>");
    mix-blend-mode: multiply;
  }

  /* Scroll progress bar */
  .scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(26, 43, 48, 0.06);
    z-index: 30;
  }
  .scroll-progress span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--petrol), var(--saffron));
    transition: width 0.08s linear;
  }

  /* Scroll reveal states */
  [data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
  }
  [data-reveal].is-visible { opacity: 1; transform: none; }

  /* === Hero — editorial overlay === */
  .hero {
    position: relative;
    padding: 48px 0 96px;
    min-height: clamp(620px, 88vh, 880px);
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero__ghost {
    position: absolute;
    top: 50%; left: -3vw;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(360px, 48vw, 680px);
    line-height: 0.78;
    letter-spacing: -0.045em;
    color: var(--petrol);
    opacity: 0.045;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
  }
  .hero .wrap.hero__grid { position: relative; z-index: 1; gap: 64px; align-items: center; }
  .hero__copy { position: relative; }
  .hero__title {
    font-size: clamp(54px, 7.6vw, 116px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
  }
  .hero__line { display: block; }
  .hero__big {
    display: inline-block;
    font-feature-settings: "lnum" 1;
    color: var(--petrol);
    margin-right: 0.04em;
  }
  .hero__sub { font-size: 18px; max-width: 480px; margin-bottom: 36px; }
  .hero__meta {
    display: flex; flex-wrap: wrap; gap: 32px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .hero__meta-item {
    display: inline-flex; flex-direction: column; gap: 3px;
    text-decoration: none; color: var(--ink);
  }
  .hero__meta-item span {
    font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--mute);
    font-weight: 500;
  }
  .hero__meta-item strong {
    font-family: var(--serif);
    font-weight: 600; font-size: 19px;
    letter-spacing: 0.005em;
  }
  a.hero__meta-item:hover strong { color: var(--petrol); }

  .hero__photo {
    aspect-ratio: 5 / 6;
    transform: rotate(0.6deg);
    border-radius: 8px;
    box-shadow: 0 38px 80px -20px rgba(26, 43, 48, 0.35), 0 0 0 1px rgba(26, 43, 48, 0.04);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .hero__photo:hover { transform: rotate(0deg) scale(1.012); }
  .hero__photo-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(26, 43, 48, 0.86);
    backdrop-filter: blur(8px);
    color: var(--cream);
    padding: 12px 18px;
    border-radius: 999px;
    display: flex; flex-direction: column; gap: 2px;
    font-family: var(--sans);
  }
  .hero__photo-tag span {
    font-size: 10.5px; letter-spacing: 0.14em;
    text-transform: uppercase; opacity: 0.75;
  }
  .hero__photo-tag strong {
    font-family: var(--serif); font-weight: 500;
    font-size: 15px; letter-spacing: 0.005em;
  }
  .hero__scroll {
    position: absolute; right: 32px; bottom: 28px;
    display: flex; align-items: center; gap: 16px;
    color: var(--mute);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500;
  }
  .hero__scroll-line {
    display: block;
    width: 56px; height: 1px;
    background: var(--mute);
    position: relative; overflow: hidden;
  }
  .hero__scroll-line::after {
    content: ""; position: absolute; inset: 0;
    background: var(--petrol);
    animation: scroll-shimmer 2.4s ease-in-out infinite;
  }
  @keyframes scroll-shimmer {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(0%); }
    100% { transform: translateX(100%); }
  }
  @media (max-width: 880px) {
    .hero__ghost { font-size: clamp(280px, 80vw, 560px); top: auto; bottom: -8%; left: -10vw; transform: none; opacity: 0.035; }
    .hero__photo { transform: none; aspect-ratio: 4 / 3; }
    .hero__meta { gap: 22px; }
    .hero__scroll { display: none; }
  }

  /* === Section rhythm — vary paddings, lift display titles === */
  section { padding: 120px 0; }
  section.lunch { padding-top: 140px; padding-bottom: 140px; }
  .section-title {
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }
  .section-title em { color: var(--petrol); font-style: italic; font-weight: 500; }
  .hero__title em { color: var(--petrol); font-style: italic; font-weight: 400; }

  /* === Mittagsmenü editorial row list === */
  .lunch__top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, auto);
    align-items: end;
    gap: 32px 48px;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  .lunch__top-copy { max-width: 640px; }
  .lunch__top-copy .section-eyebrow,
  .lunch__top-copy .section-title { margin-bottom: 0; }
  .lunch__top-copy .section-title { margin-bottom: 18px; }
  .lunch__top-copy .section-lead { margin-top: 0; margin-bottom: 24px; }
  .lunch__date {
    display: inline-flex; flex-direction: column; gap: 4px;
    padding: 14px 18px;
    background: rgba(44, 95, 111, 0.06);
    border-left: 3px solid var(--petrol);
    border-radius: 0 8px 8px 0;
  }
  .lunch__date span {
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--mute);
    font-weight: 600;
  }
  .lunch__date strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500; color: var(--ink);
    letter-spacing: -0.005em;
  }
  .lunch__price-card {
    background: var(--petrol);
    color: var(--cream);
    padding: 22px 28px;
    border-radius: 16px;
    display: inline-flex; flex-direction: column; gap: 4px;
    box-shadow: 0 18px 36px -10px rgba(44, 95, 111, 0.4);
    align-self: end;
    text-align: right;
    min-width: 200px;
  }
  .lunch__price-card span {
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; opacity: 0.78;
  }
  .lunch__price-card strong {
    font-family: var(--serif); font-size: 34px; font-weight: 600;
    line-height: 1; letter-spacing: 0;
  }
  .lunch__price-card small {
    font-size: 11.5px; opacity: 0.78; margin-top: 4px;
    font-weight: 400;
  }
  @media (max-width: 880px) {
    .lunch__top { grid-template-columns: 1fr; }
    .lunch__price-card { align-self: start; text-align: left; }
  }
  .lunch__list { list-style: none; padding: 0; }
  .lunch__row {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr auto;
    align-items: baseline;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: padding 0.3s, background 0.3s;
  }
  .lunch__row:hover { padding-left: 16px; background: linear-gradient(90deg, rgba(44, 95, 111, 0.04), transparent 50%); }
  .lunch__row-day {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 500;
    color: var(--petrol);
    letter-spacing: 0.002em;
  }
  .lunch__row-dish {
    font-family: var(--serif);
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
  }
  .lunch__row-dish small {
    display: block;
    font-family: var(--sans);
    font-size: 13.5px; font-weight: 400;
    color: var(--mute); margin-top: 6px;
    letter-spacing: 0.005em;
  }
  .lunch__row-num {
    font-family: var(--serif);
    font-size: 13px; font-weight: 500;
    color: var(--mute);
    letter-spacing: 0.18em;
    font-feature-settings: "lnum" 1;
  }
  .lunch__row--closed { opacity: 0.55; }
  .lunch__row--closed:hover { padding-left: 0; background: none; }
  .lunch__row--closed .lunch__row-day,
  .lunch__row--closed .lunch__row-dish { color: var(--mute); }
  .lunch__row--closed .lunch__row-dish { font-style: italic; }
  @media (max-width: 720px) {
    .lunch__row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .lunch__row-num { display: none; }
  }

  /* === Klassiker — edge-bleed === */
  .classics {
    background: var(--cream);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .classics__bleed {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(520px, 78vh, 760px);
  }
  .classics__photo {
    position: relative;
    aspect-ratio: auto;
    border-radius: 0;
    height: 100%; width: 100%;
    overflow: hidden;
    box-shadow: none;
  }
  .classics__photo img { width: 100%; height: 100%; object-fit: cover; }
  .classics__photo-tag {
    position: absolute; top: 28px; left: 28px;
    background: var(--rust); color: var(--cream);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 8px 14px; border-radius: 999px;
  }
  .classics__body {
    padding: clamp(56px, 7vw, 110px) clamp(40px, 6vw, 96px) clamp(56px, 7vw, 110px) clamp(40px, 5vw, 80px);
    display: flex; flex-direction: column; justify-content: center;
    background: var(--cream);
  }
  .classics__headline {
    font-family: var(--serif);
    font-size: clamp(44px, 5.6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin: 12px 0 24px;
    color: var(--ink);
  }
  .classics__headline em { color: var(--petrol); font-style: italic; font-weight: 500; }
  .classics__lead { color: var(--mute); margin-bottom: 36px; max-width: 480px; font-size: 16.5px; }
  .classics__list li { padding: 18px 0; }
  .classics__pill { display: none; } /* superseded by photo-tag */
  @media (max-width: 880px) {
    .classics__bleed { grid-template-columns: 1fr; min-height: auto; }
    .classics__photo { aspect-ratio: 5 / 4; }
    .classics__body { padding: 56px 24px; }
  }

  /* === Räumlichkeiten — bento === */
  .rooms__bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }
  .rooms__bento .room-card--big { grid-row: 1 / 3; }
  .rooms__bento .room-card--small { grid-column: 2; grid-row: 1; }
  .rooms__bento .rooms__quote { grid-column: 2; grid-row: 2; }
  .room-card { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s; }
  .room-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -12px rgba(26, 43, 48, 0.18); }
  .room-card__photo { position: relative; }
  .room-card__cap-pill {
    position: absolute; top: 18px; right: 18px;
    background: rgba(26, 43, 48, 0.86);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-family: var(--serif);
    font-size: 14px; font-weight: 600;
    padding: 8px 14px; border-radius: 999px;
    letter-spacing: 0.005em;
  }
  .room-card__kicker {
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--petrol);
    font-weight: 600; margin-bottom: 10px;
  }
  .room-card--big .room-card__name { font-size: 38px; }
  .room-card--small .room-card__name { font-size: 28px; }
  .room-card__cap { display: none; } /* moved to pill */
  .rooms__quote {
    background: var(--ink);
    color: var(--cream);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex; flex-direction: column; justify-content: center;
    border: 1px solid rgba(245, 237, 220, 0.06);
    position: relative; overflow: hidden;
  }
  .rooms__quote::before {
    content: "„"; position: absolute; top: -10px; left: 16px;
    font-family: var(--serif); font-size: 120px;
    color: var(--saffron); opacity: 0.2; line-height: 1;
  }
  .rooms__quote p {
    font-family: var(--serif); font-style: italic;
    font-size: 21px; line-height: 1.4;
    margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  .rooms__quote small {
    font-family: var(--sans); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--saffron);
    font-weight: 500;
    position: relative; z-index: 1;
  }
  @media (max-width: 880px) {
    .rooms__bento { grid-template-columns: 1fr; }
    .rooms__bento .room-card--big,
    .rooms__bento .room-card--small,
    .rooms__bento .rooms__quote { grid-row: auto; grid-column: auto; }
  }

  /* === Refined hover/focus micro-interactions === */
  .btn { transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s, box-shadow 0.2s, color 0.2s; }
  .btn:active { transform: translateY(1px); }
  .nav__cta:active { transform: translateY(1px); }
  .room-card__cta { transition: gap 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
  .room-card__cta span { transition: transform 0.25s; display: inline-block; }
  .room-card__cta:hover span { transform: translateX(4px); }

  /* === Demo bar refinement === */
  .demo-bar { letter-spacing: 0.03em; font-weight: 500; }

  /* === History — refined timeline === */
  .timeline__year {
    font-size: clamp(26px, 2.6vw, 32px);
    letter-spacing: -0.01em;
  }
  /* superseded by absolute positioning above */

  /* === Reduced motion respect === */
  @media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .pin-bounce, .hero__scroll-line::after, .location__map-pin { animation: none; }
    *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  }
