/* ============================================================
   Haydnbräu — components
   Header/nav, hero, home sections, menu pages, rooms, contact,
   footer, responsive. Depends on tokens in theme.css.
   ============================================================ */

/* ---------- header ---------- */

.o-haydn .site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  /* brand-yellow bar — the original logo banner blends into it */
  background: rgba(255, 230, 0, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--hb-ink);
  border-bottom: 1px solid rgba(38, 32, 26, 0.25);
  transition: box-shadow 0.25s ease;
}
.o-haydn .site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.o-haydn .site-header__bar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: var(--hb-header-h);
  /* the header bar may use more room than the content column */
  width: min(100% - 2.5rem, 1400px);
}

.o-haydn .brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
/* the original banner (360×120 JPEG, yellow bg = header bg) */
.o-haydn .brand__banner {
  height: 52px;
  width: auto;
  display: block;
}
/* Wappen badge — yellow rounded plate carrying the original crest; still
   used by the footer (the header carries the full banner). */
.o-haydn .wappen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--hb-amber);
  border-radius: 9px;
  padding: 4px 7px;
}

.o-haydn .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}
.o-haydn .nav-menu li { white-space: nowrap; }
.o-haydn .nav-menu a {
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--hb-ink);
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.o-haydn .nav-menu a:hover { color: var(--hb-copper); }
.o-haydn .nav-menu .current-menu-item a {
  color: var(--hb-copper);
  border-bottom-color: var(--hb-copper);
}

.o-haydn .site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.o-haydn .btn--phone {
  /* black-ribbon style, like the lettering in the logo banner */
  background: var(--hb-dark);
  color: var(--hb-amber);
  font-family: var(--hb-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.55em 1.15em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
}
.o-haydn .btn--phone:hover { background: var(--hb-dark-3); color: var(--hb-amber-soft); }
.o-haydn .btn--phone__icon { display: inline-flex; font-size: 0.95em; }

/* live open-status pill */
.o-haydn .open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: #5c5244;
  border: 1px solid rgba(38, 32, 26, 0.35);
  border-radius: 999px;
  padding: 0.45em 0.95em;
  white-space: nowrap;
}
.o-haydn .open-status:hover { color: var(--hb-ink); }
.o-haydn .open-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a7f6d;
  flex: none;
}
.o-haydn .open-status.is-open .open-status__dot {
  background: var(--hb-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 109, 0.22);
}
.o-haydn .open-status.is-closed .open-status__dot { background: #c25b4a; }
.o-haydn .open-status:empty { display: none; }

/* hamburger — hidden on desktop */
.o-haydn .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(38, 32, 26, 0.35);
  border-radius: 8px;
}
.o-haydn .nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--hb-ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .o-haydn .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .o-haydn .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .o-haydn .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.o-haydn .site-nav__head,
.o-haydn .site-nav__extra,
.o-haydn .nav-backdrop { display: none; }

/* ---------- hero ---------- */

.o-haydn .hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(255, 230, 0, 0.08), transparent 60%),
    radial-gradient(900px 600px at 95% 110%, rgba(255, 230, 0, 0.05), transparent 55%),
    var(--hb-dark);
  color: var(--hb-cream);
  overflow: hidden;
}
/* faint diagonal grain texture */
.o-haydn .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    -55deg,
    rgba(245, 239, 227, 0.025) 0 1px,
    transparent 1px 9px
  );
}
/* oversized watermark barley mark, right side */
.o-haydn .hero__watermark {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 560px;
  height: 560px;
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.o-haydn .hero__inner {
  padding: clamp(5rem, 11vh, 8.5rem) 0 clamp(3.5rem, 8vh, 6rem);
  max-width: 780px;
}
.o-haydn .hero__eyebrow {
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--hb-amber);
  margin: 0 0 1.3rem;
}
.o-haydn .hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.06;
  margin: 0 0 1.4rem;
}
.o-haydn .hero__title em {
  font-style: normal;
  color: var(--hb-amber);
}
.o-haydn .hero__lede {
  font-size: 1.12rem;
  color: var(--hb-cream-dim);
  max-width: 34em;
  margin-bottom: 2.2rem;
}
.o-haydn .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* fact strip along the hero bottom */
.o-haydn .hero-facts {
  border-top: 1px solid rgba(245, 239, 227, 0.12);
  background: rgba(34, 27, 21, 0.55);
}
.o-haydn .hero-facts__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.o-haydn .hero-fact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.1rem 0;
}
.o-haydn .hero-fact dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hb-cream-dim);
}
.o-haydn .hero-fact dd {
  margin: 0;
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: var(--hb-cream);
}
.o-haydn .hero-fact dd a { color: inherit; }
.o-haydn .hero-fact dd a:hover { color: var(--hb-amber-soft); }

