/* Gartenraum — top bar + mobile drawer */

.crest {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.crest__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--reach);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.markname {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--deep);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.markname__leaf {
  display: inline-block;
  width: 14px;
  height: 18px;
  background: var(--ivy);
  border-radius: 0 100% 0 100%;
  transform: rotate(-12deg);
}
.markname:hover { color: var(--ivy); text-decoration: none; }

.crest__menu {
  display: none;
  align-items: center;
  gap: 28px;
}
.crest__menu a {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--deep);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.crest__menu a:hover { color: var(--ivy); }
.crest__menu a[aria-current="page"] { color: var(--ivy); }
.crest__menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--ivy);
}

.crest__act {
  display: none;
  padding: 10px 20px;
  font-size: 0.88rem;
}

@media (min-width: 1024px) {
  .crest__menu { display: inline-flex; }
  .crest__act { display: inline-flex; }
}

/* Drawer trigger */
.lever {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--bend);
  cursor: pointer;
  padding: 0;
}
.lever:hover { background: var(--chalk); border-color: var(--deep); }
.lever__lines {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
.lever__lines::before,
.lever__lines::after,
.lever__lines span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--deep);
  display: block;
}
.lever__lines::before { top: 0; }
.lever__lines span { top: 5px; }
.lever__lines::after { bottom: 0; }
@media (min-width: 1024px) { .lever { display: none; } }

/* Drawer (mobile fullscreen) */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
}
.drawer[aria-hidden="false"] { transform: translateY(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}
.drawer__close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--bend);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer__close svg { width: 16px; height: 16px; }
.drawer__close:hover { background: var(--deep); }
.drawer__close:hover svg path { stroke: var(--mist); }

.drawer__list {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer__list a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--deep);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer__list a:hover { color: var(--ivy); }
.drawer__list a:last-child { border-bottom: none; }

.drawer__bottom {
  padding: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer__bottom a { color: var(--deep); }

body.lock-scroll { overflow: hidden; }