/* ---------- page hero (subpages) ---------- */

.o-haydn .page-hero {
  background:
    radial-gradient(900px 380px at 10% -30%, rgba(255, 230, 0, 0.07), transparent 60%),
    var(--hb-dark);
  color: var(--hb-cream);
  padding: 4rem 0 3.2rem;
}
.o-haydn .page-hero__kicker {
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hb-amber);
  margin: 0 0 0.7rem;
}
.o-haydn .page-hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  margin: 0;
}
.o-haydn .page-hero__lede {
  margin: 1.1rem 0 0;
  color: var(--hb-cream-dim);
  max-width: 46em;
  font-size: 1.05rem;
}

/* ---------- welcome (home) ---------- */

.o-haydn .welcome-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.o-haydn .welcome-photo {
  position: relative;
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  box-shadow: var(--hb-shadow-lg);
  /* the legacy building photo is only 270px wide — don't stretch it soft */
  max-width: 340px;
  margin-inline: auto;
}
.o-haydn .welcome-photo img {
  display: block;
  width: 100%;
}
.o-haydn .welcome-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  font-size: 0.8rem;
  color: var(--hb-cream);
  background: linear-gradient(transparent, rgba(23, 19, 16, 0.82));
}
.o-haydn .welcome-sign {
  font-family: var(--hb-font-display);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hb-copper);
  margin-top: 1.6rem;
}

/* ---------- feature tiles (bier / küche / feiern) ---------- */

.o-haydn .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.o-haydn .feature-card {
  background: var(--hb-card);
  border: 1px solid var(--hb-line);
  border-radius: var(--hb-radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--hb-shadow);
}
.o-haydn .feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--hb-amber);
  color: var(--hb-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.o-haydn .feature-card__icon svg { width: 24px; height: 24px; }
.o-haydn .feature-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.o-haydn .feature-card p {
  color: var(--hb-muted);
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- dish cards (home teaser) ---------- */

.o-haydn .dish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.o-haydn .dish-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--hb-card);
  border: 1px solid var(--hb-line);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  box-shadow: var(--hb-shadow);
}
.o-haydn .dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* the legacy food photos carry a baked-in white vignette — zoom in a
     little so the card crops it away (the card clips via overflow) */
  transform: scale(1.16);
}
.o-haydn .dish-card__body { padding: 1.4rem 1.5rem; }
.o-haydn .dish-card__body h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.o-haydn .dish-card__body p {
  color: var(--hb-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* category chips */
.o-haydn .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.o-haydn .chip {
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hb-ink);
  background: var(--hb-card);
  border: 1px solid var(--hb-line);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.o-haydn .chip:hover {
  background: var(--hb-dark);
  border-color: var(--hb-dark);
  color: var(--hb-amber);
}
.o-haydn .section--sand .chip { background: var(--hb-card); }

/* ---------- tagesmenü ---------- */

.o-haydn .tm-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  background: var(--hb-dark-2);
  border: 1px solid var(--hb-dark-3);
  border-radius: var(--hb-radius-lg);
  color: var(--hb-cream);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.4rem;
}
.o-haydn .tm-banner strong { color: var(--hb-amber-soft); }
.o-haydn .tm-banner p { margin: 0; font-size: 0.95rem; }
/* links inside the dark banner — the on-light red is unreadable here */
.o-haydn .tm-banner a { color: var(--hb-amber); }
.o-haydn .tm-banner a:hover { color: var(--hb-amber-soft); }

.o-haydn .tm-day {
  background: var(--hb-card);
  border: 1px solid var(--hb-line);
  border-radius: var(--hb-radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--hb-shadow);
}
.o-haydn .tm-day__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--hb-line);
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}
.o-haydn .tm-day__name {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.o-haydn .tm-day__date { color: var(--hb-muted); font-size: 0.9rem; }
.o-haydn .tm-day.is-today { border-color: var(--hb-copper); box-shadow: 0 0 0 1px var(--hb-copper), var(--hb-shadow); }
.o-haydn .tm-day.is-today .tm-day__date::after {
  content: 'Heute';
  margin-left: 0.7em;
  font-family: var(--hb-font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-dark);
  background: var(--hb-amber);
  border-radius: 999px;
  padding: 0.25em 0.8em;
}

.o-haydn .tm-soup {
  color: var(--hb-muted);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.o-haydn .tm-soup::before {
  content: 'Suppe';
  display: inline-block;
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-copper);
  margin-right: 0.9em;
}

.o-haydn .tm-menu {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 0.55rem 0;
}
.o-haydn .tm-menu + .tm-menu { border-top: 1px dashed var(--hb-line); }
.o-haydn .tm-menu__label {
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-copper);
  display: block;
  margin-bottom: 0.15rem;
}
.o-haydn .tm-menu__price {
  font-family: var(--hb-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--hb-copper);
  white-space: nowrap;
}

/* ---------- speisekarte ---------- */

.o-haydn .menu-section { margin-bottom: 3.2rem; }
.o-haydn .menu-section:last-child { margin-bottom: 0; }
.o-haydn .menu-section__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.o-haydn .menu-section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hb-line);
}
.o-haydn .menu-list { list-style: none; }
.o-haydn .menu-item-row {
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--hb-line);
}
.o-haydn .menu-item-row:last-child { border-bottom: 0; }
.o-haydn .menu-item-row h4 {
  font-family: var(--hb-font-body);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}
.o-haydn .menu-item-row p {
  color: var(--hb-muted);
  font-size: 0.93rem;
  margin: 0;
}
.o-haydn .menu-note {
  color: var(--hb-muted);
  font-size: 0.9rem;
  border-left: 3px solid var(--hb-copper);
  padding-left: 1rem;
  margin-top: 2.5rem;
}

/* category quick-nav on top of the Speisekarte */
.o-haydn .menu-nav {
  margin: 0 0 3rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--hb-line);
}

/* ---------- rooms (veranstaltungen) ---------- */

.o-haydn .room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.o-haydn .room-card {
  background: var(--hb-dark-2);
  border: 1px solid var(--hb-dark-3);
  border-radius: var(--hb-radius-lg);
  color: var(--hb-cream);
  padding: 1.9rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.o-haydn .room-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 230, 0, 0.45);
}
.o-haydn .room-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hb-cream);
}
.o-haydn .room-card__cap {
  font-family: var(--hb-font-display);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--hb-amber);
  line-height: 1;
  margin-top: 0.5rem;
}
.o-haydn .room-card__cap small {
  display: block;
  font-family: var(--hb-font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--hb-cream-dim);
  margin-top: 0.4rem;
}

/* reference chips */
.o-haydn .ref-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}
.o-haydn .ref-cloud li {
  font-size: 0.85rem;
  color: var(--hb-muted);
  background: var(--hb-card);
  border: 1px solid var(--hb-line);
  border-radius: 999px;
  padding: 0.42em 1em;
}

/* ---------- contact band (home) ---------- */

.o-haydn .contact-band__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}
.o-haydn .contact-band__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.o-haydn .contact-band .hours-list { max-width: 380px; }

/* ---------- kontakt page ---------- */

.o-haydn .kontakt-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.o-haydn .kontakt-dl {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0;
}
.o-haydn .kontakt-dl dt {
  font-family: var(--hb-font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hb-copper);
}
.o-haydn .kontakt-dl dd { margin: 0; font-size: 1.05rem; }
.o-haydn .kontakt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2.4rem;
}

.o-haydn .team-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.o-haydn .team-list li {
  background: var(--hb-card);
  border: 1px solid var(--hb-line);
  border-radius: var(--hb-radius);
  padding: 1rem 1.3rem;
}
.o-haydn .team-list strong { display: block; }
.o-haydn .team-list span { color: var(--hb-muted); font-size: 0.92rem; }

.o-haydn .map-card {
  background: var(--hb-dark-2);
  border-radius: var(--hb-radius-lg);
  color: var(--hb-cream);
  padding: 2.2rem 2rem;
  border: 1px solid var(--hb-dark-3);
}
.o-haydn .map-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.o-haydn .map-card p { color: var(--hb-cream-dim); font-size: 0.97rem; }

/* ---------- hours list (shared) ---------- */

.o-haydn .hours-list { list-style: none; }
.o-haydn .hours-list__row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(191, 180, 162, 0.18);
  font-size: 0.97rem;
}
.o-haydn .section--dark .hours-list__row,
.o-haydn .site-footer .hours-list__row { border-bottom-color: rgba(245, 239, 227, 0.12); }
.o-haydn .hours-list__row--sub {
  font-size: 0.85rem;
  color: var(--hb-cream-dim);
}
.o-haydn .hours-list__day { letter-spacing: 0.02em; }
.o-haydn .hours-list__time { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* light-background variant */
.o-haydn .section:not(.section--dark) .hours-list__row { border-bottom-color: var(--hb-line); }
.o-haydn .section:not(.section--dark) .hours-list__row--sub { color: var(--hb-muted); }

/* ---------- footer ---------- */

.o-haydn .site-footer {
  background: var(--hb-dark);
  color: var(--hb-cream);
  padding-top: 4.5rem;
}
.o-haydn .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.o-haydn .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.o-haydn .footer-brand__mark { width: 32px; height: 36px; }
.o-haydn .footer-brand__name {
  font-family: var(--hb-font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.o-haydn .footer-brand__sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-cream-dim);
  margin: 2px 0 0;
}
.o-haydn .footer-tagline {
  color: var(--hb-cream-dim);
  font-size: 0.97rem;
  max-width: 30em;
}
.o-haydn .footer-head {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hb-amber);
  margin-bottom: 1.1rem;
}
.o-haydn .footer-address { color: var(--hb-cream-dim); font-size: 0.97rem; line-height: 1.75; }
.o-haydn .footer-address a { color: var(--hb-cream); }
.o-haydn .footer-address a:hover { color: var(--hb-amber-soft); }
.o-haydn .footer-note { color: var(--hb-cream-dim); font-size: 0.82rem; margin-top: 0.9rem; }

.o-haydn .footer-bottom {
  border-top: 1px solid rgba(245, 239, 227, 0.12);
  padding: 1.3rem 0;
}
.o-haydn .footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--hb-cream-dim);
}
.o-haydn .footer-bottom p { margin: 0; }
.o-haydn .footer-legal {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}
.o-haydn .footer-legal a { color: var(--hb-cream-dim); }
.o-haydn .footer-legal a:hover { color: var(--hb-amber-soft); }

/* ---------- legal prose ---------- */

.o-haydn .legal-prose { max-width: 760px; }
.o-haydn .demo-note {
  background: var(--hb-card);
  border-left: 4px solid var(--hb-copper);
  border-radius: 0 var(--hb-radius) var(--hb-radius) 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2.2rem;
  font-size: 0.97rem;
  box-shadow: var(--hb-shadow);
}
.o-haydn .legal-prose h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 2.2rem 0 0.8rem;
}

/* ---------- responsive ---------- */

@media (max-width: 1360px) {
  .o-haydn .open-status { display: none; }
}

@media (max-width: 1120px) {
  .o-haydn .site-header__phone { display: none; }
  .o-haydn .nav-menu { gap: 1.15rem; }
}

@media (max-width: 920px) {
  /* drawer nav */
  .o-haydn .nav-toggle { display: flex; }
  .o-haydn .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    width: min(320px, 85vw);
    background: var(--hb-dark-2);
    border-left: 1px solid var(--hb-dark-3);
    padding: 1.2rem 1.6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  body.nav-open .o-haydn .site-nav { transform: none; }
  .o-haydn .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
  }
  .o-haydn .site-nav__label {
    font-family: var(--hb-font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hb-cream-dim);
    margin: 0;
  }
  .o-haydn .site-nav__close {
    background: none;
    border: 0;
    color: var(--hb-cream);
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
  }
  .o-haydn .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  /* inside the dark drawer the nav goes back to light-on-dark */
  .o-haydn .nav-menu a {
    display: block;
    padding: 0.8em 0;
    font-size: 1.05rem;
    color: var(--hb-cream);
    border-bottom: 1px solid rgba(245, 239, 227, 0.08);
  }
  .o-haydn .nav-menu a:hover { color: var(--hb-amber-soft); }
  .o-haydn .nav-menu .current-menu-item a {
    color: var(--hb-amber);
    border-bottom-color: rgba(245, 239, 227, 0.08);
  }
  .o-haydn .site-nav__extra {
    display: block;
    margin-top: 1.6rem;
  }
  /* dark pill would vanish on the dark drawer — flip to yellow there */
  .o-haydn .site-nav__extra .btn--phone {
    background: var(--hb-amber);
    color: var(--hb-dark);
  }
  body.nav-open .o-haydn .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 940;
    background: rgba(0, 0, 0, 0.55);
  }

  .o-haydn .welcome-grid,
  .o-haydn .kontakt-grid,
  .o-haydn .contact-band__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .o-haydn .feature-grid,
  .o-haydn .room-grid { grid-template-columns: repeat(2, 1fr); }
  .o-haydn .dish-grid { grid-template-columns: 1fr; }
  .o-haydn .hero-facts__row { grid-template-columns: 1fr; }
  .o-haydn .hero-fact { padding: 0.7rem 0; }
  .o-haydn .section { padding: 4rem 0; }
}

@media (max-width: 560px) {
  .o-haydn .feature-grid,
  .o-haydn .room-grid { grid-template-columns: 1fr; }
  .o-haydn .dish-card { grid-template-columns: 1fr; }
  .o-haydn .dish-card img { max-height: 200px; }
  .o-haydn .brand__sub { display: none; }
  .o-haydn .tm-menu { flex-direction: column; gap: 0.2rem; }
  .o-haydn .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
